/* ELKINGS VALLEY BLOODLINE LTD - Main Styles */

/* CSS Variables */
:root {
    /* Colors */
    --primary-navy: #0B1426;
    --secondary-navy: #1A2A4A;
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #B8941F;
    --crystal-white: #FFFFFF;
    --platinum-grey: #E8E8E8;
    --emerald-green: #50C878;
    --text-dark: #333333;
    --emerald-dark: #3A9B5C;
    --background: #8DACB8;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--primary-navy);
    background-color: var(--crystal-white);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--platinum-grey);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--gold-dark), var(--gold));
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--secondary-navy);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Buttons */
.btn-primary, .btn-hero, .btn-outline, .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--crystal-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-hero {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--crystal-white);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--crystal-white);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-dark));
    color: var(--crystal-white);
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-navy);
    font-weight: 300;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 20, 38, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(11, 20, 38, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
    height: 75px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.2;
    text-align: left;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crystal-white);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.btn-consultation {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--crystal-white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

.nav-toggle:hover span {
    background: var(--crystal-white);
}

/* Hero Section - Standardized */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Force white text for hero elements */
.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero .hero-title,
.hero .hero-subtitle,
.hero .title-line {
    color: #ffffff !important;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 20, 38, 0.7), rgba(26, 42, 74, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--crystal-white) !important;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--crystal-white) !important;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
    color: var(--crystal-white) !important;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    color: var(--crystal-white) !important;
}

.hero-controls {
    display: none;
}

.hero-prev {
    left: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--crystal-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-next {
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--crystal-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
}

.hero-indicators {
    display: none;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--crystal-white);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    color: var(--crystal-white);
}

.logo-loader img {
    height: 80px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    animation: loading 3s ease-in-out;
}

/* Overview Section */
.overview {
    padding: var(--section-padding);
    background: var(--crystal-white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    text-align: center;
    padding: 2rem;
    background: var(--crystal-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.pillar-card:hover::before {
    left: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--crystal-white);
}

.pillar-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--secondary-navy);
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--platinum-grey), var(--crystal-white));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--crystal-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.play-button:hover {
    transform: scale(1.1);
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition-smooth);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-indicator {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.play-indicator:hover {
    transform: scale(1.1);
    background: var(--gold);
    color: var(--crystal-white);
}

/* Video Loading State */
.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--platinum-grey), var(--crystal-white));
    z-index: 1;
    transition: opacity 0.5s ease;
}

.video-container.loaded::before {
    opacity: 0;
    pointer-events: none;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
}

.video-container.video-error .video-fallback {
    display: block !important;
}

.video-container.video-error video {
    display: none;
}

/* Divisions Preview Section */
.divisions-preview {
    padding: var(--section-padding);
    background: var(--crystal-white);
}

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

/* Divisions CTA Section */
.divisions-cta {
    padding: var(--section-padding);
    background: #000000;
    color: #ffffff !important;
    text-align: center;
}

.divisions-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff !important;
    opacity: 0.9;
    max-width: 600px;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary,
.cta-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    min-width: 200px;
    justify-content: center;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-navy);
    border: 2px solid transparent;
}

.cta-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.cta-actions .btn-outline {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
}

.cta-actions .btn-outline:hover {
    background: #ffffff;
    color: var(--primary-navy) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.division-card {
    background: var(--crystal-white);
    background-image: url('../img/divisions/divisions/card.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-height: 200px; /* Ensure minimum height for background visibility */
}

/* Fallback background if image doesn't load */
.division-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    z-index: 0;
    opacity: 0.3;
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

/* Division Card Background Overlay */
.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Black overlay for better contrast */
    border-radius: 15px;
    z-index: 1;
}

/* Deer Animation Styles */
#deer-animation {
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.4));
    transition: opacity 0.5s ease-in-out;
}

/* CSS Deer Silhouette */
.deer-silhouette {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50% 20% 50% 20%;
    animation: deerGallop 0.5s ease-in-out infinite alternate;
}

.deer-body {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 50%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50% 20% 50% 20%;
}

.deer-head {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 35%;
    height: 40%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50% 30% 50% 30%;
}

.deer-antlers {
    position: absolute;
    top: -10%;
    left: 15%;
    width: 20%;
    height: 30%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 10px;
    transform: rotate(-15deg);
}

.deer-antlers::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10px;
    width: 15px;
    height: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 10px;
    transform: rotate(30deg);
}

.deer-legs {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
}

.leg {
    position: absolute;
    width: 8px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 4px;
    animation: legMove 0.5s ease-in-out infinite alternate;
}

.leg-1 {
    left: 25%;
    height: 60%;
    animation-delay: 0s;
}

.leg-2 {
    left: 35%;
    height: 70%;
    animation-delay: 0.1s;
}

.leg-3 {
    left: 60%;
    height: 60%;
    animation-delay: 0.2s;
}

.leg-4 {
    left: 70%;
    height: 70%;
    animation-delay: 0.3s;
}

@keyframes deerGallop {
    0% { transform: translateY(0px) rotate(-2deg); }
    100% { transform: translateY(-5px) rotate(2deg); }
}

@keyframes legMove {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-3px); }
}

/* Deer Animation Keyframes */
@keyframes deerRun {
    0% {
        left: -200px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 200px);
        opacity: 0;
    }
}

/* Deer Animation Active State */
#deer-animation.animate {
    animation: deerRun 4s ease-in-out forwards;
}

/* Responsive Deer Animation */
@media (max-width: 768px) {
    #deer-animation {
        width: 100px;
        height: 100px;
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
    }
    
    @keyframes deerRun {
        0% {
            left: -150px;
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            left: calc(100% + 150px);
            opacity: 0;
        }
    }
}

@media (max-width: 480px) {
    #deer-animation {
        width: 80px;
        height: 80px;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    }
    
    @keyframes deerRun {
        0% {
            left: -100px;
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            left: calc(100% + 100px);
            opacity: 0;
        }
    }
}

.division-card > * {
    position: relative;
    z-index: 2;
}

.division-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--crystal-white);
}

.division-card h3 {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.division-card p {
    color: #ffffff !important;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Division Card Internal Structure */
.division-header {
    margin-bottom: 0.75rem;
}

.division-title h2 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.division-subtitle {
    font-size: 0.85rem;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.division-content {
    margin-bottom: 0.75rem;
}

.division-description p {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.division-features {
    margin-bottom: 0.5rem;
}

.feature-item {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-item i {
    font-size: 0.7rem;
    color: var(--gold);
}

.division-stats {
    margin-bottom: 0.5rem;
}

.division-stats .stat-item {
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.division-stats .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.division-stats .stat-label {
    font-size: 0.7rem;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.division-actions {
    margin-top: 0.5rem;
}

.division-actions .btn-primary,
.division-actions .btn-outline {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    margin: 0.25rem;
}

.division-hover {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.division-card:hover .division-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Flagship Projects Section */
.flagship-projects {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: var(--crystal-white);
}

.flagship-projects .section-title,
.flagship-projects .section-subtitle {
    color: var(--crystal-white);
}

/* Force white text for all project text in flagship projects */
.flagship-projects .project-overlay *,
.flagship-projects .project-info * {
    color: var(--crystal-white) !important;
}

/* Very specific override for project text */
section.flagship-projects .project-overlay h3,
section.flagship-projects .project-overlay h4,
section.flagship-projects .project-overlay p,
section.flagship-projects .project-info h3,
section.flagship-projects .project-info p {
    color: #ffffff !important;
}

.projects-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.project-featured {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-featured .project-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.project-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-featured:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--crystal-white);
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--crystal-white) !important;
}

.project-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--crystal-white) !important;
}

.flagship-projects .project-info h3 {
    color: var(--crystal-white) !important;
}

.flagship-projects .project-info p {
    color: var(--crystal-white) !important;
}

.project-status {
    background: var(--gold);
    color: var(--primary-navy);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.flagship-projects .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Projects Page Specific Styles */
.projects-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
}

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

.projects-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

.projects-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.7);
    z-index: 2;
}

.projects-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--crystal-white);
    max-width: 800px;
    padding: 0 2rem;
}

.projects-hero .hero-title,
.projects-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes kenBurns {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-20px, -10px); }
}

/* Particle animations */
@keyframes particleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Projects Intro Text */
.projects-intro-text {
    background: var(--crystal-white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.projects-intro-text h3 {
    color: var(--primary-navy) !important;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.projects-intro-text p {
    color: var(--text-dark) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.projects-intro-text p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--gold-dark) !important;
}

/* Project Filter Section - Global Styles */
.project-filter {
    background: var(--crystal-white);
    padding: 3rem 0;
}

.project-filter .section-title {
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-btn {
    background: var(--gold);
    color: var(--primary-navy);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.filter-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.filter-btn.active {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Force visibility for specific text elements only */
h1, h2, h3, h4, h5, h6, p {
    visibility: visible !important;
}

/* Specific fixes for common issues - only for projects page */
.projects-page .section-title, 
.projects-page .section-subtitle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Project filter visibility - only for projects page */
.projects-page .project-filter {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.projects-page .project-filter .container {
    display: block !important;
    visibility: visible !important;
}

.projects-page .filter-tabs {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.projects-hero .particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Particles container for all hero sections */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

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

.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Featured Projects Section */
.featured-projects {
    padding: 4rem 0;
    background: var(--crystal-white);
}

.featured-projects .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-projects .section-title {
    color: var(--primary-navy) !important;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.featured-projects .section-subtitle {
    color: var(--text-dark) !important;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Project Category Sections */
.project-category-section {
    margin: 4rem 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.category-title {
    color: var(--primary-navy) !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 3rem 0 2rem 0;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.projects-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.project-card {
    background: var(--crystal-white) !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.project-image {
    position: relative !important;
    overflow: hidden !important;
    height: 250px !important;
    width: 100% !important;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1) !important;
}

.project-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, rgba(11, 20, 38, 0.9), rgba(26, 42, 74, 0.8)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1 !important;
}

.project-info {
    text-align: center !important;
    color: var(--crystal-white) !important;
    padding: 1.5rem !important;
    z-index: 3;
}

.project-info h3 {
    color: var(--crystal-white) !important;
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    font-weight: 700 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.project-info p {
    color: var(--crystal-white) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.project-meta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 1rem !important;
    gap: 0.5rem;
}

.project-category, .project-year {
    background: var(--gold) !important;
    color: var(--primary-navy) !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 15px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Project Statistics */
.project-stats {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    padding: 4rem 0;
    color: var(--crystal-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--crystal-white);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--crystal-white);
    opacity: 0.9;
    display: block;
}
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card .project-image {
    height: 180px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.project-card .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: var(--crystal-white);
}

.project-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--crystal-white) !important;
}

.project-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--crystal-white) !important;
}

.project-card .project-meta {
    color: var(--crystal-white) !important;
}

.project-card .project-category,
.project-card .project-year {
    color: var(--crystal-white) !important;
}

/* Ensure all project card text is white */
.project-card .project-info h3,
.project-card .project-info p,
.project-card .project-info .project-meta,
.project-card .project-info .project-category,
.project-card .project-info .project-year {
    color: #ffffff !important;
}

/* Force white text for all project overlay content */
.project-card .project-overlay * {
    color: #ffffff !important;
}

/* Particle Animation Keyframes */
@keyframes particleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.3;
    }
}

.flagship-projects .project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.flagship-projects .project-card:hover {
    transform: translateY(-5px);
}

.flagship-projects .project-card .project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.flagship-projects .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flagship-projects .project-card:hover img {
    transform: scale(1.05);
}

.flagship-projects .project-card .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: var(--crystal-white);
}

.flagship-projects .project-card h4 {
    color: var(--crystal-white) !important;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.flagship-projects .project-card p {
    color: var(--crystal-white) !important;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Investor Teaser Section */
.investor-teaser {
    padding: var(--section-padding);
    background: var(--crystal-white);
}

.teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.teaser-text h2 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

/* Investment Highlights Section */
.investment-highlights {
    padding: 5rem 0;
    background: #000000;
}

.investment-highlights .highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investment-highlights .highlights-text h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.investment-highlights .highlights-text .lead {
    font-size: 1.2rem;
    color: #ffffff !important;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.investment-highlights .highlight-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.investment-highlights .highlight-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #000000;
    border-radius: 15px;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--gold);
}

.investment-highlights .highlight-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.investment-highlights .point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crystal-white);
    font-size: 1.2rem;
}

.investment-highlights .point-content h4 {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.investment-highlights .point-content p {
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Investment Options Section */
.investment-options {
    padding: 5rem 0;
    background: #000000;
}

.investment-options .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.investment-options .section-title {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.investment-options .section-subtitle {
    color: #ffffff !important;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.investment-options .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.investment-options .option-card {
    background: #000000;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.investment-options .option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.investment-options .option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--platinum-grey);
}

.investment-options .option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #ffd700);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crystal-white);
    font-size: 1.5rem;
}

.investment-options .option-header h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.investment-options .option-content p {
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.investment-options .option-features {
    margin-bottom: 2rem;
}

.investment-options .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #ffffff !important;
    font-size: 0.95rem;
}

.investment-options .feature-item i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Growth Strategy Section */
.growth-strategy {
    padding: 5rem 0;
    background: #000000;
}

.growth-strategy .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.growth-strategy .section-title {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.growth-strategy .section-subtitle {
    color: #ffffff !important;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.growth-strategy .strategy-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.growth-strategy .strategy-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--primary-navy));
    border-radius: 2px;
}

.growth-strategy .timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.growth-strategy .timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--crystal-white);
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.growth-strategy .marker-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.growth-strategy .timeline-content {
    flex: 1;
    background: #000000;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.growth-strategy .timeline-year {
    display: inline-block;
    background: var(--gold);
    color: var(--crystal-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.growth-strategy .timeline-content h3 {
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.growth-strategy .timeline-content p {
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Investor Relations Section */
.investor-relations {
    padding: 5rem 0;
    background: #000000;
}

.investor-relations .relations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.investor-relations .relations-text h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.investor-relations .relations-text .lead {
    font-size: 1.2rem;
    color: #ffffff !important;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.investor-relations .relations-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.investor-relations .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #000000;
    border-radius: 15px;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--gold);
}

.investor-relations .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.investor-relations .feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crystal-white);
    font-size: 1.2rem;
}

.investor-relations .feature-content h4 {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.investor-relations .feature-content p {
    color: #ffffff !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.investor-relations .relations-contact {
    position: sticky;
    top: 2rem;
}

.investor-relations .contact-card {
    background: #000000;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.investor-relations .contact-card h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.investor-relations .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.investor-relations .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #000000;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.investor-relations .contact-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.investor-relations .contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.investor-relations .contact-details h4 {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.investor-relations .contact-details p {
    color: #ffffff !important;
    font-size: 0.9rem;
    margin: 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--platinum-grey);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    background: var(--gold-light);
    transform: translateX(10px);
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-card {
    background: linear-gradient(135deg, var(--gold-light), var(--crystal-white));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--secondary-navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CSR & Impact Section */
.csr-impact {
    position: relative;
    padding: var(--section-padding);
    color: var(--crystal-white);
    overflow: hidden;
}

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

.csr-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.csr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 150, 80, 0.8), rgba(0, 100, 50, 0.9));
    z-index: 2;
}

.csr-impact .container {
    position: relative;
    z-index: 3;
}

.csr-impact .section-title,
.csr-impact .section-subtitle {
    color: var(--crystal-white);
}

.csr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.csr-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.csr-programs h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.program-list {
    margin-bottom: 2rem;
}

.program-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.program-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.program-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.program-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.program-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Media Highlights Section */
.media-highlights {
    padding: var(--section-padding);
    background: var(--crystal-white);
}

.media-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.media-card {
    background: var(--crystal-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.media-card.featured {
    grid-row: span 2;
}

.media-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.media-card.featured .media-image {
    height: 300px;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.media-card:hover .media-image img {
    transform: scale(1.05);
}

.media-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--primary-navy);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.media-content {
    padding: 1.5rem;
}

.media-content h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.media-content p {
    color: var(--secondary-navy);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.media-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.media-date {
    color: var(--secondary-navy);
    font-size: 0.9rem;
}

.media-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.media-link:hover {
    color: var(--gold-dark);
}

/* Global Presence Section */
.global-presence {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--platinum-grey), var(--crystal-white));
}

.presence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.world-map {
    position: relative;
    background: var(--crystal-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 10px;
    overflow: hidden;
}

.map-pin {
    position: absolute;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.map-pin:hover {
    transform: scale(1.2);
}

.pin-marker {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 3px solid var(--crystal-white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pin-label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-navy);
    color: var(--crystal-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-smooth);
}

.map-pin:hover .pin-label {
    opacity: 1;
}

.presence-stats h3 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.presence-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--crystal-white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #000000; /* Changed to black */
    color: #ffffff; /* Changed to white */
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--gold); /* Added top border */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 100px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
}

.footer-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #ffffff; /* Changed to white */
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crystal-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ffffff; /* Changed to white */
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ffffff; /* Changed to white */
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold); /* Changed to gold on hover */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff; /* Changed to white */
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--gold); /* Keep icons gold */
    width: 20px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--gold); /* Changed to gold border */
    padding-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: #ffffff; /* Changed to white */
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #ffffff; /* Changed to white */
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--gold); /* Changed to gold on hover */
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp colors */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
    border: 2px solid #ffffff;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.btn-cta .whatsapp-icon {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 12px;
    font-weight: bold;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* About Page Sections */

/* Divisions Hero Section */
.divisions-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.divisions-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.divisions-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.divisions-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.divisions-hero .hero-content {
    position: relative;
    z-index: 3;
}

/* Divisions Overview Section */
.divisions-overview {
    padding: var(--section-padding);
    background: var(--crystal-white);
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--platinum-grey);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 500;
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Investors Hero Section */
.investors-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
}

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

.investors-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

.investors-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.7);
    z-index: 2;
}

.investors-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--crystal-white);
    max-width: 800px;
    padding: 0 2rem;
}

.investors-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.investors-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Media Hero Section */
.media-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
}

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

.media-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

.media-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.7);
    z-index: 2;
}

.media-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--crystal-white);
    max-width: 800px;
    padding: 0 2rem;
}

.media-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.media-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* CSR Hero Section */
.csr-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
}

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

.csr-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

.csr-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.7);
    z-index: 2;
}

.csr-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--crystal-white);
    max-width: 800px;
    padding: 0 2rem;
}

.csr-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.csr-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Testimonials Hero Section */
.testimonials-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
}

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

.testimonials-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

.testimonials-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.7);
    z-index: 2;
}

.testimonials-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--crystal-white);
    max-width: 800px;
    padding: 0 2rem;
}

.testimonials-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonials-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* FAQ Hero Section */
.faq-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
}

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

.faq-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

.faq-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.7);
    z-index: 2;
}

.faq-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--crystal-white);
    max-width: 800px;
    padding: 0 2rem;
}

.faq-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
}

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

.contact-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.7);
    z-index: 2;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--crystal-white);
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* FAQ Search Section */
.faq-search {
    padding: 3rem 0;
    background: #000000;
}

.faq-search .search-container {
    max-width: 600px;
    margin: 0 auto;
}

.faq-search .search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #000000;
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 1rem 2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    transition: var(--transition-smooth);
}

.faq-search .search-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.faq-search .search-box i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.faq-search .search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    color: #ffffff !important;
    background: transparent;
}

.faq-search .search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* FAQ Categories Section */
.faq-categories {
    padding: 2rem 0;
    background: #000000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.faq-categories .category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-categories .category-tab {
    padding: 0.75rem 1.5rem;
    background: #000000;
    border: 2px solid var(--gold);
    border-radius: 25px;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.faq-categories .category-tab:hover {
    background: var(--gold);
    color: var(--crystal-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.faq-categories .category-tab.active {
    background: var(--gold);
    color: var(--crystal-white);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* FAQ Content Section */
.faq-content {
    padding: 4rem 0;
    background: #000000;
}

.faq-content .faq-section {
    margin-bottom: 3rem;
}

.faq-content .faq-section:last-child {
    margin-bottom: 0;
}

.faq-content .faq-section-title {
    color: #ffffff !important;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.faq-content .faq-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.faq-content .faq-item {
    background: #000000;
    border: 1px solid var(--gold);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

.faq-content .faq-item:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.faq-content .faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.faq-content .faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-content .faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-content .faq-question h3 {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-content .faq-question .faq-icon {
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-content .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.6;
    display: none;
    animation: fadeInDown 0.3s ease-in-out;
}

.faq-content .faq-item.active .faq-answer {
    display: block;
}

.faq-content .faq-answer p {
    margin-bottom: 1rem;
}

.faq-content .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-content .faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-content .faq-answer li {
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.faq-content .faq-answer strong {
    color: var(--gold) !important;
    font-weight: 600;
}

/* FAQ No Results */
.faq-no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: #ffffff !important;
}

.faq-no-results i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.faq-no-results h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-no-results p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff !important;
}

/* FAQ Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Styles */
.contact-info {
    padding: 4rem 0;
    background: #000000; /* Changed to black */
}

.contact-info .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info .contact-card {
    background: #000000; /* Changed to black */
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2); /* Adjusted shadow */
    transition: var(--transition-smooth);
    border: 1px solid var(--gold); /* Changed border color */
}

.contact-info .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3); /* Adjusted shadow */
    border-color: var(--gold);
}

.contact-info .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--crystal-white);
    font-size: 2rem;
}

.contact-info .contact-card h3 {
    color: #ffffff !important; /* Changed to white */
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info .contact-card p {
    color: #ffffff !important; /* Changed to white */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info .btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-info .btn-outline:hover {
    background: var(--gold);
    color: var(--crystal-white);
    transform: translateY(-2px);
}

/* Contact Form & Map Section */
.contact-form-map {
    padding: 4rem 0;
    background: #000000; /* Changed to black */
}

.contact-form-map .form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section h2 {
    color: #ffffff !important; /* Changed to white */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #ffffff !important; /* Changed to white */
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: #000000; /* Changed to black */
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2); /* Adjusted shadow */
    border: 1px solid var(--gold); /* Added border */
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    color: #ffffff !important; /* Changed to white */
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gold); /* Changed border color */
    border-radius: 10px;
    font-size: 1rem;
    color: #ffffff !important; /* Changed to white */
    background: #000000; /* Changed to black */
    transition: var(--transition-smooth);
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3); /* Enhanced shadow */
}

.contact-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form Placeholders */
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important; /* White placeholder text */
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--gold), #ffd700);
    color: var(--crystal-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Map Section */
.contact-map {
    background: #000000; /* Changed to black */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2); /* Adjusted shadow */
    border: 1px solid var(--gold); /* Added border */
    height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Details Section */
.contact-details {
    padding: 4rem 0;
    background: #000000; /* Changed to black */
}

.contact-details .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details .detail-section h3 {
    color: #ffffff !important; /* Changed to white */
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-details .detail-section p {
    color: #ffffff !important; /* Changed to white */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-details .detail-section ul {
    list-style: none;
    padding: 0;
}

.contact-details .detail-section li {
    color: #ffffff !important; /* Changed to white */
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.contact-details .detail-section li::before {
    content: '•';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Success/Error Messages */
.contact-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.contact-message.success {
    background: rgba(80, 200, 120, 0.1);
    color: var(--emerald-green);
    border: 1px solid var(--emerald-green);
}

.contact-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Office Hours Section */
.office-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #000000; /* Changed to black */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2); /* Adjusted shadow */
    border: 1px solid var(--gold); /* Added border */
}

.office-hours h3 {
    color: #ffffff !important; /* Changed to white */
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #000000; /* Changed to black */
    border-radius: 8px;
    border: 1px solid var(--gold); /* Added border */
    transition: var(--transition-smooth);
}

.hours-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.hours-item .day {
    color: #ffffff !important; /* Changed to white */
    font-weight: 600;
    font-size: 0.95rem;
}

.hours-item .time {
    color: #ffffff !important; /* Changed to white */
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Map Section */
.contact-map-section h2 {
    color: #ffffff !important; /* Changed to white */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-map-section p {
    color: #ffffff !important; /* Changed to white */
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Regional Offices Section */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.office-card {
    background: #000000; /* Changed to black */
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2); /* Adjusted shadow */
    transition: var(--transition-smooth);
    border: 1px solid var(--gold); /* Changed border color */
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3); /* Adjusted shadow */
    border-color: var(--gold);
}

.office-flag {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--crystal-white);
    font-size: 1.5rem;
}

.office-card h3 {
    color: #ffffff !important; /* Changed to white */
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office-type {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-address,
.office-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff !important; /* Changed to white */
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.office-address i,
.office-contact i {
    color: var(--gold);
    font-size: 0.9rem;
}

.about-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Contact Hero Text */
.contact-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Consultation Page Styles */
.consultation-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.consultation-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

.consultation-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.consultation-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
}

.consultation-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.consultation-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Consultation Benefits Section */
.consultation-benefits {
    padding: 4rem 0;
    background: #000000; /* Black background */
}

.consultation-benefits .section-title {
    color: #ffffff !important; /* White text */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.consultation-benefits .section-subtitle {
    color: #ffffff !important; /* White text */
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #000000; /* Black background */
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2); /* Gold shadow */
    border: 1px solid var(--gold); /* Gold border */
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3); /* Enhanced gold shadow */
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 2rem;
}

.benefit-card h3 {
    color: #ffffff !important; /* White text */
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #ffffff !important; /* White text */
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Consultation Form Section */
.consultation-form-section {
    padding: 4rem 0;
    background: #000000; /* Black background */
}

.consultation-form-section .section-title {
    color: #ffffff !important; /* White text */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.consultation-form-section .section-subtitle {
    color: #ffffff !important; /* White text */
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.consultation-form {
    background: #000000; /* Black background */
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2); /* Gold shadow */
    border: 1px solid var(--gold); /* Gold border */
    max-width: 800px;
    margin: 0 auto;
}

.consultation-form .form-group {
    margin-bottom: 1.5rem;
}

.consultation-form .form-group label {
    display: block;
    color: #ffffff !important; /* White text */
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.consultation-form .form-group input,
.consultation-form .form-group select,
.consultation-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gold); /* Gold border */
    border-radius: 10px;
    font-size: 1rem;
    color: #ffffff !important; /* White text */
    background: #000000; /* Black background */
    transition: var(--transition-smooth);
    font-family: inherit;
}

.consultation-form .form-group input:focus,
.consultation-form .form-group select:focus,
.consultation-form .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3); /* Gold glow */
}

.consultation-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.consultation-form .form-group input::placeholder,
.consultation-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important; /* White placeholder */
}

.consultation-form .btn-primary {
    background: linear-gradient(135deg, var(--gold), #ffd700);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.consultation-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Consultation Process Section */
.consultation-process {
    padding: 4rem 0;
    background: #000000; /* Black background */
}

.consultation-process .section-title {
    color: #ffffff !important; /* White text */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.consultation-process .section-subtitle {
    color: #ffffff !important; /* White text */
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background: #000000; /* Black background */
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2); /* Gold shadow */
    border: 1px solid var(--gold); /* Gold border */
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3); /* Enhanced gold shadow */
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    color: #ffffff !important; /* White text */
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: #ffffff !important; /* White text */
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.form-navigation #prevBtn {
    display: none;
}

.form-navigation #submitBtn {
    display: none;
}

.form-navigation #prevBtn.show {
    display: flex;
}

.form-navigation #submitBtn.show {
    display: flex;
}

.about-hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.about-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--crystal-white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--crystal-white) !important;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--crystal-white) !important;
}

/* Company Story Section */
.company-story {
    padding: var(--section-padding);
    background: var(--crystal-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-navy);
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.story-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    transition: var(--transition-smooth);
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Elite Timeline Section */
.elite-timeline {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--platinum-grey), var(--crystal-white));
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--crystal-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 2rem;
}

.timeline-year {
    display: inline-block;
    background: var(--gold);
    color: var(--crystal-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--secondary-navy);
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 4px solid var(--crystal-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--gold);
    z-index: 2;
}

/* Heritage Section */
.heritage {
    position: relative;
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: var(--crystal-white);
    overflow: hidden;
}

.heritage-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.heritage-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.heritage-text {
    width: 100%;
    text-align: center;
}

.heritage-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.heritage-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.heritage-text .lead {
    color: #000000 !important;
    font-weight: 500;
    opacity: 1;
}

.heritage-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--golden-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-navy);
}

.value-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--golden-yellow);
    font-weight: 600;
}

.value-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.heritage-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.heritage-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.heritage-image:hover img {
    transform: scale(1.05);
}

.heritage-legacy {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--golden-yellow);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.heritage-legacy h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--golden-yellow);
    font-weight: 600;
}

.heritage-legacy p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

/* Awards Section */
.awards {
    padding: var(--section-padding);
    background: var(--crystal-white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.award-card {
    text-align: center;
    padding: 2rem;
    background: var(--platinum-grey);
    border-radius: 15px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.award-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--crystal-white);
}

.award-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.award-card p {
    color: var(--secondary-navy);
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--platinum-grey), var(--crystal-white));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--crystal-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--crystal-white);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--secondary-navy);
    line-height: 1.6;
}

/* CEO Section */
.ceo-section {
    padding: var(--section-padding);
    background: var(--crystal-white);
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.ceo-left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ceo-right-column {
    display: flex;
    flex-direction: column;
}

.ceo-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CEO Carousel */
.ceo-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

/* Show first slide immediately */
.ceo-slide:nth-child(1) {
    opacity: 1;
}

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

/* Ensure first slide is visible by default */
.ceo-slide:first-child {
    opacity: 1;
}

/* Fallback: Show all slides if carousel fails */
.ceo-carousel:not(.initialized) .ceo-slide {
    opacity: 1;
    position: static;
    display: block;
}

.ceo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.ceo-slide .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.ceo-slide:hover .image-overlay {
    opacity: 1;
}

.quote-icon {
    font-size: 3rem;
    color: var(--crystal-white);
    animation: pulse 2s infinite;
}

/* CEO Carousel Controls */

.ceo-text h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ceo-title {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ceo-company {
    font-size: 1.1rem;
    color: var(--secondary-navy);
    font-weight: 500;
    margin-bottom: 2rem;
}

.ceo-bio {
    margin-bottom: 2rem;
}

.ceo-bio p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-navy);
    margin-bottom: 1.5rem;
}

.ceo-sectors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--platinum-grey);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.sector-item:hover {
    background: var(--gold);
    color: var(--crystal-white);
    transform: translateX(5px);
}

.sector-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sector-item:hover i {
    color: var(--crystal-white);
}

.sector-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.ceo-signature {
    margin: 2rem 0 0 0;
    padding: 1.5rem;
    background: var(--platinum-grey);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.signature-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.signature-text {
    flex: 1;
    text-align: left;
}

.signature-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: sepia(1) hue-rotate(30deg) saturate(1.2);
    opacity: 0.9;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.signature-title {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: var(--primary-navy) !important;
        flex-direction: column !important;
        padding: 2rem 15px !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease-in-out !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
    }
    
    .nav-menu.active {
        transform: translateX(0) !important;
    }
    
    /* Mobile Navigation Overlay */
    .nav-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease-in-out !important;
    }
    
    .nav-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    
    .nav-link {
        padding: 1rem 0 !important;
        font-size: 1.1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: 100% !important;
        text-align: left !important;
        color: var(--crystal-white) !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
    }
    
    .nav-link:hover {
        color: var(--gold) !important;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden !important;
        height: 100vh !important;
    }
    
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Mobile Hero Styles - All Pages */
    .hero,
    .projects-hero,
    .divisions-hero,
    .about-hero,
    .investors-hero,
    .media-hero,
    .csr-hero,
    .testimonials-hero,
    .faq-hero,
    .contact-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .investors-hero .hero-title,
    .media-hero .hero-title,
    .csr-hero .hero-title,
    .testimonials-hero .hero-title,
    .faq-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .investors-hero .hero-subtitle,
    .media-hero .hero-subtitle,
    .csr-hero .hero-subtitle,
    .testimonials-hero .hero-subtitle,
    .faq-hero .hero-subtitle,
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Mobile Investment Sections */
    .investment-highlights .highlights-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .investment-highlights .highlights-text h2 {
        font-size: 2rem;
    }
    
    .investment-options .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .investment-options .section-title {
        font-size: 2rem;
    }
    
    .growth-strategy .section-title {
        font-size: 2rem;
    }
    
    .growth-strategy .strategy-timeline::before {
        left: 20px;
    }
    
    .growth-strategy .timeline-item {
        gap: 1rem;
    }
    
    .growth-strategy .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .growth-strategy .timeline-content {
        padding: 1.5rem;
    }
    
    .investor-relations .relations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .investor-relations .relations-text h2 {
        font-size: 2rem;
    }
    
    .investor-relations .relations-contact {
        position: static;
    }
    
    /* Mobile FAQ Styles */
    .faq-search .search-box {
        padding: 0.75rem 1.5rem;
    }
    
    .faq-search .search-box input {
        font-size: 0.9rem;
    }
    
    .faq-categories .category-tabs {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .faq-categories .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .faq-content .faq-section-title {
        font-size: 1.5rem;
    }
    
    .faq-content .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-content .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-content .faq-answer {
        padding: 0 1.5rem 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .projects-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .projects-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .project-card {
        margin-bottom: 1rem;
    }
    
    .category-title {
        font-size: 1.8rem;
        margin: 2rem 0 1rem 0;
    }
    
    .featured-projects .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .about-content,
    .teaser-content,
    .csr-content,
    .presence-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flagship-projects .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-featured .project-image {
        height: 300px;
    }
    
    .flagship-projects .project-card .project-image {
        height: 150px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .btn-cta {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Contact Page Mobile Styles */
    .contact-info .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-info .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-form-map .form-map-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .contact-details .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details .detail-section h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile Footer Styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo img {
        height: 80px;
    }
    
    .footer-logo span {
        font-size: 1.1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
    
    /* Mobile Consultation Styles */
    .consultation-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .consultation-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .consultation-benefits .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .consultation-form {
        padding: 2rem 1.5rem;
    }
    
    .consultation-form-section .section-title {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .consultation-process .section-title {
        font-size: 2rem;
    }
}
