/* Websarc Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
    --color-primary: #004c4b;
    --color-accent: #004c4b;
    --color-dark: #000000;
    --color-light: #f6f9fc;
    --color-white: #ffffff;
    --color-gray: #425466;
    --color-gray-light: #8898aa;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-dark);
    background: #f9fafb;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Global Scrollbar Styling - Remove ALL shadows/glows */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f9fafb;
}

::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 5px;
    border: none;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0c0c0;
}

::-webkit-scrollbar-corner {
    background: #f9fafb;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 #f9fafb;
}

/* Hide scrollbar on mobile devices */
@media (max-width: 768px) {
    /* Hide scrollbar for Chrome, Safari and Opera */
    ::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    
    /* Hide scrollbar for IE, Edge and Firefox */
    * {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* Keep scrolling functionality */
    html, body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
}

/* ===========================
   NAVIGATION
   =========================== */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-navigation.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: flex-start;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.main-navigation.scrolled .logo-img {
    height: 65px;
}

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.nav-contact {
    display: flex;
    align-items: center;
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    gap: 0.75rem;
}

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-contact-item i {
    font-size: 0.9rem;
    color: #ffffff;
}

.nav-contact-item:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: flex-end;
    margin: 0;
    padding: 0;
}

.nav-menu:hover .nav-item:not(:hover) a {
    opacity: 0.4;
    color: var(--color-gray);
}

.nav-item a {
    text-decoration: none;
    color: var(--color-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-item a:hover {
    color: var(--color-dark);
    font-weight: 600;
    opacity: 1;
}

.nav-item.active a {
    color: var(--color-dark);
    font-weight: 600;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
    z-index: 999;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.nav-item:hover .nav-dropdown,
.nav-item:hover::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-item:hover .nav-dropdown {
    top: calc(100% + 10px);
}

.dropdown-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.25rem;
    width: 700px;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
}

.dropdown-left {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-shrink: 0;
}

.dropdown-right {
    flex: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
}

.dropdown-content:hover .dropdown-card:not(:hover) {
    opacity: 0.5;
}

.dropdown-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-height: 60px;
    height: 60px;
    width: 100%;
    overflow: hidden;
}

.dropdown-card:hover {
    background: rgba(0, 76, 75, 0.08);
    border-color: rgba(0, 76, 75, 0.15);
    opacity: 1;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-arrow {
    color: var(--color-primary);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    display: inline-block;
}

.dropdown-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.card-desc {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin: 0;
    line-height: 1.4;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropdown-card:hover {
    height: auto;
    min-height: 60px;
}

.dropdown-card:hover .card-desc {
    opacity: 1;
    max-height: 50px;
    margin-top: 0.5rem;
}

.dropdown-card:hover .card-title {
    color: var(--color-primary);
}

/* Default Content */
.default-content {
    display: block;
}

.default-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.default-text {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

/* Service Details */
.service-detail {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.service-detail.active {
    display: block;
    opacity: 1;
}

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

.detail-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.detail-text {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.detail-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-features li {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

/* Service details hidden by default */
.service-detail {
    display: none;
}

/* Sectors Dropdown - Grid Layout */
.sectors-dropdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.15rem;
    width: 700px;
    padding: 1rem;
}

.sector-item {
    padding: 0.4rem 0.5rem;
    text-decoration: none;
    color: var(--color-gray);
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: left;
}

.sector-item:hover {
    color: var(--color-primary);
}

/* ===========================
   MOBILE MENU
   =========================== */

/* Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    margin-left: auto;
    order: 2;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #ffffff;
    box-shadow: none !important;
    border-left: 1px solid #e5e7eb;
    z-index: 9999;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Mobile Menu Drawer Scrollbar - Hidden on mobile */
.mobile-menu-drawer::-webkit-scrollbar {
    width: 0;
    display: none;
}

.mobile-menu-drawer::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu-drawer::-webkit-scrollbar-thumb {
    background: transparent;
}

.mobile-menu-drawer {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobile-menu-drawer.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
}

.mobile-logo-img {
    height: 45px;
    width: auto;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 1.4rem;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.mobile-menu-close:hover {
    background: #f9fafb;
    color: var(--color-primary);
}

/* Mobile Menu Content */
.mobile-menu-content {
    flex: 1;
    padding: 0.75rem 0;
    overflow-y: auto;
}

/* Mobile Contact Info */
.mobile-nav-contact {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.25s ease;
}

.mobile-contact-item i {
    color: var(--color-primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-contact-item:hover {
    color: var(--color-primary);
}

/* Mobile Menu Items */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f7f7f7;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-item.active .mobile-nav-link {
    color: var(--color-primary);
    background: #fafafa;
}

/* Mobile CTA Buttons */
.mobile-menu-cta {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    position: sticky;
    bottom: 0;
    background: #ffffff;
}

.mobile-cta-btn {
    display: block;
    padding: 0.875rem 1.25rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.mobile-cta-primary {
    background: var(--color-primary);
    color: #ffffff;
}

.mobile-cta-primary:hover {
    background: #003837;
    color: #ffffff;
}

.mobile-cta-secondary {
    background: #f9fafb;
    color: var(--color-primary);
    border: 1px solid #e5e7eb;
}

.mobile-cta-secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

/* Mobile Navigation - Hide Desktop Menu */
@media (max-width: 992px) {
    .nav-contact {
        display: none;
    }
    
    .nav-right {
        gap: 0;
    }
    
    .nav-container {
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-right {
        order: 3;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-dropdown {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
        margin-right: 0;
        position: absolute;
        right: 2rem;
    }
    
    .sectors-dropdown {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

/* ===========================
   ABOUT PAGE
   =========================== */

/* About Hero Section */
.about-hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Center align content for privacy/terms pages on desktop */
@media (min-width: 769px) {
    .about-hero-section.hero-center .about-hero-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .about-hero-section.hero-center .about-hero-content {
        text-align: center;
        max-width: 800px;
        align-items: center;
    }
    
    .about-hero-section.hero-center .hero-badge {
        align-self: center;
    }
}

.about-hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.about-hero-visual {
    width: 100%;
    max-width: 100%;
    position: relative;
    height: 500px;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 76, 75, 0.1);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    width: fit-content;
    letter-spacing: 0.5px;
}

.about-hero-headline {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.headline-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #006b6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subhead {
    font-size: 1.15rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-hero-trust {
    margin-top: 2rem;
}

.about-hero-trust .trust-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.about-hero-trust .trust-logo {
    height: 30px;
    width: auto;
    max-width: 120px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    object-fit: contain;
}

.about-hero-trust .trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Hero CTA Buttons */
.about-hero-cta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-hero-cta .btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    border: 2px solid var(--color-primary);
}

.about-hero-cta .btn-primary:hover {
    background: #006b6a;
    border-color: #006b6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 76, 75, 0.3);
}

.about-hero-cta .btn-outline-primary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.about-hero-cta .btn-outline-primary:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 76, 75, 0.2);
}

.about-hero-cta .btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.about-hero-cta .btn:hover svg {
    transform: translateX(4px);
}

/* Hero Visual Section */
.about-hero-visual {
    position: relative;
    height: 500px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Blog Hero Image - Direct on background, no card (same as services) */
.blog-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Remove background shapes from blog hero */
.blog-hero-visual .hero-shape-1,
.blog-hero-visual .hero-shape-2 {
    display: none;
}

/* Case Studies Hero Image - Direct on background, no card (same as services/blog) */
.case-studies-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-studies-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Remove background shapes from case studies hero */
.case-studies-hero-visual .hero-shape-1,
.case-studies-hero-visual .hero-shape-2 {
    display: none;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ & Careers Pages - Show full image without cropping */
.about-hero-section .hero-main-image {
    object-fit: contain;
}

.hero-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 76, 75, 0.1) 0%, rgba(0, 76, 75, 0.2) 100%);
    color: rgba(0, 76, 75, 0.4);
}

.hero-image-placeholder svg {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.hero-image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 1.5s;
}

.floating-icon {
    font-size: 1.5rem;
}

.floating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Decorative Shapes */
.hero-shape-1,
.hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: -100px;
    right: -100px;
    filter: blur(60px);
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    bottom: -50px;
    left: -50px;
    filter: blur(50px);
}

/* Stats Bar Section */
.about-stats-bar {
    background: var(--color-primary);
    padding: 60px 0;
    color: #ffffff;
}

.stats-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-bar-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-bar-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Mission Section */
.about-mission-section {
    padding: 100px 0;
    background: #ffffff;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mission-image {
    position: sticky;
    top: 100px;
    position: -webkit-sticky;
}

@media (max-width: 768px) {
    .mission-image {
        position: relative !important;
        top: auto !important;
    }
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mission-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.mission-text:last-of-type {
    margin-bottom: 0;
}

.mission-text-small {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray-light);
    margin-bottom: 1rem;
}

.mission-text-small:last-of-type {
    margin-bottom: 0;
}

/* Process Section */
.about-process-section {
    padding: 100px 0;
    background: #f9fafb;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step-card {
    background: #ffffff;
    padding: 30px;
    border-top: 4px solid var(--color-primary);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 76, 75, 0.05);
    line-height: 1;
    pointer-events: none;
}

.step-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.step-card-desc {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design - About Page */
@media (max-width: 992px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-headline {
        font-size: 3rem;
    }
    
    .about-hero-subhead {
    font-size: 1.1rem;
    }
    
    .about-hero-visual {
        height: 400px;
    }
    
    .floating-card-1,
    .floating-card-2 {
        display: none;
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-image {
        position: static !important;
        top: auto !important;
    }
    
    .mission-headline {
        font-size: 2rem;
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 5rem 1.25rem 2.5rem;
        min-height: auto;
    }
    
    .about-hero-container {
        gap: 2.5rem;
    }
    
    .about-hero-content {
        order: 2;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-badge {
        margin-top: 30px;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .about-hero-headline {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .about-hero-subhead {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .about-hero-visual {
        order: 3;
        height: 280px;
        margin-bottom: 1.5rem;
    }
    
    .about-hero-trust {
        order: 4;
        margin-top: 0;
    }
    
    .about-hero-trust {
        width: 100%;
        overflow: hidden;
    }
    
    .about-hero-trust .trust-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 1rem;
    }
    
    .about-hero-trust .trust-logos::-webkit-scrollbar {
        display: none;
    }
    
    .about-hero-trust .trust-logo {
        height: 20px;
        max-width: 80px;
        flex-shrink: 0;
        object-fit: contain;
    }
    
    /* Services Page Hero - Image after logos */
    .about-hero-section .services-hero-visual {
        order: 5 !important;
        margin-top: 1.5rem;
        margin-bottom: 0;
        height: 250px;
    }
    
    /* Blog Page Hero - Hide Image on Mobile */
    .about-hero-section.page-blog-hero .blog-hero-visual,
    .about-hero-section.page-blog-hero .about-hero-visual {
        display: none !important;
    }
    
    /* Case Studies Page Hero - Image after content */
    .about-hero-section .case-studies-hero-visual {
        order: 3 !important;
        margin-top: 1.5rem;
        margin-bottom: 0;
        height: 250px;
    }
    
    .about-hero-section .case-studies-hero-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .about-hero-section .about-hero-trust {
        order: 4;
        margin-bottom: 0;
    }
    
    .about-hero-section .about-hero-content {
        order: 2;
    }
    
    .about-hero-section .services-hero-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Services hero section ends after image */
    .about-hero-section:has(.services-hero-visual) {
        padding-bottom: 2rem;
    }
    
    .hero-stats-mini {
        gap: 1.5rem;
    }
    
    .mini-stat-number {
        font-size: 1.5rem;
    }
    
    .about-stats-bar {
        padding: 40px 0;
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-bar-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stat-bar-number {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
    }
    
    .stat-bar-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .about-mission-section,
    .about-process-section {
        padding: 60px 0;
    }
    
    .mission-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2.5rem;
    }
    
    .mission-image {
        order: 1 !important;
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        margin-bottom: 1.5rem;
        z-index: 1;
    }
    
    .mission-image img {
        position: relative !important;
        display: block !important;
        width: 100% !important;
    }
    
    .mission-content {
        order: 2 !important;
        width: 100% !important;
        position: relative !important;
        z-index: 2;
    }
    
    .mission-headline {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .mission-text,
    .mission-text-small {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .process-headline {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    width: 100%;
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.hero-headline .highlight {
    color: var(--color-primary);
    display: inline-block;
}

.typewriter-text {
    display: inline-block;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
    max-width: 480px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-main);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #003a39;
    transform: translateY(-1px);
}

.btn-outline-primary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-main);
    text-decoration: none;
    border-radius: 8px;
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.btn-arrow {
    display: inline-block;
    margin-left: 0.5rem;
    animation: arrow-slide 1.5s ease-in-out infinite;
}

@keyframes arrow-slide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
    background: var(--color-light);
    border-color: rgba(0, 0, 0, 0.2);
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -3rem;
    padding: 40px;
}

/* The Glow Blob */
.hero-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 76, 75, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 0;
    border-radius: 50%;
}

/* Main Image */
.hero-main-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    height: auto;
    animation: floatImage 6s ease-in-out infinite;
}

/* Hero Badges Container */
.hero-badges-container {
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: calc(100% - 80px);
    max-width: 500px;
    z-index: 2;
}

/* Floating Glass Badge */
.floating-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: floatBadge 5s ease-in-out infinite alternate;
}

.floating-badge:nth-child(1) {
    animation-delay: 0s;
}

.floating-badge:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-badge:nth-child(3) {
    animation-delay: 1s;
}

.floating-badge:nth-child(4) {
    animation-delay: 1.5s;
}

.badge-icon {
    background: #e6fffa;
    color: #004c4b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
}

/* Animations */
@keyframes floatImage {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes floatBadge {
    0% { 
        transform: translateY(0); 
    }
    100% { 
        transform: translateY(-15px); 
    }
}

/* Stats Cards */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-gray-light);
    margin-top: 0.25rem;
}

/* Trust Bar */
.hero-trust {
    margin-top: 4rem;
}

.trust-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.trust-logo {
    height: 28px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition);
    object-fit: contain;
}

.trust-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* ===========================
   VISION SECTION
   =========================== */
.vision-section {
    position: relative;
    background-color: var(--color-primary);
    padding: 100px 0;
    overflow: hidden;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.vision-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 5rem;
    align-items: start;
}

/* Global Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Animation with Stagger */
.scroll-animate-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Quote Column */
.vision-quote {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-quote.visible {
    opacity: 1;
    transform: translateX(0);
}

.vision-quote-image {
    margin-bottom: 1.5rem;
    width: 100%;
}

.vision-quote-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-quote blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

.vision-quote cite {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* Content Column */
.vision-content {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

.vision-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.vision-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.vision-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.vision-text-small {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-style: italic;
}

.vision-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* White Button (Solid) */
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-main);
    text-decoration: none;
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-primary);
    border: 1px solid #ffffff;
    transition: var(--transition);
    cursor: pointer;
}

.btn-white:hover {
    background: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
    opacity: 0.95;
}

/* Outline Button (White) */
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-main);
    text-decoration: none;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.75rem;
    }
    
    .hero-grid {
        gap: 3rem;
    }
    
    .vision-grid {
        gap: 3rem;
    }
    
    .vision-quote blockquote {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 90px;
        background-size: 20px 20px;
    }
    
    .hero-container {
        padding: 3rem 1.25rem 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-headline {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 1.15;
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 0;
    }
    
    .hero-cta .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }
    
    .hero-visual {
        order: 1;
        margin-top: 0;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .hero-glow {
        width: 100%;
        height: 60%;
        filter: blur(30px);
        opacity: 0.6;
    }
    
    .hero-main-img {
        max-width: 100%;
        animation: none;
        transform: none;
    }
    
    .hero-badges-container {
        display: none;
    }
    
    .hero-trust {
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .trust-logos {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .trust-logo {
        height: 24px;
        opacity: 0.5;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-item a {
        font-size: 0.85rem;
    }
    
    /* Vision Section Mobile */
    .vision-section {
        padding: 60px 0;
    }
    
    /* Hide all paragraphs except the first one in mobile view */
    .vision-content .vision-text:nth-child(2),
    .vision-content .vision-text-small {
        display: none;
    }
    
    /* Keep only first paragraph visible */
    .vision-content .vision-text:first-child {
        display: block;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Center align buttons */
    .vision-cta {
        justify-content: center;
    }
}

/* Extra Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .hero-container {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
        letter-spacing: -0.3px;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.625rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    
    .hero-trust {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .trust-logos {
        gap: 0.75rem;
    }
    
    .trust-logo {
        height: 20px;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .vision-quote blockquote {
        font-size: 1.5rem;
    }
    
    .vision-headline {
        font-size: 1.5rem;
    }
}

/* ===========================
   OTHER PAGES
   =========================== */
main:not(.page-home) {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

main:not(.page-home) h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
    background: #f9fafb;
    padding: 120px 0;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.services-headline {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.services-subhead {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Remove any top border animation for home page cards */
.services-section .service-card::before,
.services-section .service-card::after {
    display: none !important;
}

.service-card:hover {
    background: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 76, 75, 0.12);
    transform: none !important;
}

.service-icon {
    width: 56px;
    height: 56px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary) 0%, #006665 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 20px rgba(0, 76, 75, 0.25);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon svg {
    color: var(--color-primary);
}

/* Animated Icon Styles */
.service-icon svg {
    width: 26px;
    height: 26px;
}

.icon-animate-draw {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-line 1.5s ease forwards;
}

.icon-animate-draw-delay {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: draw-line 1.5s ease 0.3s forwards;
}

.icon-animate-draw-delay2 {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: draw-line 1.5s ease 0.6s forwards;
}

.icon-animate-pulse {
    animation: pulse-icon 1s ease-in-out forwards;
    animation-delay: 1.5s;
}

@keyframes draw-line {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes pulse-icon {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease-in-out;
}

.service-card:hover .service-title {
    color: #ffffff;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.25rem;
    transition: color 0.3s ease-in-out;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.service-card:hover .service-desc {
    color: #ffffff;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-tag {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(0, 76, 75, 0.06);
    border-radius: 100px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.service-card:hover .service-tag {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    margin-top: auto;
    flex-shrink: 0;
}

.service-card:hover .service-link {
    color: #ffffff;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-link:hover .service-link-arrow {
    transform: translateX(4px);
}

/* ===========================
   SUCCESS MODEL SECTION
   =========================== */
.success-model-section {
    background-color: var(--color-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.success-model-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.success-model-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: start;
}

.success-model-content {
    position: relative;
    z-index: 2;
}

.success-model-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.success-model-subhead {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    min-width: 40px;
    font-family: var(--font-main);
    letter-spacing: -1px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
}

.step-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Column: Image */
.success-model-visual {
    position: relative;
}

.success-model-image {
    position: relative;
    width: auto;
    max-width: 100%;
}

.success-model-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 76, 75, 0.15) 0%, rgba(0, 76, 75, 0.25) 100%);
    color: rgba(255, 255, 255, 0.4);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.image-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* ===========================
   TECHNOLOGY STACK SECTION
   =========================== */
.tech-stack-section {
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.tech-stack-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Marquee Wrapper */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    margin-bottom: 2rem;
}

.marquee-wrapper:last-child {
    margin-bottom: 0;
}

.marquee-row {
    display: flex;
    width: fit-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
    flex-shrink: 0;
}

/* Animation: Left Direction */
.marquee-left {
    animation: marquee-scroll-left 40s linear infinite;
}

/* Animation: Right Direction */
.marquee-right {
    animation: marquee-scroll-right 40s linear infinite;
}

@keyframes marquee-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translateX(calc(-100% / 3 * 2));
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

/* Tech Logo */
.tech-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.tech-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-row {
    animation-play-state: paused;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-headline {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    @media (max-width: 640px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon svg {
        width: 22px;
        height: 22px;
    }
    
    /* Success Model Mobile */
    .success-model-section {
        padding: 60px 0;
    }
    
    .success-model-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .success-model-headline {
        font-size: 2rem;
    }
    
    .success-model-visual {
        order: -1;
    }
    
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    /* Tech Stack Mobile */
    .tech-stack-section {
        padding: 60px 0;
    }
    
    .marquee-content {
        gap: 2.5rem;
    }
    
    .tech-logo img {
        height: 40px;
    }
    
    /* Work Section Mobile */
    .work-section {
        padding: 60px 0;
    }
    
    .work-headline {
        font-size: 2rem;
    }
    
    .work-subhead {
        margin-bottom: 2.5rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===========================
   WORK SECTION
   =========================== */
.work-section {
    background: #f9fafb;
    padding: 100px 0;
}

.work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.work-header {
    text-align: center;
    margin-bottom: 4rem;
}

.work-headline {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-align: center;
}

.work-container {
    text-align: center;
}

.work-container .section-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.work-subhead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
    max-width: 850px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

/* Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.case-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.case-title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 76, 75, 0.9);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    z-index: 3;
    text-align: center;
    line-height: 1.3;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.4s ease;
    white-space: nowrap;
}

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 76, 75, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-overlay-text {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.case-item:hover img {
    opacity: 0.3;
}

.case-item:hover .case-overlay {
    opacity: 1;
}

.case-item:hover .case-title {
    opacity: 1;
}

.case-item:hover .case-arrow {
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 992px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .case-title {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 768px) {
    .case-title {
        font-size: 1rem;
        padding: 0.625rem 0.875rem;
    }
}

/* Cases Grid Wrapper */
.cases-grid-wrapper {
    position: relative;
}

/* Carousel Controls */
.cases-carousel-controls {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--color-primary);
    background: #ffffff;
    color: var(--color-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: scale(1.05);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-prev,
.carousel-next {
    font-size: 0.9rem;
}

.carousel-view-all {
    width: auto;
    padding: 0 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .work-section {
        padding: 60px 0;
    }
    
    .work-headline {
        font-size: 2rem;
    }
    
    .work-subhead {
        font-size: 1rem;
    }
    
    .cases-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 0.5rem;
        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .cases-grid::-webkit-scrollbar {
        display: none;
    }
    
    .case-item {
        flex: 0 0 80%;
        width: 80%;
        max-width: 80%;
        scroll-snap-align: start;
        aspect-ratio: 4 / 3;
    }
    
    .cases-carousel-controls {
        display: flex;
    }
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
    background: var(--color-primary);
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.section-badge.dark {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-headline {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.testimonials-subhead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
}

/* Marquee */
.testimonials-marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-marquee:last-child {
    margin-bottom: 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
}

.testimonials-content {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
}

/* Scroll Animations */
.scroll-left {
    animation: scroll-left 35s linear infinite;
}

.scroll-right {
    animation: scroll-right 35s linear infinite;
}

.testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 2rem));
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-100% - 2rem));
    }
    100% {
        transform: translateX(0);
    }
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    width: 400px;
    flex-shrink: 0;
    box-shadow: none;
    outline: none;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.75rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-company {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-headline {
        font-size: 2rem;
    }
    
    .testimonial-card {
        width: 320px;
        padding: 1.5rem;
    }
    
    .testimonials-track {
        gap: 1.5rem;
    }
    
    .testimonials-content {
        gap: 1.5rem;
    }
}

main:not(.page-home) p {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

main ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

main ul li {
    margin: 0.5rem 0;
}

main ul li a {
    color: var(--color-accent);
    text-decoration: none;
}

main ul li a:hover {
    text-decoration: underline;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    background: #f9fafb;
    padding: 100px 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

/* Left Column: Sticky Header */
.faq-header {
    position: sticky;
    top: 120px;
}

.faq-header .section-badge {
    margin-bottom: 1.5rem;
    padding: 0.5rem 2.5rem;
}

.faq-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.faq-subhead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.faq-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
    align-items: center;
}

.faq-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Right Column: Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

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

.faq-question {
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform-origin: center center;
}

.faq-icon i {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    transform-origin: center center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.6s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    opacity: 1;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-header {
        position: static;
    }
    
    .faq-headline {
        font-size: 2rem;
    }
    
    .faq-list {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .faq-icon {
        margin-left: 1rem;
    }
}

/* ===========================
   LATEST INSIGHTS SECTION
   =========================== */
.insights-section {
    background: #f9fafb;
    padding: 100px 0;
    position: relative;
}

.insights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 2-Column Equal Height Grid */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: stretch;
}

/* Left Column: Intro Card */
.intro-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.intro-card .section-badge {
    margin-bottom: 1.5rem;
}

.insights-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.insights-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin: 0 0 2rem 0;
}

/* Right Column: Auto Carousel */
.blog-carousel-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.blog-carousel {
    display: flex;
    gap: 20px;
    height: 100%;
}

/* Vertical Blog Cards */
.blog-card-vertical {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.blog-card-vertical:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.blog-card-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.blog-card-vertical:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    transition: color 0.3s ease;
}

.blog-card-vertical:hover .blog-card-title {
    color: var(--color-primary);
}

.blog-card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
}

.blog-readmore {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-vertical:hover .blog-readmore {
    opacity: 0.8;
}

.readmore-arrow {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.blog-card-vertical:hover .readmore-arrow {
    transform: translateX(5px);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Blog Article Page Styles */
.blog-article-hero {
    padding: 100px 0 60px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.blog-article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-article-header {
    text-align: center;
    padding-top: 2rem;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 10;
}

.blog-back-link:hover {
    opacity: 0.8;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-article-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 76, 75, 0.1);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-article-date {
    color: #6b7280;
    font-size: 0.9rem;
}

.blog-article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin: 0;
}

.blog-article-content {
    padding: 60px 0;
    background: #ffffff;
}

.blog-article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.blog-article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.blog-article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 2rem 0 1rem;
}

.blog-article-body p {
    margin-bottom: 1.5rem;
}

.blog-article-body .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-article-body ul,
.blog-article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.blog-article-body strong {
    color: var(--color-dark);
    font-weight: 600;
}

.article-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.article-conclusion {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.article-conclusion h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.blog-article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.blog-article-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.blog-article-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.blog-article-cta p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.blog-article-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-article-cta-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-articles-section {
    padding: 60px 0;
    background: #f9fafb;
}

.related-articles-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.related-article-card {
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.related-article-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.related-article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

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

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

.related-article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-article-category {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(0, 76, 75, 0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 1rem;
}

.related-article-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-article-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.related-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.related-article-date {
    color: #9ca3af;
    font-size: 0.85rem;
}

.related-article-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.related-article-card:hover .related-article-link {
    transform: translateX(5px);
}

/* Responsive: Blog Article */
@media (max-width: 992px) {
    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-article-hero {
        padding: 80px 0 40px;
    }
    
    .blog-article-title {
        font-size: 1.75rem;
    }
    
    .blog-article-body {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .blog-article-body h2 {
        font-size: 1.5rem;
    }
    
    .blog-article-body h3 {
        font-size: 1.25rem;
    }
    
    .blog-article-body .lead {
        font-size: 1.1rem;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-article-cta-buttons {
        flex-direction: column;
    }
    
    .blog-article-cta-buttons .btn {
        width: 100%;
    }
    
    .related-article-card {
        flex-direction: column;
    }
    
    .related-article-image {
        height: 180px;
    }
}

/* Responsive: Blog Grid */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-grid-section {
        padding: 60px 0;
    }
    
    /* News List Style Layout for Mobile - Centered */
    .blog-container {
        padding: 0;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .blog-grid {
        width: 100%;
        max-width: 600px;
        padding: 0 1rem;
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .blog-card-vertical {
        display: flex;
        flex-direction: row;
        height: 170px;
        min-height: 170px;
        max-height: 170px;
    }
    
    .blog-card-link {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100%;
    }
    
    .blog-card-img-wrapper {
        width: 35%;
        height: 100%;
        min-height: 170px;
        flex-shrink: 0;
    }
    
    .blog-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px 0 0 12px;
    }
    
    .blog-card-content {
        width: 65%;
        padding: 0.75rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
    }
    
    .blog-card-description {
        display: none;
    }
    
    .blog-card-title {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .blog-card-footer {
        margin-top: 0;
        padding-top: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .blog-category {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: 0.4rem;
    }
    
    .blog-date {
        font-size: 0.75rem;
    }
    
    .blog-readmore {
        font-size: 0.8rem;
    }
    
    .blog-card-vertical:hover .blog-card-img {
        transform: none;
    }
}

/* Responsive: Insights Section */
@media (max-width: 992px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .intro-card {
        padding: 30px;
    }
    
    .insights-title {
        font-size: 1.75rem;
    }
    
    .insights-description {
        font-size: 1rem;
    }
    
    .blog-card-title {
        font-size: 1rem;
    }
    
    .blog-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .blog-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .blog-carousel {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .blog-card-vertical {
        flex: 0 0 80%;
        width: 80%;
        max-width: 80%;
        scroll-snap-align: start;
    }
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
.final-cta-section {
    background: var(--color-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(255,255,255,.02) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.02) 87.5%, rgba(255,255,255,.02)),
        linear-gradient(150deg, rgba(255,255,255,.02) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.02) 87.5%, rgba(255,255,255,.02)),
        linear-gradient(30deg, rgba(255,255,255,.02) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.02) 87.5%, rgba(255,255,255,.02)),
        linear-gradient(150deg, rgba(255,255,255,.02) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.02) 87.5%, rgba(255,255,255,.02));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.3;
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subhead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.final-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
}

.final-cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button (Get Quote) */
.btn-cta-primary {
    background-color: #ffffff;
    color: #004c4b;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    background-color: #f0fdfa;
}

/* Secondary Button (Audit) */
.btn-cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-main);
    text-decoration: none;
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

@media (max-width: 600px) {
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   FOOTER
   =========================== */
.main-footer {
    background: linear-gradient(180deg, #050a0f 0%, #0a1419 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 76, 75, 0.5), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-top {
    margin-bottom: 60px;
}

.footer-brand-section {
    max-width: 100%;
}

.footer-logo-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-logo-wrapper {
    flex: 1;
    min-width: 300px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo-fallback {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 500px;
}

.footer-client-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.footer-client-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-client-logo:hover {
    opacity: 1;
}


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

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::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.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 76, 75, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 4px;
}

.footer-contact {
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.contact-link,
.contact-item {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-primary);
}

.contact-link svg,
.contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button-email {
    width: 100%;
}

.contact-button-call,
.contact-button-whatsapp {
    flex: 1;
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-button-email:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.contact-button-call:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.contact-button-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.contact-button svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.footer-legal-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom-left p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--color-primary);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive: Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 0;
    }

    .footer-top {
        margin-bottom: 40px;
    }

    .footer-brand-section {
        max-width: 100%;
    }

    .footer-logo-row {
        gap: 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo-wrapper {
        min-width: 100%;
    }

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

    .footer-logo-fallback {
        font-size: 2rem;
    }

    .footer-client-logos {
        gap: 15px;
        width: 100%;
        justify-content: flex-start;
    }

    .footer-client-logo {
        height: 30px;
    }

    .footer-tagline {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .footer-contact-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 25px 0;
    }

    .footer-bottom-right {
        justify-content: center;
    }
}

/* ===========================
   DRAWERS (Quote & Audit)
   =========================== */

/* Quote Overlay */
.quote-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Quote Drawer */
.quote-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    visibility: hidden;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.4s;
    overflow-y: auto;
}

.quote-drawer.active {
    right: 0;
    visibility: visible;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
}

.quote-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

.quote-close:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Drawer Inner Layout */
.quote-drawer-inner {
    display: flex;
    height: 100%;
}

/* Left Sidebar */
.quote-sidebar {
    width: 8px;
    background: #4b5563;
    flex-shrink: 0;
}

/* Main Content Area */
.quote-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Header Section */
.quote-header {
    padding: 3rem 60px 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-headline {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.quote-subhead {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
}

.quote-content {
    padding: 2rem 60px 60px;
    flex: 1;
}

/* Form Styling */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.section-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 0.75rem;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-main);
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 76, 75, 0.2);
}

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

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
    margin-top: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

/* Submit Button */
.btn-form-submit {
    width: 100%;
    padding: 1rem;
    height: 55px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-main);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-form-submit:hover {
    background: #003a39;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 76, 75, 0.4);
}

/* Contact Cards */
.quote-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.quote-contact-cards:first-of-type {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(0, 76, 75, 0.05);
    border-color: var(--color-primary);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 76, 75, 0.1);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.contact-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--color-primary);
}

/* Social Icons */
.quote-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.quote-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quote-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Audit Overlay */
.audit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.audit-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Audit Drawer */
.audit-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    visibility: hidden;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.4s;
    overflow-y: auto;
}

.audit-drawer.active {
    right: 0;
    visibility: visible;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
}

.audit-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

.audit-close:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Drawer Inner Layout */
.audit-drawer-inner {
    display: flex;
    height: 100%;
}

/* Left Sidebar */
.audit-sidebar {
    width: 8px;
    background: #4b5563;
    flex-shrink: 0;
}

/* Main Content Area */
.audit-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Header Section */
.audit-header {
    padding: 3rem 60px 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.audit-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.audit-subhead {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
}

.audit-content {
    padding: 2rem 60px 60px;
    flex: 1;
}

/* Form Styling */
.audit-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audit-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.audit-form .form-group {
    display: flex;
    flex-direction: column;
}

.audit-form .form-group input:not([type="checkbox"]),
.audit-form .form-group select,
.audit-form .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-main);
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.audit-form .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23111827' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.audit-form .form-group input::placeholder,
.audit-form .form-group textarea::placeholder,
.audit-form .form-group select option:first-child {
    color: rgba(0, 0, 0, 0.5);
}

.audit-form .form-group select option:not(:first-child) {
    color: #111827;
}

.audit-form .form-group input:focus,
.audit-form .form-group select:focus,
.audit-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 76, 75, 0.2);
}

.audit-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Challenge Grid (2 columns) */
.audit-form .challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-top: 0.5rem;
}

.audit-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.95rem;
    cursor: pointer;
}

.audit-form .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
    flex-shrink: 0;
    margin: 0;
    appearance: checkbox;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
}

.audit-form .section-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 0.75rem;
    display: block;
}

/* Submit Button */
.btn-audit-submit {
    width: 100%;
    padding: 1rem;
    height: 55px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-main);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-audit-submit:hover {
    background: #003a39;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 76, 75, 0.4);
}

/* Contact Cards */
.audit-contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.audit-contact-cards:first-of-type {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.audit-content .contact-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.audit-content .contact-card:hover {
    background: rgba(0, 76, 75, 0.05);
    border-color: var(--color-primary);
}

.audit-content .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 76, 75, 0.1);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.audit-content .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.audit-content .contact-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audit-content .contact-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.audit-content .contact-value:hover {
    color: var(--color-primary);
}

/* Social Icons */
.audit-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.audit-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.audit-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .quote-drawer {
        width: 100%;
    }
    
    .quote-sidebar {
        width: 4px;
    }
    
    .quote-header {
        padding: 2rem 30px 1.5rem;
    }
    
    .quote-headline {
        font-size: 2rem;
    }
    
    .quote-subhead {
        font-size: 0.9rem;
    }
    
    .quote-content {
        padding: 1.5rem 30px 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-contact-cards {
        grid-template-columns: 1fr;
    }
    
    .audit-drawer {
        width: 100%;
    }
    
    .audit-sidebar {
        width: 4px;
    }
    
    .audit-header {
        padding: 2rem 30px 1.5rem;
    }
    
    .audit-headline {
        font-size: 1.75rem;
    }
    
    .audit-subhead {
        font-size: 0.9rem;
    }
    
    .audit-content {
        padding: 1.5rem 30px 40px;
    }
    
    .audit-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .audit-form .challenge-grid {
        grid-template-columns: 1fr;
    }
    
    .audit-contact-cards {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   CASE STUDIES PAGE
   =========================== */

/* Hero Section */
.case-studies-hero {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 8rem 2rem 8rem;
    position: relative;
    overflow: hidden;
}

.case-studies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.case-studies-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.case-studies-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-studies-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 76, 75, 0.1);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    width: fit-content;
    letter-spacing: 0.5px;
}

.case-studies-headline {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0;
}

.case-studies-headline .headline-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #006b6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-studies-subhead {
    font-size: 1.15rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin: 0;
}

.case-studies-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
}

.case-stat-item {
    display: flex;
    flex-direction: column;
}

.case-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.case-stat-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Hero Visual */
.case-studies-hero-visual {
    position: relative;
    height: 400px;
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.visual-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.visual-item:hover {
    transform: translateY(-5px);
}

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

.visual-item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.visual-item-2 {
    grid-column: 2;
    grid-row: 1;
}

.visual-item-3 {
    grid-column: 2;
    grid-row: 2;
}

.case-studies-hero-visual .hero-shape-1,
.case-studies-hero-visual .hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.case-studies-hero-visual .hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: -100px;
    right: -100px;
}

.case-studies-hero-visual .hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    bottom: -50px;
    left: -50px;
}

/* Hero Visual Grid for Case Studies */
.about-hero-visual .hero-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
    position: relative;
}

.about-hero-visual .visual-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-hero-visual .visual-item:hover {
    transform: translateY(-5px);
}

.about-hero-visual .visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-visual .visual-item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.about-hero-visual .visual-item-2 {
    grid-column: 2;
    grid-row: 1;
}

.about-hero-visual .visual-item-3 {
    grid-column: 2;
    grid-row: 2;
}

/* Grid Section */
.case-studies-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Case Study Card */
.case-study-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.case-study-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 76, 75, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translateY(20px);
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-align: center;
    transition: transform 0.4s ease;
}

.case-study-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: #ffffff;
    color: var(--color-primary);
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(20px);
    cursor: pointer;
}

.case-study-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover States */
.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-card:hover .case-study-overlay {
    opacity: 1;
    transform: translateY(0);
}

.case-study-card:hover .case-study-title {
    transform: translateY(0);
}

.case-study-card:hover .case-study-btn {
    transform: translateY(0);
    background: #ffffff;
    color: var(--color-primary);
    opacity: 1;
}

.case-study-card:hover .case-study-btn .btn-arrow {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .case-studies-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .case-studies-headline {
        font-size: 3rem;
    }
    
    .case-studies-hero-visual {
        height: 300px;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .case-studies-hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .case-studies-headline {
        font-size: 2.5rem;
    }
    
    .case-studies-subhead {
        font-size: 1.1rem;
    }
    
    .case-studies-stats {
        gap: 1.5rem;
    }
    
    .case-stat-number {
        font-size: 1.5rem;
    }
    
    .case-studies-hero-visual {
        height: 250px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-studies-grid-section {
        padding: 60px 0;
    }
}

/* ===========================
   INDUSTRIES PAGE
   =========================== */
.industries-section {
    background: #ffffff;
    padding: 80px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: block !important;
    visibility: visible !important;
}

.industries-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industries-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.industries-subhead {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.industries-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
    margin-top: 3rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.industry-card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    background: #ffffff !important;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
    min-height: 280px;
}

.industry-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 76, 75, 0.1);
}

.industry-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(0, 76, 75, 0.08);
    border-radius: 16px;
    padding: 0.75rem;
    overflow: hidden;
}

.industry-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.industry-card:hover .industry-icon {
    transform: scale(1.05);
    background: rgba(0, 76, 75, 0.12);
}

.industry-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.industry-card:hover .industry-title {
    color: var(--color-primary);
}

.industry-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.industry-link:hover {
    color: #003837;
    gap: 0.75rem;
}

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

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

/* Responsive - Industries */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industries-headline {
        font-size: 2rem;
    }
    
    .industries-subhead {
        font-size: 1rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .industry-card {
        padding: 2rem 1rem;
        min-height: 260px;
    }
    
    .industry-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
        padding: 0.65rem;
    }
    
    .industry-title {
        font-size: 1.1rem;
    }
    
    .industry-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .industry-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .industry-card {
        padding: 1.5rem 0.75rem;
        min-height: 240px;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
        padding: 0.5rem;
    }
    
    .industry-title {
        font-size: 1rem;
    }
    
    .industry-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .industry-link {
        font-size: 0.85rem;
    }
}

/* ===========================
   CONTACT PAGE
   =========================== */

/* Main Contact Section */
.contact-main-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Column: Contact Info */
.contact-info-column {
    position: sticky;
    top: 120px;
}

.info-section-header {
    margin-bottom: 3rem;
}

.info-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.info-subhead {
    font-size: 1.05rem;
    color: var(--color-gray);
    line-height: 1.7;
}

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

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 76, 75, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

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

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.info-value:hover {
    color: var(--color-primary);
}

.info-meta {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    line-height: 1.5;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link-btn {
    width: 42px;
    height: 42px;
    background: rgba(0, 76, 75, 0.1);
    color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Action Cards */
.contact-action-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 76, 75, 0.05);
    border: 2px solid rgba(0, 76, 75, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.action-card:hover {
    background: rgba(0, 76, 75, 0.1);
    border-color: var(--color-primary);
    transform: none;
}

.action-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 76, 75, 0.15);
    color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.action-card-content {
    flex: 1;
}

.action-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.25rem 0;
}

.action-card-desc {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin: 0;
}


/* Right Column: Contact Form */
.contact-form-column {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
}

.form-wrapper {
    padding: 50px;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.form-desc {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--color-dark);
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 76, 75, 0.08);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23425466' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-color: #ffffff;
    padding-right: 3rem;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-main);
    line-height: 1.6;
}

.contact-submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-submit-btn:hover {
    background: #003a39;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 76, 75, 0.3);
}

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

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Map Section */
.contact-map-section {
    width: 100%;
    padding: 0;
    background: #1a1a1a;
}

.map-container {
    width: 100%;
    position: relative;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(10%) contrast(120%);
    border: none;
    display: block;
}

.map-overlay-card {
    position: absolute;
    top: 40px;
    left: 40px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 280px;
    z-index: 10;
}

.map-card-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.map-card-content {
    flex: 1;
}

.map-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}

.map-card-address {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   FAQ PAGE
   =========================== */

/* FAQ Content Section */
.faq-content-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-content-section .faq-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-content-section .faq-sidebar {
    position: sticky;
    top: 120px;
}

.faq-content-section .faq-sidebar-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.faq-content-section .faq-sidebar-desc {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.faq-content-section .faq-contact-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--color-primary);
    transition: opacity 0.3s ease;
}

.faq-content-section .faq-contact-link:hover {
    opacity: 0.7;
}

.faq-content-section .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-content-section .faq-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-content-section .faq-item:hover {
    border-color: var(--color-primary);
}

.faq-content-section .faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f9fafb;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-content-section .faq-question:hover {
    background: rgba(0, 76, 75, 0.03);
}

.faq-content-section .faq-question span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    flex: 1;
    padding-right: 1rem;
}

.faq-content-section .faq-icon {
    color: var(--color-primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

.faq-content-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.faq-content-section .faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-content-section .faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===========================
   CAREERS PAGE
   =========================== */

/* Benefits Section */
.careers-benefits-section {
    padding: 100px 0;
    background: #f9fafb;
}

.careers-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subhead {
    font-size: 1.05rem;
    color: var(--color-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

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

.benefit-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 76, 75, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.benefit-icon i {
    font-size: 3rem;
    color: var(--color-primary);
    line-height: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* Culture Section */
.careers-culture-section {
    padding: 100px 0;
    background: #ffffff;
}

.careers-culture-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.culture-item {
    text-align: center;
    padding: 1.5rem;
}

.culture-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-icon i {
    font-size: 3rem;
}

.culture-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.culture-desc {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* Positions Section */
.careers-positions-section {
    padding: 100px 0;
    background: #ffffff;
}

.careers-positions-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.positions-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.positions-subhead {
    font-size: 1.05rem;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.position-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(0, 76, 75, 0.08);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 2rem;
}

.position-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.position-meta {
    display: flex;
    gap: 1rem;
}

.position-type,
.position-location {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    background: rgba(0, 76, 75, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
}

.position-desc {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

.position-apply-btn {
    padding: 0.6rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-block;
}

.position-apply-btn:hover {
    background: #003a39;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 76, 75, 0.3);
}

/* Responsive - Contact Page */
@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-column {
        position: relative;
        top: auto;
    }
    
    .info-headline {
        font-size: 2rem;
    }
    
    .map-overlay-card {
        top: 20px;
        left: 20px;
        max-width: 240px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-main-section {
        padding: 60px 0;
    }
    
    .info-headline {
        font-size: 1.75rem;
    }
    
    .form-wrapper {
        padding: 35px 24px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 400px;
    }
    
    .map-overlay-card {
        position: relative;
        top: auto;
        left: auto;
        margin: 20px;
        max-width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-sidebar {
        position: relative;
        top: auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .position-apply-btn {
        width: 100%;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .careers-benefits-section,
    .careers-culture-section,
    .careers-positions-section {
        padding: 60px 0;
    }
    
    .section-headline {
        font-size: 2rem;
    }
    
    .positions-headline {
        font-size: 2rem;
    }
}

/* ===========================
   SMART FLOATING QUOTE BUTTON
   =========================== */

.floating-cta-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #004c4b 0%, #003837 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.18),
        0 0 0 6px rgba(255, 255, 255, 0.14);
    z-index: 990;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
    isolation: isolate;
}

.floating-cta-btn::before,
.floating-cta-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    pointer-events: none;
}

.floating-cta-btn::before,
.floating-cta-btn::after {
    display: block;
}

.floating-cta-btn::before {
    /* Inner gloss */
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.06) 35%,
        rgba(255, 255, 255, 0) 60%
    );
    mix-blend-mode: soft-light;
    opacity: 0.9;
}

.floating-cta-btn::after {
    display: none;
}

.floating-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.floating-cta-icon i {
    font-size: 14px;
    line-height: 1;
}

.floating-cta-btn:hover {
    /* Keep hover minimal (no movement, no sweep) */
    background: linear-gradient(135deg, #003f3e 0%, #003837 100%);
    transform: translateY(0);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.18),
        0 0 0 6px rgba(255, 255, 255, 0.14);
}

/* removed hover sweep */

.floating-cta-btn:focus-visible {
    outline: 2px solid rgba(0, 76, 75, 0.4);
    outline-offset: 3px;
}

/* Hidden State (When main CTA is visible) */
.floating-cta-btn.is-hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

/* (Removed continuous pulse animation for a cleaner look) */

@media (max-width: 768px) {
    .floating-cta-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .floating-cta-icon {
        width: 26px;
        height: 26px;
    }
}

/* ===========================
   SERVICES PAGE
   =========================== */

/* Service Detail Pages */
.service-detail-intro {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail-content {
    text-align: center;
}

.service-detail-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-detail-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: #f9fafb;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 76, 75, 0.1);
}

.service-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.service-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

/* Service Why Choose Section */
.service-why-choose {
    padding: 100px 0;
    background: #ffffff;
}

.service-why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.service-why-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 1.5rem 0 1rem;
    line-height: 1.3;
}

.service-why-subhead {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

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

.service-feature-card {
    background: var(--color-primary);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    transition: all 0.3s ease;
    text-align: center;
}

.service-feature-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 76, 75, 0.2);
    background: #006b6a;
}

.service-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-feature-card:hover .service-feature-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.service-feature-icon svg {
    width: 32px;
    height: 32px;
}

.service-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.service-feature-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}


@media (max-width: 1024px) {
    .service-why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero CTA buttons - full width, stacked vertically */
    .about-hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .about-hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        white-space: nowrap;
    }
    
    .service-detail-headline {
        font-size: 2rem;
    }

    .service-detail-text {
        font-size: 1rem;
    }

    .service-stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .service-why-header {
        margin-bottom: 3rem;
    }

    .service-why-headline {
        font-size: 2rem;
    }

    /* Why Choose Us Carousel */
    .service-why-features-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .service-why-features-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-feature-card {
        flex-shrink: 0;
        width: 80%;
        scroll-snap-align: start;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Remove background shapes from services hero */
.services-hero-visual .hero-shape-1,
.services-hero-visual .hero-shape-2 {
    display: none;
}

/* Services Hero Image - Direct on background, no card */
.services-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Services Intro Section */
.services-intro-section {
    padding: 80px 0 60px;
    background: #ffffff;
}

.services-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.services-intro-text {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Services Grid Section */
.services-grid-section {
    padding: 60px 0 80px;
    background: #f9fafb;
}

.services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Service Card */
.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #004c4b 0%, #006b6a 50%, #004c4b 100%);
    background-size: 200% 100%;
    transform: translateY(-6px);
    transition: transform 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 76, 75, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    transform: translateY(0);
    animation: shimmer 2s linear infinite;
}

.service-card:hover::after {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 76, 75, 0.15);
    border-color: rgba(0, 76, 75, 0.1);
}

.service-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(0, 76, 75, 0.06) 0%, rgba(0, 76, 75, 0.02) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.5s ease;
    letter-spacing: -0.05em;
}

.service-card:hover .service-card-number {
    background: linear-gradient(135deg, rgba(0, 76, 75, 0.12) 0%, rgba(0, 76, 75, 0.06) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 20px;
    color: #004c4b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(0, 76, 75, 0.1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, #004c4b 0%, #006b6a 100%);
    color: #ffffff;
    transform: rotateY(360deg) scale(1.15);
    box-shadow: 0 8px 24px rgba(0, 76, 75, 0.25);
}

.service-card-icon svg {
    width: 34px;
    height: 34px;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.service-card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    color: #6b7280;
    font-size: 0.85rem;
    position: relative;
    padding-left: 1.25rem;
    transition: color 0.3s ease;
}

.service-card:hover .feature-list li {
    color: #4b5563;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #004c4b;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-card:hover .feature-list li::before {
    transform: scale(1.5);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #004c4b;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .service-card-link {
    color: #003837;
    border-top-color: rgba(0, 76, 75, 0.2);
}

.service-card:hover .service-card-link svg {
    transform: translateX(6px);
}

/* Why Choose Us Section */
.services-why-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-why-headline {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.services-why-subhead {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.services-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 76, 75, 0.1);
    border-radius: 50%;
    color: #004c4b;
    transition: all 0.3s ease;
}

.why-icon svg {
    width: 28px;
    height: 28px;
}

.why-item:hover .why-icon {
    background: #004c4b;
    color: #ffffff;
    transform: scale(1.1);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.why-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-intro-section {
        padding: 60px 0 40px;
    }

    .services-intro-headline {
        font-size: 2rem;
    }

    .services-intro-text {
        font-size: 1rem;
    }

    .services-grid-section {
        padding: 40px 0 60px;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card-title {
        font-size: 1.35rem;
    }

    .service-card-number {
        font-size: 3.5rem;
    }

    .services-why-section {
        padding: 60px 0;
    }

    .services-why-headline {
        font-size: 2rem;
    }

    .services-why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===========================
   PROJECT DETAIL PAGE
   =========================== */

.project-hero-section {
    padding: 140px 0 60px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.project-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.project-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.project-back-link:hover {
    opacity: 0.8;
}

.project-back-link i {
    font-size: 0.8rem;
}

.project-hero-content {
    margin-bottom: 3rem;
    text-align: center;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-year {
    color: #666;
    font-size: 0.9rem;
}

.project-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    text-align: center;
}

.project-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.project-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-details-section {
    padding: 80px 0;
    background: white;
}

.project-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.project-details-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-detail-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.project-detail-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.project-info-card,
.project-results-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.project-info-card h3,
.project-results-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.project-info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.project-info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #666;
}

.info-value {
    color: var(--color-text);
    font-weight: 500;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.results-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.project-gallery-section {
    padding: 80px 0;
    background: #f9fafb;
}

.project-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-gallery-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-text);
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .project-details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-sidebar {
        position: static;
    }

    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-hero-section {
        padding: 120px 0 40px;
    }

    .project-hero-container {
        padding: 0 1rem;
        text-align: center;
    }

    .project-back-link {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .project-hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .project-meta {
        justify-content: center;
    }

    .project-title {
        font-size: 2rem;
        text-align: center;
    }

    .project-description {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto;
    }

    .project-details-section {
        padding: 60px 0;
    }

    .project-details-container {
        padding: 0 1rem;
    }

    .project-detail-block h2 {
        font-size: 1.5rem;
    }

    .project-detail-block p {
        font-size: 1rem;
    }

    .project-gallery-section {
        padding: 60px 0;
    }

    .project-gallery-container {
        padding: 0 1rem;
    }

    .project-gallery-container h2 {
        font-size: 2rem;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===========================
   LEGAL PAGES & SITEMAP
   =========================== */

.legal-content-section,
.sitemap-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.legal-container,
.sitemap-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-meta {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.legal-meta p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.legal-section p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-section ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-gray);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Sitemap Styles */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.sitemap-category {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.sitemap-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sitemap-links li {
    margin: 0;
}

.sitemap-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.sitemap-links a::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.sitemap-links a:hover {
    color: var(--color-primary);
    padding-left: 2rem;
}

.sitemap-links a:hover::before {
    transform: translateX(5px);
}

/* Responsive: Legal & Sitemap */
@media (max-width: 768px) {
    .legal-content-section,
    .sitemap-content-section {
        padding: 60px 0;
    }

    .legal-container,
    .sitemap-container {
        padding: 0 1rem;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sitemap-category {
        padding: 25px 20px;
    }
}
