/**
 * BPSP Website - Complete CSS
 * All styles moved from HTML for better management
 */

/* Satoshi Font Face Declarations */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-green: #00D085;
    --dark-green: #000F0A;
    --light-green: #DFFDC1;
    --white: #FFFFFF;
    --light-gray: #E5E5E5;
    --dark-gray: #666666;
    --black: #000000;
    --brand-gradient: linear-gradient(90deg, #00492e 0%, #00FF90 50%, #00492e 100%);
    
    --font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-green);
    visibility: hidden;
    overflow-x: hidden;
}

body.loaded {
    visibility: visible;
}

/* Mobile-first base styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--spacing-4);
    color: var(--light-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3) var(--spacing-6);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

/* CTA Button Arrow */
.btn-arrow {
    width: 14px;
    height: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--primary-green);
    font-weight: 500;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--light-gray);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-green);
}

/* Light button for hero primary CTA */
.btn-light {
    background-color: var(--white);
    color: var(--dark-green);
    border-color: var(--white);
}
.btn-light:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Header */
.header {
    background-color: transparent;
    padding: 0px 0px 10px 0px;
    margin-top: -15px;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Resilience page specific header margin */
.resilience-page .header {
    margin-top: 10px;
}

/* Technology page specific header margin */
.technology-page .header {
    margin-top: 10px;
}

/* Integrated Security Solutions Page Styles */
.integrated-security-page .header {
    margin-top: 10px;
}

/* Security Risk Management Page Styles */
.security-risk-page .header {
    margin-top: 10px;
}

/* Training & Capacity Building Page Styles */
.training-page .header {
    margin-top: 10px;
}

/* Due Diligence Services Page Styles */
.due-diligence-page .header {
    margin-top: 10px;
}

/* Contact Page Styles */
.contact-page .header {
    margin-top: 10px;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: var(--spacing-12) 0;
    text-align: center;
    color: white;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    padding: var(--spacing-16) 0;
    background: var(--dark-bg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: start;
}

.contact-section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-8);
    color: white;
    text-align: left;
}

/* Contact Details */
.contact-details {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
    padding: var(--spacing-4) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--primary-green);
}

.contact-icon img {
    width: 28px;
    height: 28px;
    filter: none;
}

.contact-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: var(--spacing-1);
}

.contact-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-0);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.form-label {
    font-weight: 500;
    color: white;
    font-size: 0.95rem;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: var(--spacing-3) var(--spacing-4);
    color: white;
    font-size: 1rem;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 208, 133, 0.1);
}

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

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

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

.form-error {
    color: #ff4757;
    font-size: 0.85rem;
    display: none;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.privacy-link {
    color: var(--primary-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--light-green);
}

.form-submit {
    width: 100%;
    padding: var(--spacing-4) var(--spacing-6);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-top: var(--spacing-4);
}

/* Emergency Contact Section */
.emergency-contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: var(--spacing-12) 0;
    text-align: center;
}

.emergency-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.emergency-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-4);
    color: white;
}

.emergency-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
}

.emergency-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-6);
}

.emergency-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-6);
    background: rgba(255, 71, 87, 0.1);
    border: 2px solid #ff4757;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.emergency-button:hover {
    background: rgba(255, 71, 87, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
}

.emergency-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff4757;
    border-radius: 50%;
    flex-shrink: 0;
    color: white;
}

.emergency-icon svg {
    width: 24px;
    height: 24px;
}

.emergency-text {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: var(--spacing-1);
}

.emergency-number,
.emergency-email {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .contact-hero {
        padding: var(--spacing-8) 0;
    }
    
    .contact-info-section {
        padding: var(--spacing-12) 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .contact-details,
    .contact-form-container {
        padding: var(--spacing-6);
    }
    
    .contact-methods {
        gap: var(--spacing-4);
    }
    
    .contact-method {
        gap: var(--spacing-3);
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon img {
        width: 24px;
        height: 24px;
    }
    
    .emergency-contact-section {
        padding: var(--spacing-8) 0;
    }
    
    .emergency-methods {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .emergency-button {
        padding: var(--spacing-4);
        gap: var(--spacing-3);
    }
    
    .emergency-icon {
        width: 40px;
        height: 40px;
    }
    
    .emergency-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: var(--spacing-2) var(--spacing-3);
    }
}

/* Verified Network Features */
.verified-network-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-6) 0;
}

.verified-network-features li {
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.5;
}

.verified-network-features li:last-child {
    border-bottom: none;
}

.verified-network-features strong {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-1);
}

@media (max-width: 767px) {
    .verified-network-features {
        margin: var(--spacing-4) 0;
    }
    
    .verified-network-features li {
        padding: var(--spacing-2) 0;
        font-size: clamp(14px, 3vw, 16px);
        line-height: 1.4;
    }
}

/* First Aid Training Features */
.first-aid-training-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-6) 0;
}

.first-aid-training-features li {
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.5;
}

.first-aid-training-features li:last-child {
    border-bottom: none;
}

.first-aid-training-features strong {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-1);
}

/* Reduce top margin for third section (First Aid Training) */
.first-aid-training-section {
    margin-top: -110px;
}

@media (max-width: 767px) {
    .first-aid-training-features {
        margin: var(--spacing-4) 0;
    }
    
    .first-aid-training-features li {
        padding: var(--spacing-2) 0;
        font-size: clamp(14px, 3vw, 16px);
        line-height: 1.4;
    }
    
    .first-aid-training-section {
        margin-top: -60px;
    }
}

/* Reduce top margin for third section (Organizational Resilience) */
.organizational-resilience-section {
    margin-top: -110px;
}

@media (max-width: 767px) {
    .organizational-resilience-section {
        margin-top: -40px;
    }
}

/* Security Systems Features */
.security-systems-features,
.scalable-solutions-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-6) 0;
}

.security-systems-features li,
.scalable-solutions-features li {
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.5;
}

.security-systems-features li:last-child,
.scalable-solutions-features li:last-child {
    border-bottom: none;
}

.security-systems-features strong,
.scalable-solutions-features strong {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-1);
}

@media (max-width: 767px) {
    .security-systems-features,
    .scalable-solutions-features {
        margin: var(--spacing-4) 0;
    }
    
    .security-systems-features li,
    .scalable-solutions-features li {
        padding: var(--spacing-2) 0;
        font-size: clamp(14px, 3vw, 16px);
        line-height: 1.4;
    }
}

/* Logistics page specific header margin */
.logistics-page .header {
    margin-top: 10px;
}


/* Mobile Header Optimizations */
@media (max-width: 767px) {
    .header {
        padding: 10px 0 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .header-content {
        gap: 16px;
        align-items: center;
    }
    
    .logo-image {
        height: 40px;
        width: auto;
    }
    
    .btn-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        font-size: 20px;
        padding: 8px;
        min-height: 40px;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

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

.nav {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Align Services dropdown with other menu items on desktop */
.nav .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    height: 0px;
    padding: 0 0px;
    line-height: 1;
    vertical-align: middle;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: -50%;
    background: #DFFDC1;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: var(--spacing-4) 0;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: var(--spacing-3) var(--spacing-6);
    color: #0b2019;
    text-decoration: none;
    font-size: 16px; /* Increased from 0.95rem */
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    color: var(--primary-green);
    background: #000F0A;
    border-left-color: var(--primary-green);
}

.dropdown-toggle {
    background: none;
    border: none;
    color: #f7fff080;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.dropdown-toggle:hover {
    color: var(--primary-green);
}

.dropdown-toggle::after {
    content: '';
    width: 16px;
    height: 16px;
    margin-left: var(--spacing-2);
    margin-top: 5px;
    background-image: url('../icons/Alt Arrow Down.svg?v=1.0.6');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: top;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-link {
    color: #f7fff080;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Modern Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* Hover Effects */
.mobile-menu-toggle:hover .hamburger-line {
    background-color: var(--primary-green);
    transform: scaleY(1.1);
}

.mobile-menu-toggle:hover .hamburger-line:nth-child(1) {
    transform: translateY(-1px);
}

.mobile-menu-toggle:hover .hamburger-line:nth-child(3) {
    transform: translateY(1px);
}

/* Header CTA pill - subtle glassy dark with white text */
.btn-cta {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.btn-cta:hover {
    border-color: rgba(0, 208, 133, 0.45);
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}
.btn-cta:focus {
    outline: 2px solid rgba(0,208,133,0.6);
    outline-offset: 2px;
}

/* New Light Green Mobile Menu Design */
.mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: #E8F5E8;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0;
    border: none;
}

/* Modern Dropdown Mobile Menu */
@media (max-width: 767px) {
    .mobile-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        width: 320px;
        background: #DFFDC1;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 0;
        border: none;
    }
    
    .mobile-menu-content {
        padding: 0;
    }
    
    .mobile-menu-item {
        border-bottom: 1px solid #D1E7D1;
        position: relative;
    }
    
    .mobile-menu-item:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-link {
        color: #2D5A2D;
        font-size: 18px;
        font-weight: 600;
        padding: 16px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        transition: all 0.3s ease;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }
    
    /* Services toggle should have same styling as other menu items */
    .mobile-services-toggle {
        color: #2D5A2D !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        padding: 16px 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        background: none !important;
        border: none !important;
        width: 100% !important;
        text-align: left !important;
        cursor: pointer !important;
    }
    
    .mobile-menu-link:hover {
        background-color: #D1E7D1;
        color: #1A3D1A;
    }
    
    /* Services toggle hover effect should match other menu items */
    .mobile-services-toggle:hover {
        background-color: #D1E7D1 !important;
        color: #1A3D1A !important;
    }
    
    .chevron-icon {
        transition: transform 0.3s ease;
        color: #4A7C4A;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    /* Removed active state for chevron rotation */
    
    .mobile-services-dropdown {
        display: none;
        background-color: #F0F8F0;
        border-top: 1px solid #D1E7D1;
    }
    
    .mobile-menu-services.active .mobile-services-dropdown {
        display: block;
    }
    
    .mobile-service-item {
        border-bottom: 1px solid #D1E7D1;
    }
    
    .mobile-service-item:last-child {
        border-bottom: none;
    }
    
    .mobile-service-link {
        color: #4A7C4A;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 20px 12px 40px;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-service-link:hover {
        background-color: #E8F5E8;
        color: #2D5A2D;
    }
    
    .mobile-service-link.active {
        color: #1A3D1A;
        background-color: #D1E7D1;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Removed old mobile menu styles - replaced with new design */

/* Main content */
.main {
    margin-top: 0;
}

/* Hero Section */
.hero {
    background-color: var(--dark-green);
    padding: var(--spacing-6) 0 var(--spacing-16);
    position: relative;
    overflow: hidden; /* prevent overlay from covering next section */
}

.hero::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: -10%; bottom: 0; /* keep within hero */
    background:
        radial-gradient(circle at 65% 45%, rgba(0, 208, 133, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(0, 208, 133, 0.08) 0%, transparent 52%),
        radial-gradient(circle at 20% 35%, rgba(0, 208, 133, 0.06) 0%, transparent 55%);
    pointer-events: none;
}
/* Feather the bottom of the hero so the glow doesn't end abruptly */
.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, var(--dark-green) 100%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
    align-items: center;
}
/* Push hero content inward from the left edge only for the hero */
.hero > .container { padding-left: clamp(10px, 4vw, 80px); padding-right: var(--spacing-8); }
.hero-left { padding-left: clamp(0px, 2vw, 20px); }

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 70px; /* add spacing at top only for hero content */
}

.hero-right { display: none; }
.hero-right.loading { margin-top: 20px; }

.hero-visual { display: none; }
.ring {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    animation: spinSlow 22s linear infinite;
}
.ring-2 { inset: 22%; animation-duration: 28s; }
.ring-3 { inset: 34%; animation-duration: 34s; }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.shield-placeholder, .hero-shield { display: none; }

/* Animate the hero SVG with a subtle float/pulse */
.hero-illustration { width: 90%; height: auto; display: block; margin-top: 24px; filter: drop-shadow(0 10px 40px rgba(0, 208, 133, 0.25)); animation: floatPulse 6s ease-in-out infinite; }
@keyframes floatPulse { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.02); } }

.hero-tags {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: 8px 12px;
    margin-bottom: var(--spacing-6);
    font-weight: 400;
    margin-top: 20px;
    flex-wrap: nowrap;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Desktop Hero Tags - Keep -20px margin */
@media (min-width: 768px) {
    .hero-tags {
        margin-top: -20px;
    }
}

/* Mobile Hero CTA Optimizations */
@media (max-width: 767px) {
    .hero-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-title {
        font-size: clamp(48px, 11vw, 70px) !important; /* Increased from clamp(42px, 10vw, 64px) */
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    /* Hide line breaks in hero subtitle on mobile */
    .hero-subtitle br {
        display: none;
    }
    
    .hero-tags {
        margin-top: 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        margin-top: 24px;
    }
    
    .hero-right {
        display: block;
        order: 2;
        margin-top: 20px;
    }
    
    .hero-illustration {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 12px;
        min-height: 48px;
    }
    
    .hero-buttons .btn-light {
        background-color: var(--white);
        color: var(--dark-green);
        border: 2px solid var(--white);
    }
    
    .hero-buttons .btn-light:hover {
        background-color: transparent;
        color: var(--white);
        border-color: var(--white);
    }
    
    .hero-buttons .btn-secondary {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--primary-green);
    }
    
    .hero-buttons .btn-secondary:hover {
        background-color: var(--primary-green);
        color: var(--white);
    }
}

.tag {
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.tag-primary {
    background-color: #00D085;
    color: #0b2019;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 208, 133, 0.35);
    font-weight: 400;
    border-radius: 4px; /* reduce radius */
}

.tag-secondary {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400
}

.hero-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700; /* Satoshi Bold */
    font-size: clamp(48px, 10vw, 120px) !important; /* Increased from clamp(42px, 9vw, 100px) */
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin-bottom: 20px;
}
/* Desktop Header Optimizations */
@media (min-width: 1024px) {
    .header {
        padding: 8px 0 15px 0;
    }
    
    .header-content {
        gap: 32px;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .btn-cta {
        padding: 14px 24px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .nav-list {
        gap: 48px;
    }
    
    .nav-link {
        font-size: 18px; /* Increased from 16px */
        font-weight: 500;
    }
}

@media (min-width: 1200px) { 
    .hero-title { font-size: 85px !important; } /* Increased from 70px */
}

/* Tame hero heading size between tablet and desktop widths */
@media (min-width: 760px) and (max-width: 1400px) {
    .hero-title { font-size: 62px !important; line-height: 1.05; }
}

.hero-title .highlight {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: var(--spacing-8);
    max-width: 800px;
    line-height: 1.1;
    font-weight: 400;
    color: #caffec98;
}

/* Hero animation container (shield with orbiting dots) */
.hero-right .animation-container {
    position: relative;
    width: 520px;
    height: 520px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    filter: none; /* removed container glow */
    /* Easy control over speeds */
    --orbit1: 14s;
    --orbit2: 20s;
    --orbit3: 26s;
    /* Control shield offset/rotation */
    --shield-x: 0px;
    --shield-y: 0px;
    --shield-rotate: 0deg;
}

.hero-right .animation-container .shield {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170px;
    transform: translate(-57%, -45%) translate(var(--shield-x), var(--shield-y)) rotate(var(--shield-rotate));
    z-index: 5;
    filter: none; /* removed shield glow */
    background: transparent;
}

.hero-right .animation-container .orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: none; /* we'll draw the ring with a gradient pseudo-element */
    animation: orbit-rotate var(--orbit2) linear infinite;
    background: transparent;
}

/* Gradient ring (top-to-bottom) around each orbit */
.hero-right .animation-container .orbit::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1px; /* ring thickness */
    background: linear-gradient(to bottom, rgba(0,255,128,0.35), rgba(0,255,128,0.06));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude; /* cuts out center, leaving a 1px ring */
    pointer-events: none;
}

.hero-right .animation-container .orbit.one { width: 260px; height: 260px; animation-duration: var(--orbit1); --r: 130px; animation-delay: -0.4s; }
.hero-right .animation-container .orbit.two { width: 390px; height: 390px; animation-duration: var(--orbit2); --r: 195px; animation-direction: reverse; animation-delay: -1.1s; }
.hero-right .animation-container .orbit.three { width: 520px; height: 520px; animation-duration: var(--orbit3); --r: 260px; animation-delay: -0.7s; }

.hero-right .animation-container .dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px; /* default medium size */
    height: 12px;
    background: var(--primary-green); /* brand green */
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.6);
    transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) translateY(calc(-1 * var(--r, 100px)));
}

/* Ensure each orbit has one small and one big dot; third stays medium */
.hero-right .animation-container .orbit .dot:nth-child(1) {
    width: 8px;
    height: 8px;            /* small */
    background: #DFFDC1;    /* requested pale green */
    box-shadow: 0 0 12px rgba(223, 253, 193, 0.7);
}

.hero-right .animation-container .orbit .dot:nth-child(2) {
    width: 16px;
    height: 16px;           /* big */
    background: var(--primary-green);
    box-shadow: 0 0 24px rgba(0, 255, 128, 0.7);
}

.hero-right .animation-container .orbit .dot:nth-child(3) {
    width: 12px;
    height: 12px;           /* medium */
    background: #DFFDC1;
    box-shadow: 0 0 16px rgba(223, 253, 193, 0.7);
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive sizing for the animation container */
@media (max-width: 767px) {
    .hero-content { margin-top: 24px; }
    .hero-right.loading { margin-top: 56px; }
    .hero-right .animation-container { width: 420px; height: 420px; }
    .hero-right .animation-container .orbit.three { width: 420px; height: 420px; --r: 210px; animation-delay: -0.6s; }
    .hero-right .animation-container .orbit.two { width: 350px; height: 350px; --r: 175px; animation-direction: reverse; animation-delay: -1.0s; }
    .hero-right .animation-container .orbit.one { width: 280px; height: 280px; --r: 140px; animation-delay: -0.3s; }
}

@media (max-width: 420px) {
    .hero-right .animation-container { width: 340px; height: 340px; }
    .hero-right .animation-container .orbit.three { width: 340px; height: 340px; --r: 170px; animation-delay: -0.5s; }
    .hero-right .animation-container .orbit.two { width: 280px; height: 280px; --r: 140px; animation-direction: reverse; animation-delay: -0.9s; }
    .hero-right .animation-container .orbit.one { width: 220px; height: 220px; --r: 110px; animation-delay: -0.2s; }
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}
/* HERO CTA styles */
.hero .hero-buttons .btn { border-radius: 12px; padding: 12px 22px; font-weight: 700; }
.hero .btn-light {
    background-color: #ffffff;
    color: #0b2019;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.hero .btn-light:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,0.3); }
.hero .btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 16px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.hero .btn-secondary:hover { border-color: rgba(0,208,133,0.45); transform: translateY(-1px); }

/* Stats Section */
.stats {
    background-color: transparent;
    padding: 0;
    margin: var(--spacing-16) 0;
}
.stats > .container {
    background-color: var(--light-green);
    border-radius: 24px;
    padding: var(--spacing-12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border: 1px solid rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .stats > .container { padding: var(--spacing-16); } }
@media (min-width: 1024px) { .stats > .container { padding: var(--spacing-20); } }

.stats-content {
    color: var(--dark-green);
}
.stats-intro { display: flex; align-items: flex-start; gap: 100px; margin-bottom: var(--spacing-12); }
@media (max-width: 767px) { 
    .stats-intro { 
        flex-direction: column; 
        gap: 16px; 
    }
    
    .stats-description {
        font-size: clamp(24px, 5vw, 36px) !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
        margin-bottom: 20px !important;
    }
}

.stats-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-6);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.20);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 6px rgba(0,0,0,0.06);
}
.stats-rating .stars {
    color: #111111;
    letter-spacing: 2px;
}
.stats-rating span:last-child {
    color: rgba(0,0,0,0.65);
    font-weight: 700;
}

.stars {
    color: #FFD700;
}

.stats-description {
    font-size: clamp(24px, 3.5vw, 36px); /* Reduced from clamp(28px, 4vw, 40px) */
    line-height: 1.1;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.74);
    margin-bottom: var(--spacing-12);
    letter-spacing: -0.02em;
    max-width: 880px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
}

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

.stat-number {
    font-size: clamp(48px, 9vw, 96px);
    font-weight: 900;
    text-align: left;
    color: #20382E;
    margin-bottom: var(--spacing-2);
    letter-spacing: -0.02em;
}

.stat-description {
    font-size: 19px;
    color: #5b6b64;
    max-width: 340px;
    line-height: 1;
    text-align: left;
    margin: 0 auto;
    margin-top: -20px;
    font-weight: 400;
}

/* Services Section */
.services {
    padding: var(--spacing-16) 0;
    background-color: var(--dark-green);
}

.section-header {
    margin-bottom: var(--spacing-12);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    column-gap: 40px;
}
.section-tag {
    grid-column: 1;
    position: relative;
    padding-left: 56px;
    color: rgba(255,255,255,0.75);
            }
.section-tag::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%);
}
/* Ensure Services heading size wins over generic .section-title */
.services .section-title { grid-column: 1; font-size: clamp(24px, 4vw, 48px) !important; line-height: 0.98; letter-spacing: -0.015em; font-weight: 700; }
.section-subtitle { grid-column: 2; color: rgba(255,255,255,0.65); max-width: 520px; align-self: center; font-size: 30px; }
/* Larger subheading specifically for Services section */
.services .section-subtitle { font-size: clamp(16px, 2vw, 24px); line-height: 1; }
@media (max-width: 900px) {
    .section-header { grid-template-columns: 1fr; row-gap: 16px; }
    .section-subtitle { grid-column: 1; }
}

.section-tag {
    font-size: 16px; /* Increased from var(--font-size-sm) */
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-2);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    margin-bottom: var(--spacing-4);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: #caffec98;
    max-width: 500px;
}

.services-list { list-style: none; margin: 0; padding: 0; }

.service-link {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 0 0 0 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.services-list .service-item {
    position: relative;
    display: block;
    height: 90px;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.5);
    cursor: pointer;
    overflow: hidden;
    /* Optimized transitions for smooth performance */
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background-size, color, transform;
    /* GPU acceleration for smooth animations */
    transform: translateZ(0);
    backface-visibility: hidden;
}
.services-list .service-item:first-child {
    border-top: none;
}
/* Disable overlay approach to avoid flicker and use background on the row instead */
.services-list .service-item::before { display: none; }
.services-list .service-item {
    background-image: linear-gradient(90deg, #00D085 50%, #FFFFFF 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: left center;
    transition: background-size 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-list .service-item:hover { 
    background-size: 100% 100%; 
    transform: translateZ(0) translateY(-1px);
}
.service-number { font-size: 48px; font-weight: 400; color: rgba(255, 255, 255, 0.315); z-index: 1; }
.service-item:hover .service-number { color: #FFFFFF; }
.service-name { z-index: 1; font-size: 48px; font-weight: 400; color: rgba(255, 255, 255, 0.452); }
.service-item:hover .service-name { color: #FFFFFF; font-weight: 500; }
.service-arrow {
    z-index: 1;
    width: 80px; height: 90px;
    display: flex; align-items: center; justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 26px;
    /* Optimized transitions for smooth performance */
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, color, border-color;
    transform: translateZ(0);
}
.service-item:hover .service-arrow { 
    color: #00D085; 
    border-color: transparent; 
    transform: translateZ(0) translateX(3px); 
}

/* Mobile Services Section Optimizations */
@media (max-width: 767px) {
    .services {
        padding: var(--spacing-12) 0;
    }
    
    .services .section-header {
        margin-bottom: var(--spacing-8);
        grid-template-columns: 1fr;
        row-gap: 16px;
        text-align: center;
    }
    
    .services .section-title {
        font-size: clamp(28px, 6vw, 36px) !important;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .services .section-subtitle {
        font-size: clamp(16px, 3vw, 18px) !important;
        line-height: 1.3;
        max-width: 100%;
        text-align: center;
    }
    
    .services-list .service-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: auto;
        min-height: 80px;
        padding: 20px 16px;
        gap: 16px;
        border-radius: 12px;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        /* Optimized mobile transitions */
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background, border-color, box-shadow;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    .services-list .service-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .services-list .service-item:hover {
        background: rgba(0, 208, 133, 0.1);
        border-color: rgba(0, 208, 133, 0.3);
        transform: translateZ(0) translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 208, 133, 0.15);
    }
    
    .service-number {
        font-size: 24px;
        font-weight: 600;
        color: var(--primary-green);
        flex-shrink: 0;
        min-width: 40px;
    }
    
    .service-name {
        font-size: clamp(18px, 4.5vw, 24px);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.3;
        flex: 1;
        margin: 0;
        text-align: left;
    }
    
    .service-arrow {
        width: auto;
        height: auto;
        border: none;
        color: var(--primary-green);
        font-size: 20px;
        flex-shrink: 0;
        padding: 8px;
        border-radius: 6px;
        background: rgba(0, 208, 133, 0.1);
        /* Optimized mobile arrow transitions */
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background;
        transform: translateZ(0);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
    }
    
    .service-item:hover .service-arrow {
        background: rgba(0, 208, 133, 0.2);
        transform: translateZ(0) translateX(4px);
    }
    
    .service-item:hover .service-number {
        color: var(--primary-green);
    }
    
    .service-item:hover .service-name {
        color: #ffffff;
        font-weight: 600;
    }
    
    /* Enhanced mobile typography */
    .services .section-tag {
        font-size: 14px; /* Increased from 12px */
        letter-spacing: 0.15em;
        margin-bottom: 8px;
        text-align: center;
        position: static;
        padding-left: 0;
        text-transform: uppercase;
    }
    
    .services .section-tag::before {
        display: none !important;
    }
    
    /* Hide line breaks in feature descriptions on mobile */
    .feature-description br {
        display: none;
    }
    
    /* Better spacing for mobile service items */
    .services-list {
        gap: 12px;
    }
    
    .services-list .service-item {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .services-list .service-item:active {
        transform: translateY(1px);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    }
    
    /* Enhanced touch interactions */
    .services-list .service-item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 208, 133, 0.2);
    }
    
    /* Focus states for accessibility */
    .services-list .service-item:focus {
        outline: 2px solid var(--primary-green);
        outline-offset: 2px;
    }
    
    .services-list .service-item:focus-visible {
        outline: 2px solid var(--primary-green);
        outline-offset: 2px;
    }
    
    /* Improved touch targets */
    .services-list .service-item {
        min-height: 70px; /* Optimized for horizontal layout */
        padding: 20px 16px;
    }
    
    /* Better visual feedback for touch */
    .services-list .service-item:active {
        background: rgba(0, 208, 133, 0.15);
        border-color: rgba(0, 208, 133, 0.4);
    }
    
    /* Additional mobile refinements */
    .services-list .service-item {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-name {
        word-break: break-word;
        hyphens: auto;
    }
    
    /* Ensure proper spacing on very small screens */
    @media (max-width: 480px) {
        .services-list .service-item {
            padding: 16px 12px;
            min-height: 65px;
            gap: 12px;
        }
        
        .service-name {
            font-size: clamp(16px, 4vw, 20px);
            text-align: left;
        }
        
        .service-number {
            font-size: 20px;
            min-width: 35px;
        }
        
    .service-arrow {
        font-size: 18px;
        padding: 6px;
        min-width: 35px;
    }
    
    /* Mobile Risk Reduction Box */
    .feature-photo {
        min-height: 300px;
    }
    
    .risk-reduction-overlay {
        padding: 24px 20px 20px;
    }
    
    .risk-reduction-title {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 8px;
    }
    
    .risk-reduction-description {
        font-size: 14px;
    color: #ffffff69;
        line-height: 1.4;
    }
}
}

/* Tablet Services Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .services-list .service-item {
        height: 70px;
        padding: 0 0 0 16px;
    }
    
    .service-number {
        font-size: 36px;
    }
    
    .service-name {
        font-size: clamp(20px, 3vw, 28px);
    }
    
    .service-arrow {
        width: 60px;
        height: 70px;
        font-size: 20px;
    }
}

/* Why Choose Us Section */
.why-choose {
    padding: var(--spacing-16) 0;
    background-color: var(--dark-green);
}
/* Why Choose heading and tag tuning */
.why-choose .section-header { grid-template-columns: 1fr; row-gap: 12px; justify-items: start; padding-right: clamp(16px, 6vw, 140px); }
.why-choose .section-title { grid-column: 1; font-size: clamp(28px, 5vw, 64px); line-height: 1; letter-spacing: -0.015em; margin-top: 4px; font-weight: 600; }
.why-choose .section-title .highlight { color: var(--primary-green); font-weight: bold; }
.why-choose .section-tag { grid-column: 1; padding-left: 64px; font-size: 18px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); }
.why-choose .section-tag::before { width: 48px; opacity: .4; }

/* Mobile Why Choose Us Section Optimizations */
@media (max-width: 767px) {
    .why-choose .section-header {
        grid-template-columns: 1fr;
        row-gap: 16px;
        justify-items: start;
        text-align: left;
        padding-right: 0;
        margin-bottom: var(--spacing-8);
    }
    
    .why-choose .section-tag {
        grid-column: 1;
        padding-left: 0;
        font-size: 14px; /* Increased from 12px */
        letter-spacing: 0.15em;
        margin-bottom: 8px;
        text-align: left;
        position: static;
        text-transform: uppercase;
    }
    
    .why-choose .section-tag::before {
        display: none !important;
    }
    
    .why-choose .section-title {
        grid-column: 1;
        font-size: clamp(24px, 6vw, 36px) !important;
        line-height: 1.1;
        letter-spacing: -0.01em;
        margin-top: 0;
        font-weight: 600;
        text-align: left;
        max-width: 100%;
    }
    
    .why-choose .section-title .highlight {
        color: var(--primary-green);
        font-weight: 700;
    }
}

/* Tablet Why Choose Us Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .why-choose .section-header {
        padding-right: clamp(16px, 4vw, 80px);
    }
    
    .why-choose .section-title {
        font-size: clamp(32px, 4vw, 48px) !important;
    }
    
    .why-choose .section-tag {
        padding-left: 48px;
        font-size: 15px; /* Increased from 13px */
        text-transform: uppercase;
    }
    
    .why-choose .section-tag::before {
        width: 36px;
    }
}

.features-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: var(--spacing-12); }
/* Desktop: 2 cards on first row (50/50), 3 cards on second row (equal thirds) */
@media (min-width: 900px) {
    .features-grid { 
        grid-template-columns: repeat(6, 1fr) !important; 
        gap: 28px !important; 
    }
    /* Row 1: two equal 50/50 cards */
    .features-grid .feature-card:nth-child(1) { 
        grid-column: 1 / span 3 !important; 
        height: 580px !important; 
    }
    .features-grid .feature-card:nth-child(2) { 
        grid-column: 4 / span 3 !important; 
        height: 580px !important; 
    }
    /* Row 2: three equal cards (each takes 2/6 = 1/3 of width) */
    .features-grid .feature-card:nth-child(3) { 
        grid-column: 1 / span 2 !important; 
        height: 480px !important;
    }
    .features-grid .feature-card:nth-child(4) { 
        grid-column: 3 / span 2 !important; 
        height: 480px !important;
    }
    .features-grid .feature-card:nth-child(5) { 
        grid-column: 5 / span 2 !important; 
        height: 480px !important;
    }
}
.feature-card {
    position: relative;
    display: flex; flex-direction: column; gap: 10px; justify-content: flex-start;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 36px;
    min-height: 260px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.28);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px) 0 0/48px 48px,
        radial-gradient(rgba(0,208,133,0.12) 1px, transparent 1px) 24px 24px/48px 48px;
    opacity: .25;
    pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); border-color: #caffec25; box-shadow: 0 22px 70px rgba(0,0,0,0.35); }
.feature-card.highlighted { background: linear-gradient(180deg, #E7FFE6 0%, #DFFDC1 100%); color: var(--dark-green); border-color: rgba(0,0,0,0.08); }
.feature-icon { width: 80px; height: 80px; margin: 0 0 18px 0; display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 900; color: var(--primary-green); }

.feature-card.highlighted .feature-icon {
    color: var(--primary-green);
}

.feature-title { font-size: clamp(28px, 3.5vw, 38px); font-weight: 400; margin-bottom: 6px; text-align: left; line-height: 0.9; margin-top: 10px; }
.feature-description { font-size: 20px; line-height: 1.3; color: #caffec71; text-align: left; max-width: 38ch; margin-top: 20px; margin-bottom: 20px; font-weight: 400; letter-spacing: -0.001em;}
.feature-card.highlighted .feature-description { color: #234; }

/* Row-specific heights for a closer match */
@media (min-width: 900px) {
    .features-grid .feature-card:nth-child(1),
    .features-grid .feature-card:nth-child(2) { min-height: 480px; }
    .features-grid .feature-card:nth-child(n+3) { min-height: 320px; }
}
/* Custom feature variations to match provided design */
.feature-illustrated { padding: 0; display: flex; flex-direction: column; }
.feature-illustrated .feature-art { width: calc(100% - 56px); height: auto; object-fit: contain; display: block; margin: 28px 28px; }
.feature-illustrated .feature-content { padding: 28px; position: relative; }
.feature-tech { background: #DFFDC1 url('../images/tech feature card cover.svg?v=1.0.7') center/cover no-repeat; color: #0b2019; border-color: rgba(0,0,0,0.06); }
.feature-tech .feature-title { color: #0b2019; }
.feature-tech .feature-description { color: #36412c; margin-top: 0px; }
.feature-photo { 
    background: url('../images/feature card image.png?v=1.0.8') center/cover no-repeat, 
                linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)); 
    display: flex; 
    align-items: flex-end; 
    justify-content: center; 
    position: relative;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.feature-photo .feature-badge { 
    margin: 0 0 40px 0; 
    padding: 24px 32px; 
    background: rgba(0, 0, 0, 0.7); 
    color: #fff; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 16px; 
    font-weight: 600; 
    font-size: 18px; 
    backdrop-filter: blur(10px); 
    text-align: center;
    max-width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Risk Reduction Box Overlay */
.risk-reduction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    padding: 40px 32px 32px;
    color: #ffffff;
}

.risk-reduction-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 12px 0;
    line-height: 1.2;
    font-family: 'Satoshi', sans-serif;
}

.risk-reduction-description {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}
.feature-map { padding: 0; display: flex; flex-direction: column; }
.feature-map .feature-art { width: calc(100% - 150px); height: auto; object-fit: contain; display: block; margin: 60px 75px; margin-bottom: -10px;}
.feature-map .feature-content { padding: 28px; position: relative; }

/* Experience Section */
.experience {
    padding: var(--spacing-16) 0;
    background-color: var(--dark-green);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
    align-items: center;
}

.experience-content .section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 var(--spacing-8) 0;
}

.experience-content .section-title .highlight {
    color: var(--primary-green);
}

.experience-subheading {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 var(--spacing-8) 0;
    line-height: 1.4;
    font-weight: 400;
}

.experience-content .btn-secondary {
    background-color: #ffffff;
    color: #0b2019;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Satoshi', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.experience-content .btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.experience-card {
    background: transparent;
    border-radius: var(--border-radius-xl);
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-illustration {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-top: -40px;
    object-fit: contain;
}

.experience-card-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #caffec98;
    margin: var(--spacing-6) auto 0 auto;
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
    margin-top: -70px;
    max-width: 400px;
    grid-column: 2;
}

/* Mobile Experience Section Optimizations */
@media (max-width: 767px) {
    .experience {
        padding: var(--spacing-12) 0;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
        text-align: center;
    }
    
    .experience-content .section-title {
        font-size: clamp(28px, 6vw, 36px) !important;
        line-height: 1.1;
        margin-bottom: var(--spacing-6);
        text-align: center;
    }
    
    .experience-content .section-title .highlight {
        color: var(--primary-green);
    }
    
    .experience-content .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 12px;
        margin: 0 auto;
        display: block;
    }
    
    .experience-card {
        order: 2;
        margin-top: var(--spacing-6);
    }
    
    .experience-illustration {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }
    
    .experience-card-subtitle {
        font-size: clamp(16px, 3vw, 18px);
        color: #caffec98;
        margin: var(--spacing-4) auto 0 auto;
        line-height: 1.4;
        text-align: center;
        max-width: 100%;
        grid-column: 1;
        margin-top: var(--spacing-4);
    }
}

/* Tablet Experience Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .experience-content {
        gap: var(--spacing-12);
    }
    
    .experience-content .section-title {
        font-size: clamp(32px, 4vw, 42px) !important;
    }
    
    .experience-illustration {
        max-width: 350px;
    }
    
    .experience-card-subtitle {
        font-size: clamp(16px, 3vw, 18px);
        max-width: 350px;
    }
}

/* Sectors Section */
.sectors {
    padding: 0;
}

/* Sectors Section */
.sectors-slider {
    overflow: hidden;
    background: var(--primary-green);
    margin: var(--spacing-8) 0;
    border-radius: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.sectors-track {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.sector-item {
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 700;
    color: #0b2019;
    letter-spacing: -0.01em;
    padding: var(--spacing-6) var(--spacing-12);
    margin-right: var(--spacing-16);
    flex-shrink: 0;
}

/* Mobile Sectors Section Optimizations */
@media (max-width: 767px) {
    .sectors {
        padding: 0;
        margin: var(--spacing-6) 0;
    }
    
    .sectors-slider {
        margin: var(--spacing-4) 0;
        border-radius: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow: hidden;
    }
    
    .sectors-track {
        display: flex;
        animation: scroll 25s linear infinite;
        white-space: nowrap;
        gap: 0;
    }
    
    .sector-item {
        font-size: clamp(24px, 5vw, 32px);
        font-weight: 700;
        color: #0b2019;
        letter-spacing: -0.005em;
        padding: var(--spacing-4) var(--spacing-6);
        margin-right: var(--spacing-8);
        flex-shrink: 0;
        min-width: auto;
        white-space: nowrap;
    }
    
    /* Pause animation on touch for better mobile UX */
    .sectors-slider:hover .sectors-track,
    .sectors-slider:active .sectors-track {
        animation-play-state: paused;
    }
}

/* Tablet Sectors Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .sector-item {
        font-size: clamp(36px, 5vw, 48px);
        padding: var(--spacing-5) var(--spacing-8);
        margin-right: var(--spacing-12);
    }
    
    .sectors-track {
        animation-duration: 28s;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Client Testimonial Section */
.client-testimonial {
    padding: var(--spacing-20) 0;
    background-color: var(--dark-green);
    position: relative;
    overflow: hidden;
}

.client-testimonial::before {
    display: none;
}

.testimonial-box {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 208, 133, 0.08) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: var(--spacing-16) var(--spacing-12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
   
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-content {
    margin-bottom: var(--spacing-10);
}

.testimonial-quote {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: var(--spacing-8);
    margin-top: 50px;
    text-align: left;
    letter-spacing: -0.01em;
    max-width: 1200px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.author-role {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.1;
}

.author-company {
    font-size: clamp(16px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.1;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin: var(--spacing-8) 0;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.slider-indicator {
    display: flex;
    gap: var(--spacing-4);
    align-items: center;
}

.slider-segment {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.slider-segment.active {
    background: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 208, 133, 0.3);
}

.slider-segment:hover {
    background: rgba(255, 255, 255, 0.25);
}

.slider-segment.active:hover {
    background: var(--primary-green);
}

.client-logos-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: var(--spacing-6);
    padding: var(--spacing-4) 0;
    display: none; /* Hidden for now */
}

.client-logos-track {
    display: flex;
    gap: var(--spacing-12);
    align-items: center;
    animation: logoCarousel 20s linear infinite;
    width: max-content;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.logo-text sup {
    font-size: 12px;
    vertical-align: super;
}

@keyframes logoCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.client-logos-container:hover .client-logos-track {
    animation-play-state: paused;
}

/* Responsive adjustments for testimonial box */
@media (max-width: 768px) {
    .testimonial-box {
        padding: var(--spacing-12) var(--spacing-4);
        margin: 0 var(--spacing-2);
    }
    
    .testimonial-quote {
        font-size: clamp(24px, 6vw, 36px);
        text-align: center;
    }
    
    .testimonial-author {
        text-align: center;
        align-items: center;
    }
    
    .author-role {
        font-size: clamp(18px, 4vw, 24px);
    }
    
    .author-company {
        font-size: clamp(14px, 3vw, 18px);
    }
    
    .slider-indicator {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .slider-segment {
        width: 40px;
        height: 2px;
    }
    
    .client-logo {
        min-width: 100px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .client-logos-track {
        gap: var(--spacing-6);
    }
}

/* Additional mobile testimonial optimizations for very small screens */
@media (max-width: 480px) {
    .testimonial-box {
        padding: var(--spacing-10) var(--spacing-3);
        margin: 0 var(--spacing-1);
    }
    
    .testimonial-quote {
        font-size: clamp(20px, 5vw, 28px);
        margin-top: 30px;
        text-align: center;
    }
    
    .testimonial-author {
        text-align: center;
        align-items: center;
    }
    
    .author-role {
        font-size: clamp(16px, 3.5vw, 20px);
    }
    
    .author-company {
        font-size: clamp(12px, 2.5vw, 16px);
    }
    
    .client-logos-track {
        gap: var(--spacing-4);
    }
}

/* Article Section */
.article {
    padding: var(--spacing-20) 0;
    background-color: var(--dark-green);
    position: relative;
    overflow: hidden;
}


.article-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.article-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.article-tag {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-2);
}

.article-tag-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.article-tag span {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.article-title {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--spacing-6);
    letter-spacing: -0.02em;
}

.article-title .highlight {
    color: var(--primary-green);
}

.btn-article {
    background: rgba(44, 58, 55, 0.8);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-self: flex-start;
    margin-bottom: var(--spacing-6);
}

.btn-article:hover {
    border-color: rgba(0, 255, 128, 0.45);
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

.article-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-weight: 400;
    max-width: 500px;
}

.article-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pakistan-map-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pakistan-map {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 208, 133, 0.15));
}

/* Mobile Article Section Optimizations */
@media (max-width: 767px) {
    .article {
        padding: var(--spacing-12) 0;
    }
    
    .article-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
        text-align: left;
    }
    
    .article-left {
        order: 1;
        padding-right: 0;
        align-items: flex-start;
    }
    
    .article-tag {
        justify-content: flex-start;
        margin-bottom: var(--spacing-4);
    }
    
    .article-tag-line {
        width: 30px;
    }
    
    .article-tag span {
        font-size: 12px;
        letter-spacing: 0.15em;
    }
    
    .article-title {
        font-size: clamp(28px, 6vw, 36px) !important;
        line-height: 1.1;
        margin-bottom: var(--spacing-6);
        text-align: left;
    }
    
    .article-title .highlight {
        color: var(--primary-green);
    }
    
    .btn-article {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 12px;
        margin: 0 0 var(--spacing-6) 0;
        display: flex;
        justify-content: flex-start;
    }
    
    .article-description {
        font-size: clamp(16px, 3vw, 18px);
        line-height: 1.4;
        text-align: left;
        max-width: 100%;
        margin: 0;
    }
    
    .article-right {
        order: 2;
        justify-content: center;
        margin-top: var(--spacing-6);
    }
    
    .pakistan-map-container {
        max-width: 100%;
        height: 300px;
        margin: 0 auto;
    }
    
    .pakistan-map {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Tablet Article Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .article-content {
        gap: var(--spacing-12);
    }
    
    .article-title {
        font-size: clamp(32px, 4vw, 42px) !important;
    }
    
    .article-description {
        font-size: clamp(16px, 2.5vw, 18px);
    }
    
    .pakistan-map-container {
        max-width: 450px;
        height: 350px;
    }
}

.map-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 208, 133, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.map-point:nth-child(1) { top: 25%; left: 35%; animation-delay: 0s; }
.map-point:nth-child(2) { top: 40%; left: 45%; animation-delay: 0.3s; }
.map-point:nth-child(3) { top: 55%; left: 30%; animation-delay: 0.6s; }
.map-point:nth-child(4) { top: 35%; left: 60%; animation-delay: 0.9s; }
.map-point:nth-child(5) { top: 65%; left: 50%; animation-delay: 1.2s; }
.map-point:nth-child(6) { top: 45%; left: 25%; animation-delay: 1.5s; }
.map-point:nth-child(7) { top: 30%; left: 50%; animation-delay: 1.8s; }
.map-point:nth-child(8) { top: 60%; left: 40%; animation-delay: 2.1s; }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Footer */
.footer {
    background-color: #0A1A17;
    color: var(--white);
}

.footer-main {
    background-color: var(--light-green);
    color: var(--dark-green);
    padding: var(--spacing-16) 0;
    border-radius: 24px 24px 0 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

/* Mobile Footer Optimizations */
@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0;
        border-radius: 16px 16px 0 0;
        margin: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .footer-main .container {
        padding: 0 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-left {
        order: 2;
        align-items: center;
    }
    
    .footer-right {
        order: 1;
        align-items: center;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.footer-phone {
    font-size: clamp(36px, 7vw, 48px);
    font-weight: 500;
    color: var(--dark-green);
    line-height: 2;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: #000f0a31;
}

.footer-email {
    font-size: clamp(36px, 7vw, 48px);
    font-weight: 500;
    color: var(--dark-green);
    line-height: 1.4;
    text-decoration: underline;
    white-space: nowrap;
    text-underline-offset: 8px;
    text-decoration-color: #000f0a31;
}

/* Mobile Contact Information */
@media (max-width: 767px) {
    .footer-contact {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .footer-phone {
        font-size: clamp(24px, 5vw, 32px);
        line-height: 1.2;
        text-align: center;
        word-break: break-all;
    }
    
    .footer-email {
        font-size: clamp(24px, 5vw, 32px);
        line-height: 1.2;
        text-align: center;
        white-space: normal;
        word-break: break-all;
    }
}

.footer-nav {
    display: flex;
    gap: var(--spacing-16);
    flex-wrap: wrap;
}

.footer-nav-link {
    color: #5E714A;
    text-decoration: none;
    font-weight: 500;
    font-size: 30px;
    margin-top: 50px;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #000f0a75;
}

/* Mobile Footer Navigation */
@media (max-width: 767px) {
    .footer-nav {
        gap: 16px;
        justify-content: center;
        flex-wrap: nowrap;
        margin-top: 0;
        display: flex;
        flex-direction: row;
    }
    
    .footer-nav-link {
        font-size: 16px;
        margin-top: 0;
        padding: 8px 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        flex: 1;
        max-width: 120px;
    }
    
    .footer-nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-8);
    align-items: flex-end;
}

.footer-cta-box {
    background-color: var(--primary-green);
    color: var(--dark-green);
    padding: var(--spacing-6);
    border-radius: 30px;
    text-align: center;
    max-width: 300px;
}

/* Mobile Footer CTA */
@media (max-width: 767px) {
    .footer-right {
        align-items: center;
        gap: 24px;
    }
    
    .footer-cta-box {
        max-width: 100%;
        width: 100%;
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .footer-cta-box .cta-text {
        font-size: clamp(28px, 6vw, 36px) !important;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px 24px;
        font-size: 18px;
        border-radius: 12px;
    }
}

.cta-text {
    font-size: clamp(24px, 5vw, 36px);
    text-align: left;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: -0.025em;
}

.cta-button {
    background-color: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: #1a2e1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-arrow {
    width: 20px;
    height: 14px;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.footer-office {
    text-align: right;
    max-width: 300px;
}

.footer-office-title {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: var(--spacing-2);
    color: var(--dark-green);
}

.footer-office address {
    font-size: var(--font-size-base);
    color: var(--dark-green);
    line-height: 1.4;
    margin-top: -10px;
    font-style: normal;
    margin-bottom: -30px;
}

/* Mobile Footer Office */
@media (max-width: 767px) {
    .footer-office {
        text-align: center;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .footer-office-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .footer-office address {
        font-size: 16px;
        line-height: 1.5;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.footer-bottom {
    background-color: #0A1A17;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-4) 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    align-items: center;
    text-align: center;
}

.copyright {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Footer Bottom */
@media (max-width: 767px) {
    .footer-bottom {
        padding: 24px 0;
        margin: 0;
        border-radius: 0;
    }
    
    .footer-bottom-content {
        gap: 20px;
        padding: 0 16px;
    }
    
    .copyright {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .footer-social {
        gap: 16px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .social-link {
        font-size: 11px;
        padding: 4px 6px;
        border-radius: 4px;
        background: transparent;
        transition: all 0.3s ease;
        white-space: nowrap;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        max-width: 80px;
        text-align: center;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-link:hover {
        background: transparent;
        color: var(--primary-green);
        text-decoration: underline;
    }
}

.footer-social {
    display: flex;
    gap: var(--spacing-6);
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.3s ease;
}

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

/* Responsive breakpoints */
/* Tablet Header Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .header {
        padding: 8px 0 15px 0;
    }
    
    .header-content {
        gap: 24px;
    }
    
    .logo-image {
        height: 48px;
    }
    
    .btn-cta {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .nav-list {
        gap: 32px;
    }
    
    .nav-link {
        font-size: 17px; /* Increased from 15px */
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-6);
    }
    
    .nav {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .logo-image {
        height: 55px;
    }
    
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    .hero-layout { grid-template-columns: 1fr 1fr; }
    .hero-right { display: block; }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-16);
    }
    
    .experience-content .section-title {
        font-size: 45px;
    }
    
    .article-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-20);
    }
    
    .article-left {
        padding-right: var(--spacing-8);
    }
    
    .article-right {
        justify-content: flex-start;
    }
    
    .pakistan-map-container {
        max-width: 600px;
        height: 500px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-16);
    }
    
    .footer-left {
        align-items: flex-start;
    }
    
    .footer-right {
        align-items: flex-end;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Tablet Footer Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-main {
        padding: 60px 0;
        margin: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
    }
    
    .footer-main .container {
        padding: 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-phone {
        font-size: clamp(32px, 5vw, 42px);
    }
    
    .footer-email {
        font-size: clamp(24px, 4vw, 32px);
    }
    
    .footer-nav-link {
        font-size: 20px;
        margin-top: 30px;
    }
    
    .cta-text {
        font-size: clamp(18px, 3vw, 24px);
    }
    
    .footer-office-title {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-8);
    }
    
    .logo-image {
        height: 60px;
    }
    
    .hero-title {
        font-size: var(--font-size-6xl);
    }
    
    .section-title {
        font-size: var(--font-size-4xl);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
.btn:focus,
.client-tab:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.nav-link:focus,
.nav-link:active,
.mobile-nav-link:focus,
.mobile-nav-link:active {
    outline: none;
    box-shadow: none;
    background: none;
    border: none;
}

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

/* Cookies Popup Styles */
.cookies-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: rgba(10, 26, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookies-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookies-content {
    padding: 24px;
}

.cookies-header h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookies-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.cookies-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookies-actions .btn {
    flex: 1;
    min-width: 120px;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

.cookies-actions .btn-primary {
    color: var(--dark-green);
}

/* Cookies Modal Styles */
.cookies-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookies-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookies-modal-content {
    background: rgba(10, 26, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookies-modal.show .cookies-modal-content {
    transform: scale(1);
}

.cookies-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 10px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.cookies-modal-header h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.cookies-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookies-modal-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.cookies-modal-body {
    padding: 0 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category-header h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.cookie-category p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--primary-green);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookies-modal-actions {
    display: flex;
    gap: 12px;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 24px;
    margin-bottom: 4px;
}

.cookies-modal-actions .btn {
    flex: 1;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

.cookies-modal-actions .btn-primary {
    color: var(--dark-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookies-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    
    .cookies-content {
        padding: 20px;
    }
    
    .cookies-actions {
        flex-direction: column;
    }
    
    .cookies-actions .btn {
        min-width: auto;
    }
    
    .cookies-modal-content {
        margin: 20px;
        max-height: 90vh;
    }
    
    .cookies-modal-header,
    .cookies-modal-body,
    .cookies-modal-actions {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .cookie-category {
        padding: 16px;
    }
}

/* Privacy Policy Page Styles */
/* Privacy Policy Page Specific Styles */
.privacy-page .header {
    margin-top: 10px;
}

.privacy-policy {
    padding: var(--spacing-20) 0;
    background: var(--dark-bg);
    min-height: 100vh;
    margin-top: 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
}

.privacy-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.back-button {
    display: inline-flex;
    align-items: center;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--spacing-6);
    padding: 8px 16px;
    border: 1px solid rgba(0, 208, 133, 0.3);
    border-radius: 8px;
    background: rgba(0, 208, 133, 0.1);
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(0, 208, 133, 0.2);
    border-color: var(--primary-green);
    transform: translateX(-2px);
}

.privacy-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-4);
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: clamp(14px, 3vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.privacy-body {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--spacing-8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section {
    margin-bottom: var(--spacing-8);
}

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

.privacy-section h2 {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-4);
    line-height: 1.3;
}

.privacy-section p {
    font-size: clamp(14px, 3vw, 16px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-4);
}

.privacy-section ul {
    margin: var(--spacing-4) 0;
    padding-left: var(--spacing-6);
}

.privacy-section li {
    font-size: clamp(14px, 3vw, 16px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-2);
}

.contact-info {
    background: rgba(0, 208, 133, 0.1);
    border: 1px solid rgba(0, 208, 133, 0.2);
    border-radius: 12px;
    padding: var(--spacing-6);
    margin-top: var(--spacing-4);
}

.contact-info p {
    margin-bottom: var(--spacing-2);
    font-weight: 500;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--primary-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-policy {
        padding: var(--spacing-16) 0;
    }
    
    .privacy-content {
        padding: 0 var(--spacing-4);
    }
    
    .privacy-body {
        padding: var(--spacing-6);
    }
    
    .privacy-section {
        margin-bottom: var(--spacing-6);
    }
    
    .contact-info {
        padding: var(--spacing-4);
    }
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/**
 * BPSP Website - Non-Critical CSS
 * Additional styles for enhanced functionality and animations
 */

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

.btn:active {
    transform: translateY(1px);
}

/* Hero Section Reveal Animations */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stats Section Reveal Animations */
.stats-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stats-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stat-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }

/* Why Choose Cards Reveal Animations */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }

/* Enhanced Service Item Animations */
.service-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    /* Optimized reveal animation */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    transform: translateZ(0) translateY(30px);
    backface-visibility: hidden;
}

.service-item.revealed {
    opacity: 1;
    transform: translateZ(0) translateY(0);
}

/* Reduced delays for smoother animation */
.service-item:nth-child(1) { transition-delay: 0.05s; }
.service-item:nth-child(2) { transition-delay: 0.1s; }
.service-item:nth-child(3) { transition-delay: 0.15s; }
.service-item:nth-child(4) { transition-delay: 0.2s; }
.service-item:nth-child(5) { transition-delay: 0.25s; }
.service-item:nth-child(6) { transition-delay: 0.3s; }
.service-item:nth-child(7) { transition-delay: 0.35s; }

/* Mobile optimizations for reveal animations */
@media (max-width: 767px) {
    .service-item {
        transform: translateZ(0) translateY(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: opacity, transform;
        backface-visibility: hidden;
    }
    
    /* Faster mobile animations */
    .service-item:nth-child(1) { transition-delay: 0.02s; }
    .service-item:nth-child(2) { transition-delay: 0.04s; }
    .service-item:nth-child(3) { transition-delay: 0.06s; }
    .service-item:nth-child(4) { transition-delay: 0.08s; }
    .service-item:nth-child(5) { transition-delay: 0.1s; }
    .service-item:nth-child(6) { transition-delay: 0.12s; }
    .service-item:nth-child(7) { transition-delay: 0.14s; }
}

/* Mobile optimizations for hero and stats animations */
@media (max-width: 767px) {
    .hero-content {
        transform: translateY(20px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .hero-right {
        transform: translateX(20px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .stats-content {
        transform: translateY(20px);
        transition: all 0.5s ease;
    }
    
    .stat-item {
        transform: translateY(15px);
        transition: all 0.4s ease;
    }
    
    .feature-card {
        transform: translateY(20px);
        transition: all 0.5s ease;
    }
    
    .feature-card:nth-child(1) { transition-delay: 0.05s; }
    .feature-card:nth-child(2) { transition-delay: 0.1s; }
    .feature-card:nth-child(3) { transition-delay: 0.15s; }
    .feature-card:nth-child(4) { transition-delay: 0.2s; }
    .feature-card:nth-child(5) { transition-delay: 0.25s; }
    
    /* Reduce gap between number and service name on mobile */
    .service-link {
        gap: 0px;
        grid-template-columns: 30px 1fr 60px; /* Reduced number column from 80px to 40px */
    }
    
    /* Increase height of 3rd feature card on mobile */
    .features-grid .feature-card:nth-child(3) {
        min-height: 400px !important;
        height: auto !important;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    color: rgba(255, 255, 255, 0.6);
    margin-left: 8px;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-green);
}

.breadcrumb-item:last-child a {
    color: var(--primary-green);
    font-weight: 500;
}

@media (max-width: 767px) {
    .breadcrumb {
        padding: 6px 0;
    }
    
    .breadcrumb-item a {
        font-size: 0.85rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-right,
    .stats-content,
    .stat-item,
    .feature-card,
    .service-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .hero-content.revealed,
    .hero-right.revealed,
    .stats-content.revealed,
    .stat-item.revealed,
    .feature-card.revealed,
    .service-item.revealed {
        opacity: 1;
        transform: none;
    }
}

/* Removed problematic ::before pseudo-element that was causing animation conflicts */

/* Feature Card Hover Effects */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 208, 133, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Loading States */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

.loading.loaded:nth-child(1) { animation: fadeInUp 0.6s ease forwards; }
.loading.loaded:nth-child(2) { animation: fadeInUp 0.6s ease 0.1s forwards; }
.loading.loaded:nth-child(3) { animation: fadeInUp 0.6s ease 0.2s forwards; }
.loading.loaded:nth-child(4) { animation: fadeInUp 0.6s ease 0.3s forwards; }

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Enhanced Mobile Menu - Replaced with new light green design */

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

/* Mobile Services Toggle */
.mobile-services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--spacing-4) 0;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    margin: 0;
}

.mobile-services-toggle:hover {
    color: var(--primary-green);
}

/* Removed duplicate arrow - using SVG chevron icon instead */

.mobile-services-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 0;
    list-style: none;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-services-menu.active {
    max-height: 400px;
}

.mobile-services-link {
    display: block;
    padding: var(--spacing-3) var(--spacing-6);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px; /* Increased from 0.95rem */
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-services-link:hover {
    color: var(--primary-green);
    background: rgba(0, 208, 133, 0.1);
    border-left-color: var(--primary-green);
}

/* Enhanced Form Styles */
.form-group {
    margin-bottom: var(--spacing-6);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-2);
    font-weight: 600;
    color: var(--white);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--spacing-3) var(--spacing-4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 208, 133, 0.1);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.field-error {
    color: #ff4444;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-1);
    display: block;
}

.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: var(--spacing-4) var(--spacing-6);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: fadeInUp 0.3s ease;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Keyboard Navigation */
.keyboard-navigation *:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

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

::-webkit-scrollbar-track {
    background: var(--dark-green);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00b875;
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu,
    .btn,
    .footer-bottom {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .services,
    .why-choose,
    .experience,
    .clients,
    .article {
        background: white;
        color: black;
    }
    
    .stats {
        background: #f5f5f5;
        color: black;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-green: #00ff88;
        --light-gray: #ffffff;
        --dark-gray: #000000;
    }
    
    .btn {
        border-width: 3px;
    }
    
    .service-item,
    .feature-card,
    .testimonial-card {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .loading {
        opacity: 1;
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark mode */
}

/* Enhanced Responsive Images */
.responsive-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

/* Enhanced Grid Systems */
.grid {
    display: grid;
    gap: var(--spacing-6);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-6 { margin-bottom: var(--spacing-6); }
.mb-8 { margin-bottom: var(--spacing-8); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-6 { margin-top: var(--spacing-6); }
.mt-8 { margin-top: var(--spacing-8); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-1); }
.p-2 { padding: var(--spacing-2); }
.p-3 { padding: var(--spacing-3); }
.p-4 { padding: var(--spacing-4); }
.p-6 { padding: var(--spacing-6); }
.p-8 { padding: var(--spacing-8); }

.hidden { display: none; }
.visible { display: block; }

/* Enhanced Focus Styles */
.focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 208, 133, 0.3);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Error States */
.error-state {
    border-color: #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
}

.error-message {
    color: #ff4444;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-1);
}

/* Success States */
.success-state {
    border-color: var(--primary-green);
    background-color: rgba(0, 208, 133, 0.1);
}

.success-message {
    color: var(--primary-green);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-1);
}

/* Enhanced Accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Enhanced Touch Targets */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .service-item,
    .client-tab {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Enhanced Performance */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Resilience & Crisis Management Page Styles */
.service-hero {
    background-color: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.service-hero-illustration {
    background-color: transparent;
    padding: var(--spacing-8) 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    max-height: 400px;
    margin-top: 0;
}

.hero-image-box {
    width: 100%;
    max-width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    background: transparent;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.placeholder-content {
    text-align: center;
    color: #1976d2;
    padding: var(--spacing-4);
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-2);
}

.placeholder-content p {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 var(--spacing-1) 0;
    color: #1976d2;
}

.placeholder-content small {
    font-size: 14px;
    color: #666;
    display: block;
}

/* Hide placeholder when image loads */
.hero-image-box:has(.hero-image[src]) .hero-image-placeholder {
    display: none;
}

.service-hero-text-content {
    
    padding: var(--spacing-16) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-8);
    align-items: center;
    margin-top: -50px;
    position: relative;
}

.service-hero-text-left {
    padding-left: var(--spacing-8);
}

.service-hero-text-right {
    padding-right: var(--spacing-8);
    text-align: right;
}

.service-hero-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;

    margin: 0;
    letter-spacing: -0.02em;
}

.service-hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
}

/* Separator line at bottom of hero text section */
.service-hero-text-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.boat-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 20px;
}

/* Readiness Section */
.readiness-section {
    padding: var(--spacing-20) 0;
    background-color: var(--dark-green);
}

.readiness-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.readiness-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 208, 133, 0.08) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: var(--spacing-16) var(--spacing-12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.readiness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
}

.readiness-text {
    padding-right: var(--spacing-8);
}

.readiness-title {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--spacing-8);
    letter-spacing: -0.02em;
}

.readiness-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.678);
    line-height: 1.5;
    margin-bottom: var(--spacing-6);
    font-weight: 400;
}

.readiness-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.readiness-image-box {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.readiness-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

.readiness-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.readiness-image-box:has(.readiness-image[src]) .readiness-image-placeholder {
    display: none;
}

/* Business Resilience Section */
.business-resilience-section {
    padding: var(--spacing-20) 0;
    background-color: var(--dark-green);
}

.business-resilience-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.business-resilience-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 208, 133, 0.08) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: var(--spacing-16) var(--spacing-12);
    backdrop-filter: blur(10px);
    margin-top: -110px;
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.business-resilience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
}

.business-resilience-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-resilience-text {
    padding-left: var(--spacing-8);
}

.business-resilience-title {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--spacing-8);
    letter-spacing: -0.02em;
}

.business-resilience-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.678);
    line-height: 1.5;
    margin-bottom: var(--spacing-6);
    font-weight: 400;
}

.business-resilience-image-box {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-resilience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

.business-resilience-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.business-resilience-image-box:has(.business-resilience-image[src]) .business-resilience-image-placeholder {
    display: none;
}

/* Technology & Innovation Page Styles */
.cyber-security-features,
.ai-security-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-6) 0;
}

.cyber-security-features li,
.ai-security-features li {
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.5;
}

.cyber-security-features li:last-child,
.ai-security-features li:last-child {
    border-bottom: none;
}

.cyber-security-features strong,
.ai-security-features strong {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-1);
}

/* Logistics & Journey Management Page Styles */
.logistics-features,
.operations-features,
.coverage-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-6) 0;
}

.logistics-features li,
.operations-features li,
.coverage-features li {
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.5;
}

.logistics-features li:last-child,
.operations-features li:last-child,
.coverage-features li:last-child {
    border-bottom: none;
}

.logistics-features strong,
.operations-features strong,
.coverage-features strong {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-1);
}

/* Mobile optimizations for feature lists */
@media (max-width: 767px) {
    .cyber-security-features,
    .ai-security-features,
    .logistics-features,
    .operations-features,
    .coverage-features {
        margin: var(--spacing-4) 0;
    }
    
    .cyber-security-features li,
    .ai-security-features li,
    .logistics-features li,
    .operations-features li,
    .coverage-features li {
        padding: var(--spacing-2) 0;
        font-size: clamp(14px, 3vw, 16px);
        line-height: 1.4;
    }
}

/* Integrated Security Management Section - Reduced Top Margin */
.integrated-security-section {
    margin-top: -110px;
}

@media (max-width: 767px) {
    .integrated-security-section {
        margin-top: -40px;
    }
}

/* Mid-Page CTA */
.mid-page-cta {
    padding: var(--spacing-16) 0;
    background-color: var(--dark-green);
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -100px;
}

.cta-button-large {
    background-color: var(--primary-green);
    color: var(--dark-green);
    border: none;
    border-radius: 16px;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 208, 133, 0.3);
    font-family: 'Satoshi', sans-serif;
    letter-spacing: 0.02em;
    width: 100%;
    max-width: 100%;
}

.cta-button-large:hover {
    background-color: var(--white);
    color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.cta-button-large:active {
    transform: translateY(0);
    box-shadow: 0 6px 24px rgba(0, 208, 133, 0.3);
}

/* Mobile Responsive for Service Page */
@media (max-width: 767px) {
    /* Service Hero Section Mobile Optimizations */
    .service-hero-illustration {
        padding: var(--spacing-4) 0;
        margin-bottom: var(--spacing-6);
    }
    
    .hero-image-box {
        height: 250px;
        border-radius: 12px;
        box-shadow: none;
    }
    
    .service-hero-text-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
        padding: var(--spacing-8) 0;
        text-align: left;
        margin-top: 0;
    }
    
    .service-hero-text-left {
        padding-left: 0;
        order: 1;
    }
    
    .service-hero-text-right {
        padding-right: 0;
        order: 2;
        text-align: left;
    }
    
    .service-hero-title {
        font-size: clamp(28px, 7vw, 42px);
        margin-bottom: var(--spacing-4);
        line-height: 1.2;
        font-weight: 600;
    }
    
    .service-hero-description {
        font-size: clamp(16px, 4vw, 18px);
        max-width: 100%;
        margin-left: 0;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.85);
    }
    
    /* Readiness Section Mobile Optimizations */
    .readiness-section {
        padding: var(--spacing-12) 0;
    }
    
    .readiness-container {
        padding: 0 var(--spacing-4);
    }
    
    .readiness-box {
        padding: var(--spacing-8) var(--spacing-6);
        border-radius: 16px;
        margin: 0;
    }
    
    .readiness-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
        text-align: left;
    }
    
    .readiness-text {
        padding-right: 0;
        order: 2;
    }
    
    .readiness-illustration {
        order: 1;
        margin-bottom: var(--spacing-4);
    }
    
    .readiness-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: var(--spacing-6);
        line-height: 1.2;
        font-weight: 700;
    }
    
    .readiness-description {
        font-size: clamp(15px, 3.5vw, 17px);
        line-height: 1.6;
        margin-bottom: var(--spacing-4);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .readiness-image-box {
        height: 300px;
        border-radius: 16px;
        padding: 0;
    }

    .logistics-page .integrated-security-section .readiness-image-box {
        height: 380px;
    }
    
    /* Business Resilience Section Mobile Optimizations */
    .business-resilience-section {
        padding: var(--spacing-12) 0;
    }
    
    .business-resilience-container {
        padding: 0 var(--spacing-4);
    }
    
    .business-resilience-box {
        padding: var(--spacing-8) var(--spacing-6);
        border-radius: 16px;
        margin-top: -60px;
    }
    
    .business-resilience-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
        text-align: left;
    }
    
    .business-resilience-illustration {
        order: 1;
        margin-bottom: var(--spacing-4);
    }
    
    .business-resilience-text {
        padding-left: 0;
        order: 2;
    }
    
    .business-resilience-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: var(--spacing-6);
        line-height: 1.2;
        font-weight: 700;
    }
    
    .business-resilience-description {
        font-size: clamp(15px, 3.5vw, 17px);
        line-height: 1.6;
        margin-bottom: var(--spacing-4);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .business-resilience-image-box {
        height: 300px;
        border-radius: 16px;
        padding: 0;
    }
    
    /* Mid-Page CTA Mobile Optimizations */
    .mid-page-cta {
        padding: var(--spacing-10) var(--spacing-4);
        margin-top: -40px;
    }
    
    .cta-button-large {
        width: 100%;
        max-width: 320px;
        padding: 16px 28px;
        font-size: 18px;
        border-radius: 12px;
        min-height: 56px;
        font-weight: 600;
        letter-spacing: 0.01em;
    }
    
    /* Enhanced Mobile Touch Targets */
    .btn, .cta-button-large {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Improved Mobile Spacing */
    .container {
        padding: 0 var(--spacing-4);
    }
    
    /* Mobile Typography Enhancements */
    .service-hero-title,
    .readiness-title,
    .business-resilience-title {
        letter-spacing: -0.01em;
    }
    
    /* Mobile Image Optimizations */
    .hero-image,
    .readiness-image,
    .business-resilience-image {
        object-fit: cover;
        object-position: center;
    }
    
    /* Mobile Performance Optimizations */
    .service-hero-illustration,
    .readiness-illustration,
    .business-resilience-illustration {
        will-change: transform;
    }
    
    /* Mobile Accessibility Improvements */
    .service-hero-title:focus,
    .readiness-title:focus,
    .business-resilience-title:focus {
        outline: 2px solid var(--primary-green);
        outline-offset: 4px;
    }
}

/* Extra Small Mobile Screens (320px - 480px) */
@media (max-width: 480px) {
    /* Ultra-compact mobile optimizations */
    .service-hero-illustration {
        padding: var(--spacing-3) 0;
        margin-bottom: var(--spacing-4);
    }
    
    .hero-image-box {
        height: 200px;
        border-radius: 10px;
    }
    
    .service-hero-text-content {
        padding: var(--spacing-6) 0;
        gap: var(--spacing-4);
        text-align: left;
    }
    
    .service-hero-title {
        font-size: clamp(24px, 8vw, 36px);
        margin-bottom: var(--spacing-3);
    }
    
    .service-hero-description {
        font-size: clamp(14px, 4.5vw, 16px);
        line-height: 1.4;
    }
    
    /* Readiness Section Extra Small Mobile */
    .readiness-section {
        padding: var(--spacing-10) 0;
    }
    
    .readiness-box {
        padding: var(--spacing-6) var(--spacing-4);
        border-radius: 12px;
    }
    
    .readiness-title {
        font-size: clamp(20px, 7vw, 32px);
        margin-bottom: var(--spacing-4);
    }
    
    .readiness-description {
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.5;
    }
    
    .readiness-image-box {
        height: 250px;
        border-radius: 12px;
        padding: 0;
    }

    .logistics-page .integrated-security-section .readiness-image-box {
        height: 380px;
    }
    
    /* Business Resilience Extra Small Mobile */
    .business-resilience-section {
        padding: var(--spacing-10) 0;
    }
    
    .business-resilience-box {
        padding: var(--spacing-6) var(--spacing-4);
        border-radius: 12px;
        margin-top: -40px;
    }
    
    .business-resilience-title {
        font-size: clamp(20px, 7vw, 32px);
        margin-bottom: var(--spacing-4);
    }
    
    .business-resilience-description {
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.5;
    }
    
    .business-resilience-image-box {
        height: 250px;
        border-radius: 12px;
        padding: 0;
    }
    
    /* CTA Extra Small Mobile */
    .mid-page-cta {
        padding: var(--spacing-8) var(--spacing-3);
        margin-top: -30px;
    }
    
    .cta-button-large {
        max-width: 280px;
        padding: 14px 24px;
        font-size: 16px;
        min-height: 52px;
    }
    
    /* Container padding for extra small screens */
    .container {
        padding: 0 var(--spacing-3);
    }
    
    /* Footer social links for extra small screens */
    .footer-social {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-link {
        font-size: 10px;
        padding: 3px 5px;
        max-width: 70px;
        min-height: 24px;
    }
    
    /* Testimonial slider for extra small screens */
    .slider-indicator {
        gap: 6px;
    }
    
    .slider-segment {
        width: 30px;
        height: 2px;
    }
    
    .readiness-container,
    .business-resilience-container {
        padding: 0 var(--spacing-3);
    }
}

/* Tablet Responsive for Service Page */
@media (min-width: 768px) and (max-width: 1023px) {
    .service-hero-text-content {
        gap: var(--spacing-12);
    }
    
    .service-hero-title {
        font-size: clamp(40px, 6vw, 60px);
    }
    
    .service-hero-description {
        font-size: clamp(18px, 2.5vw, 22px);
    }
    
    .boat-illustration-hero {
        max-width: 1000px;
    }
    
    .readiness-content {
        gap: var(--spacing-12);
    }
    
    .readiness-title {
        font-size: clamp(32px, 5vw, 48px);
    }
    
    .readiness-description {
        font-size: clamp(16px, 2vw, 18px);
    }
    
    .business-resilience-content {
        gap: var(--spacing-12);
    }
    
    .business-resilience-title {
        font-size: clamp(32px, 5vw, 48px);
    }
    
    .business-resilience-description {
        font-size: clamp(16px, 2vw, 18px);
    }
    
    .boat-illustration {
        max-width: 400px;
    }
}
