/* ============================================
   INDIRA CONSULTANCY - HOME PAGE STYLES
   Color Scheme from Figma: Dark Navy, Gold (#F8CA3B), White
   Fonts: Kaisei Decol (headings), Poppins (body/buttons)
   Note: Fonts loaded via <link> in HTML for better performance
   ============================================ */

:root {
    --indira-navy: #141E32;
    --indira-navy-light: #1a2842;
    --indira-navy-dark: #0d1420;
    --indira-gold: #F8CA3B;
    --indira-gold-light: #fad564;
    --indira-gold-dark: #927722;
    --indira-white: #ffffff;
    --indira-gray: #8a9199;
    --indira-gray-light: #f5f7fa;
    --indira-gray-subtitle: #D8D8D8;
    --indira-text: #333333;
    --indira-text-light: #666666;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--indira-text);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kaisei Decol', serif;
    font-weight: 700;
    line-height: 1.3;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    background-color: var(--indira-gold); /* #F8CA3B */
    border-color: var(--indira-gold);
    color: #000000; /* Black text from Figma */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
}

.btn-gold:hover {
    background-color: var(--indira-gold-light);
    border-color: var(--indira-gold-light);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 202, 59, 0.35);
}

.btn-outline-gold {
    background-color: transparent;
    border: 2px solid var(--indira-gold);
    color: var(--indira-gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--indira-gold);
    color: #000000;
}

.btn-link-gold {
    color: var(--indira-gold);
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-link-gold:hover {
    color: var(--indira-gold-light);
    text-decoration: underline;
}

.btn-link-gold i {
    transition: transform 0.3s ease;
}

.btn-link-gold:hover i {
    transform: translateX(5px);
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-badge {
    display: inline-block;
    background-color: rgba(248, 202, 59, 0.15); /* Updated to new gold */
    color: var(--indira-gold);
    font-family: 'Poppins', sans-serif;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--indira-navy);
    margin-bottom: 20px;
}

.section-title-light {
    font-family: 'Kaisei Decol', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--indira-white);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--indira-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle-light {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.section-description {
    font-size: 16px;
    color: var(--indira-text-light);
    line-height: 1.8;
}

.section-description-light {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 25, 47, 0.75) 0%,
        rgba(10, 25, 47, 0.4) 50%,
        rgba(10, 25, 47, 0.2) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 120px 0 80px;
}

.hero-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--indira-white);
    margin-bottom: 28px;
    line-height: 1.5; /* 72px / 48px = 150% from Figma */
    letter-spacing: 0;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--indira-gray-subtitle); /* #D8D8D8 from Figma */
    margin-bottom: 40px;
    max-width: 615px;
    line-height: 1.5; /* 36px / 24px = 150% from Figma */
    font-style: normal;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

/* Primary Hero Button - Gold from Figma #F8CA3B */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--indira-gold); /* #F8CA3B */
    color: #000000; /* Black text from Figma */
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600; /* SemiBold from Figma */
    padding: 18px 32px;
    border-radius: 12px; /* cornerRadius: 12 from Figma */
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary:hover {
    background-color: var(--indira-gold-light);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(248, 202, 59, 0.35);
}

.btn-hero-primary i {
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

/* Secondary Hero Button - Outline White from Figma */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--indira-white); /* White text from Figma */
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600; /* SemiBold from Figma */
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--indira-white);
    color: var(--indira-white);
}

/* Hero Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot.active {
    background-color: var(--indira-white);
}

.hero-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 18px;
        padding: 14px 24px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 14px 20px;
    }
    
    .hero-content {
        padding: 100px 0 60px;
    }
    
    .hero-dots {
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics-section {
    background-color: var(--indira-navy);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--indira-gold);
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--indira-white);
    margin-bottom: 4px;
}

.stat-note {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .stat-value {
        font-size: 36px;
    }
}

/* ============================================
   BRIDGE SECTION - NEW (Figma Design)
   ============================================ */
.bridge-section-new {
    padding: 80px 0 100px;
    background-color: #1E2A3A; /* Navy gray background */
}

.bridge-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.bridge-title .text-gold {
    color: #F8CA3B;
}

/* Bridge Slider */
.bridge-slider-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.bridge-slider {
    position: relative;
    width: 100%;
    height: 420px;
}

.bridge-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.bridge-slide.active {
    opacity: 1;
}

.bridge-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bridge-location {
    text-align: center;
    margin-top: 20px;
}

.bridge-location .location-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    display: block;
    margin-bottom: 12px;
}

.bridge-location .location-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bridge-location .location-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bridge-location .location-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.bridge-location .location-dots .dot.active {
    background-color: #F8CA3B;
}

.bridge-location .location-name {
    transition: opacity 0.3s ease;
}

.bridge-content-right {
    padding-left: 30px;
}

.bridge-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.bridge-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.bridge-link {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #F8CA3B;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.bridge-link:hover {
    color: #e6b832;
    gap: 12px;
}

.bridge-link i {
    font-size: 12px;
}

.bridge-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* Capabilities Grid - New Style */
.capabilities-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cap-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cap-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-icon svg {
    stroke: #F8CA3B;
}

.cap-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cap-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive for Bridge Section */
@media (max-width: 991px) {
    .bridge-title {
        font-size: 40px;
        margin-bottom: 30px;
    }
    
    .bridge-content-right {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .capabilities-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .bridge-section-new {
        padding: 60px 0;
    }
    
    .bridge-title {
        font-size: 32px;
    }
    
    .bridge-img {
        height: 300px;
    }
    
    .bridge-intro {
        font-size: 18px;
    }
    
    .bridge-desc {
        font-size: 15px;
    }
}

/* ============================================
   BRIDGE SECTION - OLD (keeping for compatibility)
   ============================================ */
.bridge-section {
    padding: 100px 0;
    background-color: var(--indira-white);
}

.bridge-content {
    padding-right: 40px;
}

.bridge-visual {
    position: relative;
}

.bridge-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bridge-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.location-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 18px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--indira-navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-tag i {
    color: var(--indira-gold);
}

.capabilities-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.capability-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: var(--indira-gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.capability-item:hover {
    background-color: var(--indira-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.capability-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--indira-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indira-gold);
    font-size: 20px;
}

.capability-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--indira-navy);
    margin-bottom: 6px;
}

.capability-content p {
    font-size: 14px;
    color: var(--indira-text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   EXPERTISE/MASTERING SECTION - NEW (Figma Design)
   ============================================ */
.expertise-section {
    padding: 60px 0 80px;
    background-color: #1E2A3A;
}

.expertise-header {
    margin-bottom: 50px;
}

.expertise-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: #F8CA3B;
    display: block;
    margin-bottom: 20px;
}

.expertise-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 0;
}

.expertise-title .text-gold {
    color: #F8CA3B;
}

.expertise-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 320px;
    text-align: left;
    padding-top: 60px;
}

/* Expertise Cards Container */
.expertise-cards-wrapper {
    display: flex;
    gap: 12px;
    height: 450px;
    margin-top: 40px;
}

/* Individual Expertise Card */
.expertise-card {
    position: relative;
    flex: 1;
    min-width: 100px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card.active {
    flex: 4;
}

/* Card Background Image */
.expertise-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.expertise-card:not(.active) .card-bg {
    filter: grayscale(100%);
}

.expertise-card.active .card-bg,
.expertise-card:hover .card-bg {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Card Overlay */
.expertise-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(30, 42, 58, 0.3) 0%, 
        rgba(30, 42, 58, 0.7) 60%,
        rgba(30, 42, 58, 0.95) 100%);
    transition: background 0.5s ease;
}

.expertise-card:not(.active) .card-overlay {
    background: linear-gradient(180deg, 
        rgba(30, 42, 58, 0.5) 0%, 
        rgba(30, 42, 58, 0.85) 100%);
}

/* Card Icon */
.expertise-card .card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    z-index: 2;
    transition: all 0.3s ease;
}

.expertise-card .card-icon-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.expertise-card.active .card-icon {
    transform: scale(1.05);
}

/* Expanded Content (visible when active) */
.expertise-card .card-expanded-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.expertise-card.active .card-expanded-content {
    opacity: 1;
    transform: translateY(0);
}

.expertise-card .card-title-expanded {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.expertise-card .card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.expertise-card .card-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F8CA3B;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.expertise-card .card-link:hover {
    gap: 12px;
}

.expertise-card .card-link .link-number {
    color: #F8CA3B;
    margin-right: 4px;
}

.expertise-card .card-link i {
    font-size: 12px;
}

/* Collapsed Content (vertical text, visible when not active) */
.expertise-card .card-collapsed-content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.expertise-card.active .card-collapsed-content {
    opacity: 0;
}

.expertise-card .card-title-vertical {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1200px) {
    .expertise-cards-wrapper {
        height: 400px;
    }
    
    .expertise-title {
        font-size: 44px;
    }
    
    .expertise-desc {
        padding-top: 40px;
    }
}

@media (max-width: 991px) {
    .expertise-section {
        padding: 50px 0 70px;
    }
    
    .expertise-header {
        margin-bottom: 40px;
    }
    
    .expertise-title {
        font-size: 38px;
        margin-bottom: 24px;
    }
    
    .expertise-desc {
        padding-top: 0;
        max-width: 100%;
    }
    
    .expertise-cards-wrapper {
        flex-wrap: wrap;
        height: auto;
        gap: 16px;
    }
    
    .expertise-card {
        flex: 1 1 calc(50% - 8px);
        min-height: 300px;
        min-width: auto;
    }
    
    .expertise-card.active {
        flex: 1 1 100%;
    }
    
    .expertise-card .card-collapsed-content {
        display: none;
    }
    
    .expertise-card .card-expanded-content {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .expertise-title {
        font-size: 32px;
    }
    
    .expertise-badge {
        font-size: 16px;
    }
    
    .expertise-card {
        flex: 1 1 100%;
        min-height: 280px;
    }
}

/* ============================================
   OLD MASTERING SECTION (keeping for compatibility)
   ============================================ */
.mastering-section {
    padding: 100px 0;
    background-color: var(--indira-navy);
}

.mastering-content {
    padding-right: 30px;
}

.mastering-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.mastering-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: var(--indira-navy-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--indira-gold);
}

.service-image {
    height: 120px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 20px;
}

.service-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(201, 162, 39, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indira-gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.service-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--indira-white);
    margin-bottom: 8px;
}

.service-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   ADVANTAGE SECTION - Figma Design
   ============================================ */
.advantage-section {
    padding: 80px 0 100px;
    background-color: #1E2A3A;
}

/* Section Header */
.advantage-section .section-title-light {
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.advantage-section .section-title-light .text-gold {
    color: #F8CA3B;
}

.advantage-section .section-subtitle-light {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Tab Container */
.advantage-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.advantage-tabs .nav-pills {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 12px;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.advantage-tabs .nav-item {
    flex: 0 0 auto;
}

.advantage-tabs .nav-link {
    background-color: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.advantage-tabs .nav-link i {
    font-size: 16px;
}

.advantage-tabs .nav-link:hover {
    color: #FFFFFF;
}

.advantage-tabs .nav-link.active {
    background-color: #F8CA3B;
    color: #1E2A3A;
    font-weight: 600;
}

.advantage-tabs .nav-link.active i {
    color: #1E2A3A;
}

/* Tab Content */
.advantage-section .tab-content {
    margin-top: 60px;
}

.advantage-content {
    padding-right: 30px;
    position: relative;
}

.advantage-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 160px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: -60px;
    position: relative;
    z-index: 0;
}

.advantage-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 40px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.advantage-description {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
}

/* Tags */
.advantage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.advantage-tags .tag {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.advantage-tags .tag i {
    color: #F8CA3B;
    font-size: 14px;
}

/* Learn More Link */
.advantage-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #F8CA3B;
    text-decoration: none;
    margin-top: 24px;
    transition: gap 0.3s ease;
}

.advantage-learn-more:hover {
    color: #F8CA3B;
    gap: 10px;
}

.advantage-learn-more i {
    font-size: 12px;
}

/* Image Card */
.advantage-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #C9863A;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.advantage-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* KPI Badge */
.advantage-kpi {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.advantage-kpi-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.advantage-kpi-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #C9863A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantage-kpi-value {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1E2A3A;
}

.advantage-kpi-icon {
    width: 44px;
    height: 44px;
    background-color: #F8CA3B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E2A3A;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1200px) {
    .advantage-number {
        font-size: 120px;
        margin-bottom: -45px;
    }
    
    .advantage-title {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .advantage-section {
        padding: 60px 0 80px;
    }
    
    .advantage-section .section-title-light {
        font-size: 36px;
    }
    
    .advantage-tabs .nav-pills {
        flex-wrap: wrap;
        border-radius: 20px;
        gap: 8px;
        padding: 12px;
    }
    
    .advantage-tabs .nav-link {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .advantage-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .advantage-number {
        font-size: 100px;
        margin-bottom: -35px;
    }
    
    .advantage-title {
        font-size: 30px;
    }
    
    .advantage-image {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .advantage-section .section-title-light {
        font-size: 28px;
    }
    
    .advantage-tabs .nav-link span {
        display: none;
    }
    
    .advantage-tabs .nav-link i {
        margin: 0;
    }
    
    .advantage-number {
        font-size: 80px;
        margin-bottom: -25px;
    }
    
    .advantage-title {
        font-size: 26px;
    }
    
    .advantage-description {
        font-size: 15px;
    }
    
    .advantage-image {
        height: 280px;
    }
    
    .advantage-kpi {
        padding: 12px 16px;
    }
}

/* ============================================
   PROCESS SECTION - Figma Design
   ============================================ */
.process-section {
    padding: 80px 0 100px;
    background-color: #1E2A3A;
}

/* Process Header */
.process-section .section-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #F8CA3B;
    display: block;
    margin-bottom: 16px;
}

.process-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.process-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #D1D5DB;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Container */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px 0;
}

/* Vertical Timeline Line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(248, 202, 59, 0.3);
    transform: translateX(-50%);
}

/* Individual Step */
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Left-aligned step (content on left) */
.process-step.left {
    flex-direction: row;
    padding-right: calc(50% + 50px);
    text-align: right;
}

/* Right-aligned step (content on right) */
.process-step.right {
    padding-left: calc(50% + 50px);
    text-align: left;
}

/* Circle Marker on Timeline */
.step-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #1E2A3A;
    border: 3px solid #F8CA3B;
    border-radius: 50%;
    z-index: 2;
}

/* Step Content */
.step-content {
    position: relative;
}

/* Large Background Number */
.step-number-bg {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: rgba(248, 202, 59, 0.15);
    line-height: 1;
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
}

.process-step.left .step-number-bg {
    text-align: right;
}

.process-step.right .step-number-bg {
    text-align: left;
}

/* Step Title */
.step-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

/* Step Description */
.step-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #D1D5DB;
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 380px;
}

.process-step.left .step-content p {
    margin-left: auto;
}

.process-step.right .step-content p {
    margin-right: auto;
}

/* CTA Button */
.process-section .btn-gold {
    background-color: #F8CA3B;
    border: none;
    color: #1E2A3A;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-section .btn-gold:hover {
    background-color: #FFFFFF;
    color: #1E2A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .process-section .section-title {
        font-size: 36px;
    }
    
    .step-number-bg {
        font-size: 60px;
        margin-bottom: -20px;
    }
    
    .step-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step.left,
    .process-step.right {
        flex-direction: row;
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .process-step.left .step-number-bg,
    .process-step.right .step-number-bg {
        text-align: left;
    }
    
    .process-step.left .step-content p,
    .process-step.right .step-content p {
        margin-left: 0;
        margin-right: 0;
    }
    
    .step-marker {
        left: 20px;
        top: 20px;
        width: 16px;
        height: 16px;
    }
    
    .step-number-bg {
        font-size: 50px;
        margin-bottom: -15px;
    }
    
    .step-content h4 {
        font-size: 18px;
    }
    
    .process-step {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .process-section .section-title {
        font-size: 28px;
    }
    
    .step-number-bg {
        font-size: 40px;
        margin-bottom: -10px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 14px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background-color: #1E2A3A;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header .section-badge {
    background-color: transparent;
    color: var(--indira-gold);
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.contact-header .section-title-light {
    font-family: 'Kaisei Decol', serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-header .section-description-light {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: #141E30;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--indira-gold);
}

.contact-form .form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 10px;
    display: block;
}

.contact-form .form-control {
    background-color: #1a2842;
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background-color: #1f3050;
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(248, 202, 59, 0.3);
    outline: none;
    color: #FFFFFF;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.contact-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.contact-form .btn-gold {
    background-color: var(--indira-gold);
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1E2A3A;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
}

.contact-form .btn-gold:hover {
    background-color: #fad564;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 202, 59, 0.35);
}

.contact-form .btn-gold i {
    font-size: 14px;
}

/* Contact Success Message */
.contact-success-message {
    text-align: center;
    padding: 60px 40px;
}

.contact-success-message .success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(248, 202, 59, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-success-message .success-icon i {
    font-size: 40px;
    color: var(--indira-gold);
}

.contact-success-message h3 {
    font-family: 'Kaisei Decol', serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.contact-success-message p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-success-message .btn-gold {
    background-color: transparent;
    border: 2px solid var(--indira-gold);
    color: var(--indira-gold);
}

.contact-success-message .btn-gold:hover {
    background-color: var(--indira-gold);
    color: #1E2A3A;
}

/* ============================================
   LOCATION/MAP SECTION
   ============================================ */
.location-section {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.location-info {
    padding-right: 20px;
}

.location-badge {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--indira-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.location-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.location-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location-item i {
    color: var(--indira-gold);
    font-size: 20px;
    width: 24px;
    min-width: 24px;
    margin-top: 2px;
}

.location-item strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.location-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 0;
    line-height: 1.5;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 480px;
}

.location-map iframe {
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .location-info {
        padding-right: 0;
    }
    
    .location-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .location-map {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .location-section {
        padding: 60px 0;
    }
    
    .location-title {
        font-size: 26px;
    }
    
    .location-item strong {
        font-size: 16px;
    }
    
    .location-item p {
        font-size: 14px;
    }
    
    .location-map {
        height: 320px;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
    .section-title,
    .section-title-light {
        font-size: 32px;
    }
    
    .bridge-content,
    .mastering-content,
    .advantage-content,
    .contact-info,
    .footer-info {
        padding-right: 0;
    }
    
    .advantage-number {
        font-size: 48px;
    }
    
    .advantage-title {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .contact-header .section-title-light {
        font-size: 34px;
    }
    
    .contact-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .bridge-section,
    .mastering-section,
    .advantage-section,
    .process-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
        border-radius: 16px;
    }
    
    .contact-header .section-title-light {
        font-size: 28px;
    }
    
    .contact-header .section-description-light {
        font-size: 15px;
    }
    
    .contact-form .form-control {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .contact-form .btn-gold {
        width: 100%;
        justify-content: center;
    }
    
    .stat-value {
        font-size: 28px;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading state for images */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
