/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    --brand-gold: #7a6a2b;
    --brand-gold-dark: #5e4f20;
    --brand-gold-light: #9b8a4a;
    --brand-gold-soft: rgba(122, 106, 43, 0.12);
    --dark-text: #2c3e3a;
    --muted-text: #5a6b66;
    --bg-light: #fefaf2;
    --white: #ffffff;
    --transition-default: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.4s ease-out;
    --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 45px -15px rgba(0, 0, 0, 0.2);
}

.container {
    width: min(1280px, 92%);
    margin-inline: auto;
    border: none;
}

.text-center {
    text-align: center;
}
/* ==========================================================================
   GLOBAL VARIABLES (NAVBAR ONLY)
   ========================================================================== */
:root {
    --brand-gold: #6D5F32;
}
/* ==========================================================================
   2. NAV-PILL (FIXED AT TOP)
   ========================================================================== */
.nav-pill {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #ffffff;
    padding: 8px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: auto;
    max-width: 95%;
    z-index: 1030;
}

.nav-pill.scrolled {
    background: rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    top: 10px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-collapse {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    color: #6D5F32 !important;
    font-weight: 500;
    padding: 8px 12px !important;
    transition: all 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--brand-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
}

.nav-pill.scrolled .navbar-nav .nav-link {
    color: var(--brand-gold) !important;
}

.nav-pill.scrolled .navbar-nav .nav-link::after {
    background-color: var(--brand-gold);
}

.src-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f0;
    border-radius: 30px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    gap: 5px;
}

.nav-pill.scrolled .src-container {
    background-color: transparent;
    border: 1px solid var(--brand-gold);
}

.nav-pill.scrolled .src-btn {
    color: var(--brand-gold);
}

.nav-pill.scrolled .src-container input {
    color: var(--brand-gold);
}

.nav-pill.scrolled .src-container input::placeholder {
    color: var(--brand-gold);
    opacity: 0.7;
}

.src-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #6D5F32;
    font-size: 14px;
    transition: all 0.3s ease;
}

.src-btn:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.src-container input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 0;
    opacity: 0;
    padding: 0;
    transition: all 0.3s ease;
    font-size: 13px;
}

.src-container.active input {
    width: 150px;
    opacity: 1;
    padding: 4px 8px;
}

.mobile-dropdown-container {
    position: relative;
    display: none;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(109, 95, 50, 0.1);
    border: none;
    border-radius: 40px;
    padding: 8px 16px;
    font-weight: 500;
    color: #6D5F32;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-pill.scrolled .mobile-menu-btn {
    color: var(--brand-gold);
    background: transparent;
    border: 1px solid var(--brand-gold);
}

.mobile-menu-btn:hover {
    background: rgba(109, 95, 50, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn i {
    font-size: 18px;
}

.mobile-menu-btn span {
    font-size: 14px;
}

.mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1050;
    overflow: hidden;
}

.mobile-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #6D5F32;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid rgba(178, 161, 108, 0.1);
    transition: all 0.3s ease;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    background: rgba(178, 161, 108, 0.15);
    padding-left: 28px;
}

/* ==========================================================================
   3. HERO SECTION (Enhanced)
   ========================================================================== */
.services-hero {
    background-image: url('../images/ServicesBanner.png');
    height: 400px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    margin-top: 0;
    left: 0;
    border: none;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero-content {
    animation: fadeInUp 0.9s ease-out;
    border: none;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-description {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 1.25rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   4. SERVICE BLOCKS (Grid layouts, modern spacing)
   ========================================================================== */
.service-block {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(122, 106, 43, 0.1);
    border-left: none;
    border-right: none;
    border-top: none;
}

.service-block:last-child {
    border-bottom: none;
}

#maintenance.service-block {
    border-bottom: none;
}

.grid-2, .grid-2-rev {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
    border: none;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brand-gold);
    border-radius: 3px;
}

.service-content p {
    color: var(--muted-text);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.services-label, .scope-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-gold);
    letter-spacing: 2px;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.custom-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--dark-text);
    transition: var(--transition-default);
}

.custom-list li::before {
    content: "→";
    color: var(--brand-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.custom-list li:hover {
    transform: translateX(4px);
}

.custom-list li:hover::before {
    transform: translateX(3px);
    color: var(--brand-gold-dark);
}

/* ==========================================================================
   5. PROCESS SECTIONS (Gold background, professional icons)
   ========================================================================== */
.process-section {
    background: var(--brand-gold);
    padding: 5rem 0;
    color: white;
    position: relative;
    border: none;
}

.process-header h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.3px;
}

.process-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.process-step {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    color: var(--dark-text);
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: none;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: #ffffff;
}

.step-number {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-gold);
    background: rgba(122, 106, 43, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
}

.step-icon {
    margin-bottom: 1rem;
    display: inline-block;
}

.process-svg {
    width: 36px;
    height: 36px;
    stroke: var(--brand-gold);
    stroke-width: 1.5;
    fill: none;
    transition: var(--transition-default);
}

.process-step:hover .process-svg {
    stroke: var(--brand-gold-dark);
    transform: scale(1.05);
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--brand-gold-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.5;
}

/* ==========================================================================
   6. PARTNERS SECTION & IMAGE GRID 
   ========================================================================== */
/*
/*
.partners-section {
    padding: 5rem 0 6rem;
    background: var(--white);
    border: none;
}

.partners-separator {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    border: none;
}

.partners-separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.separator, .separator-text {
    position: relative;
    background: var(--white);
    padding: 0 2rem;
    z-index: 2;
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
}

.separator {
    font-size: 1.3rem;
    letter-spacing: 4px;
}

.partners-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
}

.partner-images {
    margin: 2.5rem 0 2rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.partner-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
    border: none;
}

.partner-image-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.partner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.partner-image-card:hover .partner-img {
    transform: scale(1.08);
}
*/

/* ==========================================================================
   7. CTA CONTAINER (Gold background) - RESPONSIVE & NO OVERFLOW
   ========================================================================== */
.partner-cta-box {
    background: var(--brand-gold);
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem; 
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    text-align: center;
}

.partner-cta-box .container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.partners-main-headline {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.partners-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-inline: auto;
    margin-top: 1rem;
    line-height: 1.7;
    text-align: center;
}

.btn-secondary {
    background: white;
    color: var(--brand-gold);
    padding: 1rem 3rem;
    border-radius: 50px;
    margin-top: 2.5rem;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-default);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    max-width: 100%;
}

.btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--brand-gold-dark);
}

.partners-separator {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    border: none;
}

.partners-separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.separator, .separator-text {
    position: relative;
    background: var(--white);
    padding: 0 2rem;
    z-index: 2;
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
}

.separator {
    font-size: 1.3rem;
    letter-spacing: 4px;
}


/* ==========================================================================
   8. BENEFITS SECTION (Image-based cards with overlay) - WITH SIDE MARGINS
   ========================================================================== */

/* Nagdagdag ng spacing at side margins para sa buong section container */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
    
    /* Heto ang nagbibigay ng margin sa left at right sides */
    max-width: 1280px;      /* Kapareho ng max-width ng iyong header at cta box */
    margin-left: auto;      /* I-center ang buong grid sa screen */
    margin-right: auto;     /* I-center ang buong grid sa screen */
    padding-left: 2rem;     /* Proteksyon/space kapag nasa maliit na mobile screen */
    padding-right: 2rem;    /* Proteksyon/space kapag nasa maliit na mobile screen */
    box-sizing: border-box;
}

/* Siguraduhin din natin na ang headline at "WHY PARTNER WITH US" text ay hindi lalampas */
.benefits-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 2.5rem auto;    /* Ginawang auto ang gilid para laging sentro */
    text-align: center;
    position: relative;
    max-width: 1280px;
    padding: 0 2rem;
    box-sizing: border-box;
}

.benefits-headline::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--brand-gold);
    margin: 0.8rem auto 0;
    border-radius: 4px;
}

/* --- Kasunod na mga lumang property mo (Walang binago sa ilalim nito) --- */
.benefit-card-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: none;
}

.benefit-card-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.benefit-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.benefit-card-image:hover .benefit-card-img {
    transform: scale(1.08);
}

.benefit-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 1.8rem;
    transition: var(--transition-default);
}

.benefit-card-image:hover .benefit-card-overlay {
    background: linear-gradient(to top, rgba(122, 106, 43, 0.92) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.benefit-card-content {
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.benefit-card-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Inalis ang generic text-align dito para hindi maapektuhan ang cards */
.benefit-card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: left; /* Tiyaking left-aligned ang text sa loob ng card */
}

.benefit-card-image:hover .benefit-card-content {
    transform: translateY(-4px);
}

/* ==========================================================================
   9. IMAGE CAPTIONS FOR SERVICE IMAGES
   ========================================================================== */
.service-image-wrapper {
    position: relative;
    width: 100%;
}

.service-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    border: none;
}

.service-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: block;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    border-radius: 24px;
    transition: var(--transition-default);
}

.service-image:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.service-image:hover img {
    transform: scale(1.08);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 1.8rem 1.5rem 1.2rem;
    text-align: left;
    transition: var(--transition-default);
    z-index: 2;
}

.image-caption h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.image-caption p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   10. CAROUSEL STYLES
   ========================================================================== */
.service-carousel {
    width: 100%;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    background: var(--dark-text);
    border: none;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: var(--transition-default);
}

.carousel-slide:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.carousel-slide:hover img {
    transform: scale(1.1);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: left;
    transition: var(--transition-default);
    z-index: 2;
}

.carousel-caption h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--brand-gold);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-default);
}

.dot.active {
    background: var(--brand-gold);
    width: 24px;
    border-radius: 10px;
}

.dot:hover {
    background: var(--brand-gold-light);
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
    text-align: center;
    background: #6D5F32;
    color: #ffffff;
    padding: 20px 0;
    font-weight: 500;
    margin-top: 50px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #d4af37;
}

/* ==========================================================================
   12. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .nav-pill {
        padding: 6px 16px !important;
        width: 95% !important;
    }
    
    .collapse.navbar-collapse {
        display: none !important;
    }
    
    .mobile-dropdown-container {
        display: block !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .navbar-nav {
        display: none !important;
    }
    
    .src-container input {
        width: auto !important;
        opacity: 1 !important;
    }
    
    .grid-2, .grid-2-rev {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .grid-2-rev .service-content {
        order: 0;
    }
    
    .service-block {
        padding: 3rem 0;
    }
    
    .service-block:last-child {
        border-bottom: none;
    }
    
    .process-strip {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .nav-pill {
        width: 95% !important;
        top: 10px;
    }
    
    .services-hero {
        height: 420px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-cta-box {
        padding: 3rem 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .benefit-card-content h4 {
        font-size: 1.4rem;
    }
    
    .benefit-card-content p {
        font-size: 0.85rem;
    }
    
    .benefits-headline {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .image-caption {
        padding: 1.2rem 1rem 0.8rem;
    }
    
    .image-caption h3 {
        font-size: 0.9rem;
    }
    
    .image-caption p {
        font-size: 0.65rem;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .carousel-caption h3 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .nav-pill {
        padding: 5px 12px !important;
        width: 95% !important;
    }
    
    .mobile-menu-btn span {
        display: none;
    }
    
    .navbar-brand img {
        width: 35px;
        height: 35px;
    }
    
    .src-container {
        max-width: 110px;
    }
    
    .src-container input {
        font-size: 11px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .process-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .nav-pill {
        padding: 4px 10px !important;
        gap: 8px !important;
    }
    
    .src-container {
        max-width: 90px;
        padding: 4px 8px !important;
    }
    
    .mobile-menu-btn {
        padding: 5px 8px;
    }
}