/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Colors */
    --primary-deep: #0e4c44; /* Rich Forest Green matching DEHSC logo */
    --primary-light: #166056;
    --primary-dark: #072e29;
    --accent-gold: #f29a38; /* Warm Orange matching DEHSC logo */
    --accent-gold-hover: #db8323;
    --bg-light: #f4f7f6;
    --bg-white: #ffffff;
    --bg-dark-navy: #061816;
    --bg-dark-panel: #0d2c28;
    --border-light: #e2e8f0;
    --border-dark: #143e39;
    
    /* Text Colors */
    --text-dark: #1e293b;
    --text-muted: #5e6f6c;
    --text-light: #f8fafc;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-deep);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 154, 56, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--primary-deep);
    color: var(--text-light);
    border: 1px solid var(--primary-light);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 76, 68, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 6px;
}

.btn-full {
    width: 100%;
}

/* Pulsing Button Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(242, 154, 56, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(242, 154, 56, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 154, 56, 0); }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   SCROLL-DRIVEN ANIMATIONS
   ========================================================================== */
.scroll-animate {
    opacity: 0;
    transition: var(--transition-slow);
}

.scroll-animate.fade-in {
    transform: scale(0.98);
}

.scroll-animate.fade-in-left {
    transform: translateX(-35px);
}

.scroll-animate.fade-in-right {
    transform: translateX(35px);
}

.scroll-animate.fade-in-up {
    transform: translateY(35px);
}

.scroll-animate.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Logo Image */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-meta-icon {
    font-size: 1.25rem;
    color: var(--accent-gold);
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.meta-val {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-deep);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-deep);
    font-size: 1.05rem;
}

.phone-link:hover {
    color: var(--accent-gold-hover);
}

.phone-link i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Nav Menu with Dropdowns */
.main-navigation {
    background-color: var(--primary-deep);
    border-top: 1px solid var(--primary-light);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-links {
    display: flex;
    width: 100%;
}

.nav-links > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1.1rem 1.5rem;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border-bottom: 3px solid transparent;
}

.nav-link:hover, .nav-link.active, .nav-dropdown:hover > .nav-link {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    background-color: rgba(255,255,255,0.03);
}

.caret-icon {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .caret-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles (Desktop Hover) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background-color: var(--bg-white);
    border-top: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-xl);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 105;
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-light);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-deep);
    padding-left: 1.5rem;
}

/* Hover triggers on desktop */
@media (min-width: 1025px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0.75rem 0;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   HERO SECTION (SLIDESHOW)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 600px;
    min-height: 550px;
    color: var(--text-light);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.hero-slide.active img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 24, 22, 0.4) 0%, rgba(6, 24, 22, 0.8) 100%);
}

/* Content Container Overlaid */
.hero-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-content-box {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    background-color: rgba(6, 24, 22, 0.55);
    border: 1px solid rgba(22, 96, 86, 0.25);
    padding: 3.5rem 3rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-xl);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.25rem;
    line-height: 1.6;
}

.coverage-badge {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.coverage-badge i {
    margin-right: 0.35rem;
}

/* Slider dots navigation */
.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.hero-dot.active {
    background-color: var(--accent-gold);
    width: 28px;
    border-radius: 6px;
}

/* ==========================================================================
   ABOUT SECTION (SECTION B)
   ========================================================================== */
.about-section {
    padding-top: 6rem;
    padding-bottom: 0;
    background-color: var(--bg-light);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    align-items: center;
    margin-top: 4rem;
}

/* Collage Grid */
.about-collage-container {
    position: relative;
    width: 100%;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 480px;
    position: relative;
}

.collage-accent {
    position: absolute;
    border-radius: 12px;
    z-index: 1;
}

.collage-accent.accent-top {
    grid-column: 4 / 7;
    grid-row: 3 / 6;
    background-color: var(--primary-light);
}

.collage-accent.accent-bottom {
    grid-column: 2 / 5;
    grid-row: 9 / 12;
    background-color: var(--primary-dark);
}

.collage-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--bg-white);
    z-index: 2;
    transition: var(--transition-normal);
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-img:hover {
    transform: scale(1.05);
    z-index: 5;
    box-shadow: var(--shadow-xl);
}

.collage-img.item-1 {
    grid-column: 1 / 6;
    grid-row: 1 / 6;
}

.collage-img.item-2 {
    grid-column: 6 / 13;
    grid-row: 2 / 7;
}

.collage-img.item-3 {
    grid-column: 2 / 7;
    grid-row: 6 / 11;
}

.collage-img.item-4 {
    grid-column: 7 / 12;
    grid-row: 7 / 12;
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about-benefits li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(14, 76, 68, 0.1);
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.about-benefits p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Stats Banner Section */
.stats-banner-wrapper {
    margin-top: 6rem;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    position: relative;
    z-index: 10;
    transform: translateY(40px);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stats-banner-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 3rem 1.5rem;
}

.stat-banner-item {
    text-align: center;
    color: var(--text-light);
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-dark);
}

/* ==========================================================================
   SERVICES SECTION (SECTION C)
   ========================================================================== */
.services-section {
    padding-top: 10rem;
    padding-bottom: 6rem;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    align-items: center;
}

/* Tabs list */
.services-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-tab-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.service-tab-item:hover {
    transform: translateX(5px);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.service-tab-item.active {
    background-color: var(--bg-white);
    border-left-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-deep);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.service-tab-item.active .service-icon {
    background-color: var(--primary-deep);
    color: var(--accent-gold);
}

.service-tab-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    transition: var(--transition-fast);
}

.service-tab-item.active h3 {
    color: var(--primary-deep);
}

.service-tab-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.tab-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateX(-5px);
}

.service-tab-item:hover .tab-arrow,
.service-tab-item.active .tab-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-tab-item.active .tab-arrow {
    color: var(--accent-gold);
}

/* Showcase Media Box */
.services-showcase {
    width: 100%;
}

.showcase-media-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 11;
    border: 3px solid var(--border-light);
}

.showcase-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(14, 76, 68, 0.45) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(242, 154, 56, 0.95);
    border: none;
    color: var(--bg-dark-navy);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(242, 154, 56, 0.4);
    transition: var(--transition-normal);
    animation: playPulse 2.5s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: var(--accent-gold);
}

@keyframes playPulse {
    0% { box-shadow: 0 0 0 0 rgba(242, 154, 56, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(242, 154, 56, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 154, 56, 0); }
}

.showcase-detail-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: rgba(255,255,255,0.95);
    border-top: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
    transition: var(--transition-normal);
}

.showcase-media-box:hover .showcase-detail-card {
    transform: translateY(-5px);
}

.showcase-detail-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.showcase-detail-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CASE STUDIES SECTION (SECTION D)
   ========================================================================== */
.case-studies-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--bg-dark-navy);
    color: var(--text-light);
}

.case-studies-section .section-title {
    color: var(--text-light);
}

.case-studies-section .section-desc {
    color: rgba(255,255,255,0.7);
}

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

.case-study-card {
    background-color: var(--bg-dark-panel);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--primary-light);
}

.case-image-box {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.case-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.case-study-card:hover .case-image-box img {
    transform: scale(1.05);
}

.case-content-box {
    padding: 2.25rem;
}

.case-content-box h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.case-content-box p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.case-link:hover {
    color: var(--text-light);
}

.case-link i {
    transition: var(--transition-fast);
}

.case-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   TESTIMONIALS SECTION (SECTION E)
   ========================================================================== */
.testimonials-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--primary-deep);
    color: var(--text-light);
    overflow: hidden;
}

.testimonials-section .section-title {
    color: var(--text-light);
    margin-bottom: 3.5rem;
}

.slider-outer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    gap: 1.5rem;
}

.slider-inner-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.slider-track {
    display: flex;
    transition: transform var(--transition-slow);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    padding: 0 1rem;
    box-sizing: border-box;
    transition: var(--transition-slow);
    opacity: 0.4;
    transform: scale(0.85);
    filter: blur(1.5px);
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 10;
}

.testimonial-card {
    background-color: var(--primary-dark);
    border: 2px solid var(--primary-light);
    border-radius: 12px;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-slide.active .testimonial-card {
    background-color: var(--bg-dark-panel);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-xl);
}

/* Avatar positioned over the top card border */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    overflow: hidden;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-fallback {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Slider buttons */
.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 12;
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark-navy);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background-color: var(--accent-gold);
    width: 24px;
    border-radius: 5px;
}

/* Numerical Statistics Counters */
.numerical-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 6rem;
    border-top: 1px solid var(--primary-light);
    padding-top: 4rem;
}

.numerical-stat-card {
    text-align: center;
    padding: 1rem;
}

.num-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.num-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   FAQ SECTION (SECTION F)
   ========================================================================== */
.faq-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--bg-light);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 76, 68, 0.2);
}

.faq-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    color: var(--primary-deep);
}

.faq-arrow {
    color: var(--accent-gold);
    font-size: 0.9rem;
    transition: transform var(--transition-normal);
}

/* Modern smooth height transition using CSS grid rows */
.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-normal);
}

.faq-content {
    overflow: hidden;
}

.faq-content p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Expand state */
.faq-item.active {
    border-color: rgba(14, 76, 68, 0.3);
    box-shadow: var(--shadow-lg);
}

.faq-item.active .faq-body {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* Accredited Partners Banner */
.partner-logos-container {
    border-top: 1px solid var(--border-light);
    padding-top: 4rem;
    text-align: center;
}

.partners-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.partner-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.partner-logo {
    width: 140px;
    height: 44px;
    opacity: 0.45;
    transition: var(--transition-fast);
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.03);
}

.partner-logo svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   CONTACT SECTION (SECTION G)
   ========================================================================== */
.contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--primary-deep);
    color: var(--text-light);
}

.contact-section .section-label {
    text-align: left;
}

.contact-section .section-title {
    color: var(--text-light);
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 50% 45%;
    gap: 5%;
    align-items: center;
}

.contact-intro-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* Custom form layout */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
}

.custom-form input, .custom-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 4px;
    border: 1px solid var(--border-dark);
    background-color: rgba(6, 24, 22, 0.6);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.custom-form input::placeholder, .custom-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-form input:focus, .custom-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(6, 24, 22, 0.9);
    box-shadow: 0 0 0 3px rgba(242, 154, 56, 0.15);
}

.form-status-msg {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
}

.form-status-msg.success {
    color: #4ade80;
}

.form-status-msg.error {
    color: #f87171;
}

/* Contact Building Showcase */
.contact-showcase {
    width: 100%;
}

.showcase-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 14;
    border: 3px solid var(--primary-light);
}

.showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-tag {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    color: var(--bg-dark-navy);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   FOOTER (SECTION H)
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark-navy);
    color: var(--text-light);
    padding-top: 5rem;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 32% 18% 22% 28%;
    gap: 4%;
    padding-bottom: 4rem;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

/* Brand col tweaks */
.brand-col .logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 54px;
    width: auto;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.copyright-desktop {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* Links col */
.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.links-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.links-col a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

/* Contact col */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    align-items: flex-start;
}

.contact-list li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-list a:hover {
    color: var(--accent-gold);
}

/* Newsletter col */
.newsletter-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.newsletter-input-group input {
    flex: 1;
    background-color: var(--bg-dark-panel);
    border: 1px solid var(--border-dark);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.newsletter-input-group .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-dark-panel);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-mobile {
    display: none;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links a:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   VIDEO PLAYER MODAL
   ========================================================================== */
.video-modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.video-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    background-color: var(--bg-dark-panel);
    border: 2px solid var(--accent-gold);
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    position: relative;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.video-modal-backdrop.open .video-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.25rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.video-shield-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    animation: pulseShield 2s infinite ease-in-out;
}

@keyframes pulseShield {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

.modal-video-placeholder h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-video-placeholder p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE-FRIENDLY & TABLETS)
   ========================================================================== */
@media (max-width: 1024px) {
    .about-grid, .services-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .collage-grid {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .about-content {
        align-items: center;
        text-align: center;
    }
    
    .about-benefits {
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-section .section-label, 
    .contact-section .section-title {
        text-align: center;
    }
    
    .contact-form-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .custom-form {
        width: 100%;
    }
    
    .contact-showcase {
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonial-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }
    
    .header-contact {
        gap: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Handle navigation layout on mid-size screens */
    .nav-link {
        padding: 1.1rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .contact-meta-item {
        justify-content: center;
    }
    
    .mobile-nav-toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 1.5rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        border-top: 1px solid var(--primary-light);
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-links > li {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.9rem 1.5rem;
        border-bottom: none;
        border-left: 4px solid transparent;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-link:hover, .nav-link.active, .nav-dropdown.open > .nav-link {
        border-left-color: var(--accent-gold);
        border-bottom-color: transparent;
    }
    
    /* Responsive Dropdown Menu (Mobile Accordion style) */
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-dark-panel);
        border-top: none;
        border-left: 4px solid var(--accent-gold);
        border-radius: 0;
    }
    
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8);
        padding: 0.75rem 2.25rem;
        font-size: 0.8rem;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255,255,255,0.05);
        color: var(--accent-gold);
        padding-left: 2.25rem;
    }
    
    .hero-section {
        height: 520px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .collage-grid {
        height: 380px;
    }
    
    .stats-banner-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background-color: var(--border-dark);
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .numerical-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
    
    .partner-logos-grid {
        gap: 2rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }
    
    .copyright-desktop {
        display: none;
    }
    
    .copyright-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .numerical-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-banner-wrapper {
        border-radius: 0;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
}

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */

/* Page Hero Banner */
.page-hero {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 96, 86, 0.15) 0%, rgba(6, 24, 22, 0) 70%);
    top: -10%;
    right: -5%;
    pointer-events: none;
}

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

.page-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.breadcrumbs {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: var(--accent-gold);
}

.breadcrumbs a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Corporate Profile Section */
.profile-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.profile-grid {
    display: grid;
    grid-template-columns: 53% 42%;
    gap: 5%;
    align-items: center;
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile-content .section-title {
    text-align: left;
    margin-bottom: 1.75rem;
}

.profile-text {
    font-size: 0.975rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.profile-text.highlight {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-deep);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.profile-media {
    width: 100%;
}

.media-border-frame {
    border-radius: 12px;
    border: 3px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4 / 3;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.profile-image:hover {
    transform: scale(1.03);
}

/* Core Values Section */
.values-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.value-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 76, 68, 0.2);
}

.value-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background-color: rgba(14, 76, 68, 0.1);
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.value-card:hover .value-icon-box {
    background-color: var(--primary-deep);
    color: var(--accent-gold);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-deep);
}

.value-card p {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Accreditation Highlight Banner */
.accreditation-highlight-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.highlight-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, var(--bg-dark-panel) 0%, var(--bg-dark-navy) 100%);
    border-radius: 12px;
    padding: 3.5rem;
    color: var(--text-light);
    box-shadow: var(--shadow-xl);
}

.highlight-info {
    max-width: 580px;
}

.highlight-info h2 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.highlight-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.65;
}

.highlight-stats {
    display: flex;
    gap: 3rem;
    flex-shrink: 0;
}

.highlight-stat-item {
    text-align: center;
}

.highlight-stat-item .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.highlight-stat-item .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Call to Action Banner */
.cta-banner-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
}

.cta-banner-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text-box {
    max-width: 750px;
}

.cta-text-box h2 {
    color: var(--text-light);
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.cta-text-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.icon-after {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.cta-banner-section .btn:hover .icon-after {
    transform: translateX(4px);
}

/* Responsive Additions for About page */
@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-content {
        align-items: center;
        text-align: center;
    }
    
    .profile-content .section-title {
        text-align: center;
    }
    
    .profile-media {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .highlight-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2.5rem;
        gap: 2.5rem;
    }
    
    .highlight-info {
        max-width: 100%;
    }
    
    .highlight-stats {
        justify-content: center;
        width: 100%;
    }
    
    .cta-banner-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-text-box h2 {
        font-size: 1.5rem;
    }
}
