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

:root {
    /* Color Palette - Enhanced based on Elementor's 7 rules */
    --primary-color: #F97316;        /* Orange - Energy, enthusiasm */
    --secondary-color: #8B5CF6;      /* Purple - Creativity, luxury */
    --accent-color: #3B82F6;         /* Blue - Trust, reliability */
    --success-color: #10B981;        /* Green - Growth, success */
    --warning-color: #F59E0B;        /* Amber - Caution, attention */
    --error-color: #EF4444;          /* Red - Urgency, action */
    
    /* Neutral Colors - Rule 7: Embrace Neutral Colors */
    --dark-bg: #1F2937;              /* Dark gray - Professional */
    --darker-bg: #111827;            /* Darker gray - Depth */
    --card-bg: #374151;              /* Medium gray - Cards */
    --light-bg: #F9FAFB;             /* Light gray - Contrast */
    
    /* Text Colors with Better Hierarchy */
    --text-primary: #F9FAFB;         /* High contrast white */
    --text-secondary: #E5E7EB;       /* Medium contrast */
    --text-muted: #9CA3AF;           /* Low contrast */
    --text-dark: #1F2937;            /* Dark text for light backgrounds */
    
    /* Border and UI Elements */
    --border-color: #4B5563;         /* Subtle borders */
    --border-light: #E5E7EB;         /* Light borders */
    --border-accent: #F97316;        /* Accent borders */
    
    /* Enhanced Gradients - Rule 2: Better Color Combinations */
    --gradient-primary: linear-gradient(135deg, #F97316, #8B5CF6);
    --gradient-secondary: linear-gradient(135deg, #3B82F6, #10B981);
    --gradient-accent: linear-gradient(135deg, #F97316, #EF4444);
    --gradient-success: linear-gradient(135deg, #10B981, #3B82F6);
    --gradient-warm: linear-gradient(135deg, #F97316, #F59E0B);
    --gradient-cool: linear-gradient(135deg, #3B82F6, #8B5CF6);
    
    /* Typography */
    --font-primary: 'tradegothic_ltregular', 'Inter', sans-serif;
    --font-display: 'tradegothic_ltregular', 'Orbitron', monospace;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --max-width: 1200px;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation - Enhanced with neutral tones */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(156, 163, 175, 0.02) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--secondary-color);
}

/* Layout */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    min-height: 70px;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1005;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
    gap: 0.75rem;
}

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

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.logo-link:hover .logo-img {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-suffix {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px; /* Account for fixed header */
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    filter: grayscale(30%) contrast(1.1);
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.8) 0%, 
        rgba(17, 24, 39, 0.9) 50%, 
        rgba(55, 65, 81, 0.7) 100%);
    z-index: 2;
}

/* All sections need top padding to account for fixed header */
.section {
    padding-top: 140px; /* Further increased padding to clear fixed header */
}

/* First section after hero needs less padding */
.section:first-of-type {
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: heroBackground 15s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-attribution {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.image-attribution p {
    margin: 0;
    font-size: 0.6rem;
    color: var(--text-muted);
    line-height: 1.1;
}

.image-attribution a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.image-attribution a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleFlyIn 1.5s ease-out forwards, titleGlow 3s ease-in-out infinite 1.5s;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.3); /* Enhanced hierarchy */
    opacity: 0;
    transform: translateY(80px) scale(0.8);
}

/* Hero title fly-in animation */
@keyframes heroTitleFlyIn {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8);
    }
    60% {
        opacity: 0.9;
        transform: translateY(-15px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: heroSubtitleFlyIn 1.2s ease-out forwards;
    animation-delay: 0.8s;
}

.hero-strapline {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    font-style: italic;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: heroStraplineFlyIn 1.2s ease-out forwards;
    animation-delay: 1.1s;
}

/* Hero subtitle and strapline animations */
@keyframes heroSubtitleFlyIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroStraplineFlyIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #EA580C, #7C3AED); /* Darker on hover */
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Animation properties */
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: titleFlyIn 1.2s ease-out forwards;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

/* Ensure titles remain visible after animation */
.section-title.animated {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Title fly-in animation */
@keyframes titleFlyIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ensure section titles are always visible after animation */
.section-title {
    animation-fill-mode: both !important;
}

/* Fallback for titles that might not animate properly */
.section-title:not([style*="opacity"]) {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Staggered animation for multiple titles */
.section-title:nth-child(1) { animation-delay: 0.3s; }
.section-title:nth-child(2) { animation-delay: 0.6s; }
.section-title:nth-child(3) { animation-delay: 0.9s; }
.section-title:nth-child(4) { animation-delay: 1.2s; }

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Indicators - Using Blue for Trust (Rule 3: Color Psychology) */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid var(--accent-color); /* Blue border for trust */
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1); /* Blue glow */
}

.trust-item {
    text-align: center;
    padding: 1rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.trust-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    min-height: 3rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure Font Awesome icons are visible */
.card-icon i {
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: var(--primary-color) !important;
    font-size: 3rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Debug: Make sure icons are visible with fallback content */
.card-icon i.fa-target::before {
    content: "\f3c1" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.card-icon i.fa-shield-check::before {
    content: "\f3ed" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.card-icon i.fa-rocket::before {
    content: "\f135" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.card-icon i.fa-handshake::before {
    content: "\f2b5" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.card-icon i.fa-eye::before {
    content: "\f06e" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.card-icon i.fa-heart::before {
    content: "\f004" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.card-icon i.fa-palette::before {
    content: "\f53f" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.card-icon i.fa-certificate::before {
    content: "\f0a3" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.card-icon i.fa-chart-line::before {
    content: "\f201" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.card-icon i.fa-trophy::before {
    content: "\f091" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}


.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

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

.author-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.site-footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.footer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Semantic Color Usage - Rule 3: Color Psychology */
.success-message {
    background: var(--success-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    border-left: 4px solid var(--success-color);
}

.warning-message {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    border-left: 4px solid var(--warning-color);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    border-left: 4px solid var(--error-color);
}

/* Enhanced Card States */
.card.success {
    border-left: 4px solid var(--success-color);
}

.card.warning {
    border-left: 4px solid var(--warning-color);
}

.card.info {
    border-left: 4px solid var(--accent-color);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px; /* Position below the header */
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        border-top: 1px solid var(--border-color);
        padding: 2rem 0;
        transform: translateY(-100%);
        transition: var(--transition-normal);
        z-index: 1001;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        border-radius: 10px;
        transition: var(--transition-fast);
    }
    
    .nav-link:hover {
        background: var(--card-bg);
        color: var(--primary-color);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1004;
        position: relative;
        background: var(--primary-color);
        border-radius: 5px;
        padding: 8px;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mobile logo adjustments */
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-suffix {
        font-size: 0.9rem;
    }
    
    /* Mobile navigation improvements */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-strapline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .section {
        padding: 60px 0;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Extra small mobile logo */
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-suffix {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-strapline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .image-attribution {
        bottom: 8px;
        right: 8px;
        padding: 3px 6px;
    }
    
    .image-attribution p {
        font-size: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-top: 1rem;
    }
    
    /* Adjust section padding for mobile */
    .section {
        padding-top: 120px;
    }
    
    /* Mobile trust indicators */
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    
    /* Mobile testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Mobile cards */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}

/* Touch-friendly improvements for mobile devices */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    button {
        min-height: 44px;
        min-width: 44px;
    }
    
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Improve logo touch target */
    .logo-link {
        padding: 0.5rem;
        min-height: 60px;
    }
    
    /* Improve navigation touch targets */
    .nav-link {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Improve card touch targets */
    .card {
        min-height: 120px;
    }
    
    /* Improve CTA button touch targets */
    .btn {
        min-height: 48px;
        padding: 1rem 2rem;
    }
    
    /* Improve mobile menu touch targets */
    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
        padding: 0.5rem;
    }
    
    /* Extra small mobile section adjustments */
    .section {
        padding-top: 110px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Service Cards with Background Images */
.service-card {
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
}

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

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    filter: grayscale(50%) contrast(1.2);
    transition: var(--transition-normal);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.8) 0%, 
        rgba(17, 24, 39, 0.9) 50%, 
        rgba(55, 65, 81, 0.7) 100%);
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover .card-bg-image {
    opacity: 0.4;
    transform: scale(1.05);
}

.service-card:hover .card-overlay {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.7) 0%, 
        rgba(17, 24, 39, 0.8) 50%, 
        rgba(55, 65, 81, 0.6) 100%);
}

/* Footer Image Attribution */
.image-attribution-footer {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.image-attribution-footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.image-attribution-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.image-attribution-footer ul li {
    margin-bottom: 0.2rem;
}

.image-attribution-footer strong {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .image-attribution-footer {
        font-size: 0.65rem;
    }
    
    .image-attribution-footer ul {
        font-size: 0.6rem;
    }
}
