/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables - Peace Land Blue Theme */
:root {
    --primary-blue: #1e5eff;
    --primary-blue-dark: #1a52e6;
    --primary-blue-light: #4d7fff;
    --secondary-blue: #2563eb;
    --accent-blue: #3b82f6;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --primary-color: #1e5eff; /* Mapped for existing code */
    --secondary-color: #2563eb;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 94, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    /* color: var(--white); */
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0.1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    position: relative;
    top: 5px;
}

.nav-cta a {
    border-radius: 50px;
    padding: 10px 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #1a365d;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f6ad55;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1a365d;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-controls-mobile,
.nav-cta-mobile {
    display: none;
}

/* Hero Section - Modern Redesign */
.hero.modern-hero {
    position: relative;
    min-height: 85vh; /* Maintains the tall, modern look */
    display: flex;
    flex-direction: column; /* Stack content and stats vertically */
    justify-content: space-between; /* Push content to center/top and stats to bottom */
    overflow: hidden;
    margin-top: 70px; /* Account for fixed header */
    padding-top: 4rem; /* Add space at top */
}

.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;
}

/* Modern Gradient Overlay: Dark on left, lighter on right */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(20, 30, 50, 0.95) 0%, 
        rgba(20, 30, 50, 0.8) 40%, 
        rgba(20, 30, 50, 0.3) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1; /* Take up available space */
    display: flex;
    align-items: center; /* Vertically center the text in the available space */
}

.hero-content-wrapper {
    max-width: 650px;
    padding: 2rem 0;
    text-align: left;
}

/* Badge Style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 173, 85, 0.2);
    border: 1px solid rgba(246, 173, 85, 0.4);
    color: #f6ad55;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 550px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

/* Glassmorphic Stats Bar - Redesigned (User Request) */
.hero-stats-glass {
    position: relative;
    width: 100%;
    max-width: 1200px; /* User requested 1200px */
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1); /* Glass effect base */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    border-radius: 20px;
    padding: 2rem 3rem;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    margin-top: auto;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.hero-stats-glass .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.hero-stats-glass .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center alignment looks better with this layout */
    justify-content: center;
    padding: 0 15px;
    position: relative;
}

/* Vertical Dividers between items */
.hero-stats-glass .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Row 1: Icon + Number */
.hero-stats-glass .stat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.hero-stats-glass .stat-icon {
    font-size: 1.8rem;
    color: #f6ad55;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed box background for cleaner look */
}

.hero-stats-glass .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    /* Optional: Gradient text */
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Row 2: Label */
.hero-stats-glass .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-stats-glass {
        max-width: 95%;
        border-radius: 16px;
        margin-bottom: 1rem;
        padding: 1.5rem;
        background: rgba(20, 30, 50, 0.85); /* Darker for legibility on mobile */
    }

    .hero-stats-glass .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    .hero-stats-glass .stat-item:not(:last-child)::after {
        display: none; /* Remove dividers on tablet */
    }
    
    .hero-stats-glass .stat-item {
        align-items: flex-start; /* Left align on mobile usually reads better */
        padding-left: 1rem;
    }
    
    .hero-stats-glass .stat-label {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-stats-glass {
        max-width: 90%;
        border-radius: 20px;
        margin-bottom: 1rem;
        padding: 2rem 1.5rem;
    }

    .hero-stats-glass .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats-glass .stat-item {
        flex-direction: row; /* Horizontal on mobile for compactness? */
        justify-content: space-between;
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1rem;
    }
    
    .hero-stats-glass .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Special mobile layout: Label left, Number right */
    .hero-stats-glass .stat-header {
        order: 2;
        margin-bottom: 0;
    }
    
    .hero-stats-glass .stat-label {
        order: 1;
        text-align: left;
        font-size: 0.8rem;
    }
    
    .hero-stats-glass .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stats-glass .stat-icon {
        font-size: 1.4rem;
    }
}

/* Section Styles */
section {
    padding: 85px 0px 20px 0px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #1a365d;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f7fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: #f6ad55;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* border-top: 4px solid #f6ad55; */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d, #2d3748);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.25rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f6ad55;
    font-weight: bold;
}

/* Projects Section - Modern & Compact Redesign */
.projects {
    background: #f8fafc;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    height: 450px; /* Fixed height for consistency and compactness */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #000; /* Fallback */
}

/* Image fills the card */
.project-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Zoom effect on hover */
.project-card:hover .project-image img {
    transform: scale(1.15);
}

/* Overlay - Gradient for text readability */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    transition: background 0.3s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.85) 70%, 
        rgba(0, 0, 0, 0.95) 100%
    );
}

/* Project Section Titles */
.project-section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin: 4rem 0 2.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Decorative element for titles */
.project-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Content container inside the card */
.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px); /* Slight offset for animation */
    transition: transform 0.4s ease;
}

.project-card:hover .project-content {
    transform: translateY(0);
}

/* Tags/Meta floating at top */
.project-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.project-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ongoing-badge {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Typography */
.project-content h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.project-location {
    display: inline-block;
    color: #f6ad55;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-location i {
    margin-right: 6px;
}

/* Description - revealed on hover */
.project-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-description {
    max-height: 200px; /* Enough space for text */
    opacity: 1;
    margin-bottom: 1.5rem;
}

/* Stats Grid */
.project-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s; /* Delayed fade in */
}

.project-card:hover .project-stats {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
}

.stat-item i {
    color: var(--primary-blue-light);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
}

.why-choose-us .section-title,
.why-choose-us .section-subtitle {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f6ad55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    color: #1a365d;
    font-size: 2rem;
}

.feature-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team {
    background: #f7fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #f6ad55;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #1a365d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #f6ad55;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #f6ad55;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.author-info h4 {
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #1a365d;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #f6ad55;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #4a5568;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer p {
    color: #ffffff;
}

.footer-section h4 {
    color: #ffffff;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f6ad55;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: #f6ad55;
    font-size: 0.9rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f6ad55;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgb(124, 127, 172);
    color: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f6ad55;
    transform: translateY(-2px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

.footer-contact i {
    color: #f6ad55;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* =========================================
   Simplified Mobile Navigation (Full Width)
   ========================================= */
@media (max-width: 768px) {
    /* 1. Reset & Container Styles */
    .nav-menu::before { display: none; } /* Remove backdrop */

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1a365d; /* Deep Professional Blue */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 20px 20px; /* Top padding clears header */
        transform: translateY(-100%); /* Slide down from top */
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998; /* Just below hamburger */
        overflow-y: auto;
        box-shadow: none;
    }

    /* Active State */
    .nav-menu.active {
        transform: translateY(0);
    }

    /* 2. List Items & Separators */
    .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    /* Stagger animations */
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.35s; }

    .nav-link {
        display: block;
        width: 100%;
        padding: 12px 0; /* Compact spacing */
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* The HR separator */
        text-decoration: none;
        text-align: left;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #f6ad55;
        padding-left: 5px; /* Minimal hover movement */
        border-bottom-color: rgba(255, 255, 255, 0.3);
    }
    
    .nav-link::after { display: none; }

    /* 3. Controls & CTA */
    .nav-controls-mobile,
    .nav-cta-mobile {
        display: block;
        width: 100%;
        margin-top: 15px;
        opacity: 0; /* Animate these too */
        animation: fadeIn 0.5s ease forwards 0.4s;
    }
    
    .nav-cta-mobile .btn {
        width: 100%;
        display: block;
        text-align: center;
        background: #f6ad55;
        color: #1a365d;
        font-weight: 600;
        border-radius: 6px;
        padding: 12px;
    }

    /* Compact Language Toggle */
    .nav-controls-mobile .language-toggle {
        background: rgba(255,255,255,0.05);
        display: inline-flex;
        border-radius: 50px;
        padding: 3px;
        margin-top: 10px;
    }
    
    .nav-controls-mobile .language-toggle button {
        color: rgba(255,255,255,0.7);
        padding: 5px 15px;
        font-size: 0.8rem;
    }
    
    .nav-controls-mobile .language-toggle button.active {
        background: white;
        color: #1a365d;
    }

    /* 4. Hamburger Styling */
    .hamburger {
        display: flex;
        z-index: 10000;
    }

    .hamburger.active .bar {
        background-color: white; /* Visible against dark menu */
    }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Hide Desktop Elements */
    .nav-controls, .nav-cta { display: none; }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .projects-grid,
    .features-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        display: block;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-outline-white {
        display: block;
        width: 100%;
    }

    .hero-content-wrapper {
        text-align: center;
        margin: 0 auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
}


/* Professional Core Values Section */
.company-values {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.company-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(30, 94, 255, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 94, 255, 0.15);
    border-color: var(--primary-blue-light);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon::before {
    width: 100px;
    height: 100px;
}

.value-icon i {
    font-size: 28px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

/* Professional Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.achievement-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.achievement-card:hover::before {
    opacity: 0.05;
}

.achievement-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 94, 255, 0.12);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.achievement-description {
    color: var(--text-medium);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Professional Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    position: relative;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.certification-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.certification-card:hover::before {
    left: 100%;
}

.certification-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.certification-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.certification-icon i {
    font-size: 32px;
    color: var(--white);
}

.certification-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.certification-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Professional Leadership Team Section */
.team-detailed {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 94, 255, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 94, 255, 0.15);
}

.member-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    opacity: 0.1;
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 35px 30px;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.member-qualifications {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    /* border-left: 4px solid var(--primary-blue); */
}

.member-qualifications h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.member-qualifications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-qualifications li {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.member-qualifications li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
}


/* Professional Contact Information Layout */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
    opacity: 0.4;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(30, 94, 255, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 94, 255, 0.15);
    border-color: var(--primary-blue-light);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.contact-card:hover .contact-icon::before {
    width: 120px;
    height: 120px;
}

.contact-icon i {
    font-size: 32px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

.contact-card p br {
    margin-bottom: 8px;
}

/* Enhanced Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.form-info {
    position: sticky;
    top: 100px;
}

.form-info h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-medium);
    font-weight: 500;
}

.contact-form {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 94, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
}

/* Enhanced Map Section */
.map-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.map-container {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(30, 94, 255, 0.1);
    border: 1px solid var(--gray-200);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-card p {
        font-size: 14px;
    }
}


/* Modern Compact Services Redesign */
.services-detailed {
    padding: 4rem 0;
    background: #f8fafc;
}

.service-detail {
    margin-bottom: 4rem;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(30, 94, 255, 0.08);
}

.service-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    min-height: 450px;
}

.service-detail.reverse .service-content {
    grid-template-columns: 0.8fr 1.2fr;
}

.service-detail.reverse .service-text {
    order: 2;
}

.service-detail.reverse .service-image {
    order: 1;
}

.service-text {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-image {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail:hover .service-image img {
    transform: scale(1.05);
}

/* Overlay gradient on image for text readability if needed, or style effect */
.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 94, 255, 0.1), rgba(30, 94, 255, 0.05));
    mix-blend-mode: multiply;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(30, 94, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.service-detail:hover .service-icon-large {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.service-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 90%;
}

.service-text h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-text h3::after {
    content: '';
    height: 1px;
    flex: 1;
    background: var(--gray-200);
    max-width: 100px;
}

/* Compact Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-top: 3px;
    background: rgba(30, 94, 255, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-item div {
    flex: 1;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
    max-width: 100%;
}

/* =========================================
   Project Approach: Modern Process Steps
   ========================================= */
.our-process {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.process-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 94, 255, 0.08);
    border-color: var(--primary-blue-light);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(30, 94, 255, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    color: rgba(30, 94, 255, 0.2);
    transform: scale(1.1);
}

.step-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-right: 3rem; /* Space for number */
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Connecting Line (Desktop) */
@media (min-width: 992px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg,
            transparent 0%,
            var(--gray-200) 20%,
            var(--gray-200) 80%,
            transparent 100%
        );
        z-index: -1;
        transform: translateY(-50%);
    }
}

/* Responsive Process */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem;
    }
}

/* =========================================
   Project Capabilities: Structural Pillars
   ========================================= */
.project-capabilities {
    padding: 100px 0;
    background: #0f172a; /* Deep Navy */
    color: white;
    position: relative;
}

/* Technical Grid Overlay */
.project-capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.project-capabilities .section-header h2 {
    color: white;
}
.project-capabilities .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.capability-pillar {
    background: rgba(30, 41, 59, 0.6); /* Glassy dark */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
}

/* Hover Lift & Glow */
.capability-pillar:hover {
    background: rgba(30, 58, 100, 0.8);
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Top accent bar */
.capability-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.capability-pillar:hover::before {
    transform: scaleX(1);
}

/* Giant Watermark Icon */
.cap-icon-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.02);
    transition: all 0.5s ease;
    transform: rotate(-15deg);
}

.capability-pillar:hover .cap-icon-bg {
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(0deg) scale(1.1);
    top: 10px;
    right: 10px;
}

/* Content */
.cap-content {
    position: relative;
    z-index: 2;
}

.cap-icon-small {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: inline-block;
}

.cap-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.cap-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.capability-pillar:hover .cap-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Services */
@media (max-width: 992px) {
    .service-content,
    .service-detail.reverse .service-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-detail.reverse .service-text {
        order: 2;
    }

    .service-detail.reverse .service-image {
        order: 1;
    }

    /* Ensure image is always first on mobile */
    .service-content .service-image,
    .service-detail.reverse .service-content .service-image {
        order: 1;
    }

    .service-content .service-text,
    .service-detail.reverse .service-content .service-text {
        order: 2;
    }

    .service-image {
        height: 250px;
        min-height: 250px;
    }

    .service-text {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-detail {
        margin-bottom: 4rem;
        padding: 2rem 0;
    }
    
    .service-text h2 {
        font-size: 1.8rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 1.5rem;
    }
}


/* Dark Mode Styles */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8faff;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --border-color: #e9ecef;
    --card-bg: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}


/* Language Toggle Styles - Modern Pill Design */
.language-toggle {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.05); /* Very subtle background */
    border-radius: 30px;
    padding: 4px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.language-toggle button {
    border: none;
    background: transparent;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-toggle button:hover {
    color: var(--primary-blue);
}

.language-toggle button.active {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Dark mode adjustment if needed, assuming light nav for now */
@media (max-width: 768px) {
    .language-toggle {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 1rem 0;
    }
    
    .language-toggle button {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .language-toggle button.active {
        background: var(--white);
        color: var(--primary-blue);
    }
}

/* Navigation Controls Container */
/* .nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
} */

/* Responsive adjustments for controls */
@media (max-width: 768px) {
    /* .nav-controls {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    } */
    
    .theme-toggle {
        margin-right: 0;
    }
    
    .language-toggle {
        margin-right: 0;
    }
}


/* Gallery Page Styles */
.gallery-filter {
    padding: 2rem 0;
    background: var(--bg-secondary);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.gallery-grid-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    margin-top: auto;
}

.gallery-info h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.gallery-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.gallery-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.gallery-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 2rem;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    margin-top: 2rem;
}

.lightbox-caption h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Gallery Filter Animation */
.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .lightbox-content {
        padding: 1rem;
    }
    
    .ongoing-banner {
        position: absolute;
        top: 15px;
        right: -35px;
        background: var(--primary-blue);
        color: white;
        padding: 5px 30px;
        transform: rotate(45deg);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    #lightbox-image {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-info h3 {
        font-size: 1.1rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
    }
}


/* =========================================
   Professional Page Header Styles
   ========================================= */
.page-header {
    position: relative;
    padding: 120px 0 80px; /* Account for fixed header */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-top: 0; /* Reset */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(26, 54, 93, 0.8));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Content Typography */
.page-header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    animation: slideDown 0.8s ease-out;
}

.page-header-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.8s ease-out 0.5s backwards;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.breadcrumb a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 1rem;
    font-size: 0.8rem;
}

.breadcrumb span:last-child {
    color: #f6ad55; /* Use the accent color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Specific Backgrounds */
.page-header.header-about { background-image: url('../images/planning-consultation.jpg'); }
.page-header.header-services { background-image: url('../images/commercial-construction.jpg'); }
.page-header.header-projects { background-image: url('../images/luxury-property.jpg'); }
.page-header.header-gallery { background-image: url('../images/illustration-construction-site.jpg'); }
.page-header.header-contact { background-image: url('../images/professional-team.jpg'); }

/* Animation Keyframes */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        min-height: 300px;
        padding: 100px 0 60px;
    }
    .page-header-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .page-header-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .breadcrumb {
        padding: 0.6rem 1.5rem;
    }
}


/* =========================================
   Professional Mission & Vision Styles
   (Non-Card Version)
   ========================================= */
.mission-vision {
    padding: 100px 0;
    background: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: start;
}

/* Clean Vertical Block Style */
.mv-card {
    /* Resetting card styles */
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

/* Remove hover effects */
.mv-card:hover {
    transform: none;
    box-shadow: none;
}

.mv-card::after {
    display: none; /* Remove colored line */
}

/* Icon Styling - Clean & Minimal */
.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px; /* Subtle rounded corners */
    background: rgba(30, 94, 255, 0.08); /* Very light blue bg */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Remove hover rotations */
.mv-card:hover .mv-icon {
    transform: none;
    background: rgba(30, 94, 255, 0.08); /* Keep background static */
}

.mv-icon i {
    font-size: 30px;
    color: var(--primary-blue);
}

/* Text Styling */
.mv-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

/* Underline for Title */
.mv-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-blue);
}

.mv-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mission-vision {
        padding: 60px 0;
    }
    .mv-content h3 {
        font-size: 1.75rem;
    }
}


/* =========================================
   Professional Call to Action (CTA) Styles
   (White Background Version)
   ========================================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff; /* White Background */
    color: var(--text-dark);
    text-align: center;
    border-top: 1px solid var(--gray-200); /* Subtle border to separate */
}

.cta-section::before {
    display: none; /* Remove dark pattern overlay */
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary CTA Button (Solid Blue) */
.cta-btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(30, 94, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 94, 255, 0.4);
    color: white;
}

/* Secondary CTA Button (Outline Blue) */
.cta-btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-secondary:hover {
    background: var(--gray-50);
    color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-3px);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }
    .cta-content p {
        font-size: 1.1rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
