/* MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
  html, body { 
    width: 100%; 
    max-width: 100%;
    min-height: 100dvh;
    height: auto;
    position: static;
    -webkit-overflow-scrolling: touch !important;
    touch-action: manipulation !important;
    overscroll-behavior-x: auto !important;
    overscroll-behavior-y: auto !important;
    overflow-x: auto !important;
    overflow-y: auto !important;
  }
  
  * { 
    box-sizing: border-box; 
  }
  
  /* Ograniczaj szerokość tylko dla elementów tekstowych i mediów, nie dla wszystkich */
  img, video, canvas, svg, iframe {
    max-width: 100%; 
    height: auto;
  }
  
  /* Disable particles on mobile */
  .particles-background {
    display: none;
  }
  
  /* Ensure hero is scrollable */
  .hero {
    min-height: 60vh !important;
    height: auto !important;
    overflow: visible !important;
    position: relative !important;
    padding: 40px 0;
  }
  .hero .container {
    overflow: visible !important;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 20px;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
    /* max-width removed - was blocking horizontal scroll */
  }

  /* Header: logo bardziej widoczne na mobile */
  .logo { height: 36px; }
  .logo-image { height: 36px; transform: scale(2.5); transform-origin: left center; }
  
  /* Top header mobile layout */
  .top-header {
    display: flex !important;
    background: var(--dark-navy);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    will-change: transform;
  }
  .top-header-content {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .opening-hours {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .contact-info-top {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-link-top {
    font-size: 11px;
    padding: 2px 0;
    white-space: nowrap;
  }

  /* Dotykowe pola – zapobiega auto-zoom i poprawia UX */
  input, select, textarea { font-size: 16px; }
  input[type="range"] { height: 28px; }

  /* CTA bardziej przyjazne na małych ekranach */
  .cta-button { width: 100%; text-align: center; }

  /* Sekcje z dużymi obrazami – pełne kadrowanie i czytelność */
  .section-with-image .section-image-overlay {
    opacity: 0.3;
    background-position: center center;
    background-size: cover;
  }

  /* DISABLE ALL ANIMATIONS AND TRANSITIONS ON MOBILE TO PREVENT SCROLL BLOCKING */
  * {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    will-change: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -moz-backdrop-filter: none !important;
    touch-action: pan-x pan-y !important;
    transform: none !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
  }

  /* Keep only essential transforms for logo */
  .logo-image {
    transform: scale(2.5) !important;
    transform-origin: left center !important;
  }

  /* Disable sticky positioning on mobile */
  .top-header, header {
    position: static !important;
  }

  /* Force smooth scrolling behavior */
  html, body {
    overscroll-behavior: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: auto !important;
    pointer-events: auto !important;
  }
}

/* Mobile scroll fix - removed problematic overflow restrictions */

/* Global Styles & Branding - Enhanced Design System */
:root {
    /* Harmonized Brand Color Palette */
    /* Primary Gold - Brand Color */
    --primary-gold: #D4AF37;
    --primary-gold-light: #E6C85C;
    --primary-gold-dark: #B8941F;
    --primary-gold-10: rgba(212, 175, 55, 0.1);
    --primary-gold-20: rgba(212, 175, 55, 0.2);
    --primary-gold-30: rgba(212, 175, 55, 0.3);
    --primary-gold-50: rgba(212, 175, 55, 0.5);
    
    /* Navy Palette - Primary Background */
    --dark-navy: #0D1B2A;
    --dark-navy-95: rgba(13, 27, 42, 0.95);
    --dark-navy-90: rgba(13, 27, 42, 0.9);
    --dark-navy-80: rgba(13, 27, 42, 0.8);
    --dark-navy-60: rgba(13, 27, 42, 0.6);
    --medium-navy: #1A3A52;
    --light-navy: #22354D;
    
    /* White Palette - Text & UI */
    --white: #FFFFFF;
    --white-95: rgba(255, 255, 255, 0.95);
    --white-90: rgba(255, 255, 255, 0.9);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    
    /* Functional Colors - Use Sparingly */
    --success: #27AE60;
    --success-light: #58D68D;
    --error: #E74C3C;
    --error-light: #EC7063;
    --warning: #F39C12;
    --warning-light: #F7DC6F;
    --info: #3498DB;
    --info-light: #5DADE2;
    
    /* Enhanced Typography System */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-accent: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-weight-thin: 100;
    --font-weight-light: 200;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Unified Spacing System - 8px Grid */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
    --space-4xl: 96px;
    --space-section: 80px;
    --gutter: 32px;
    
    /* Layout System */
    --container-max-width: 1200px;
    --container-padding: var(--gutter);
    --section-padding: var(--space-section);
    --component-spacing: var(--space-lg);
    --element-spacing: var(--space-md);
    --text-spacing: var(--space-sm);
    
    /* Unified Border Radius System */
    --border-radius-xs: 4px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-2xl: 32px;
    --border-radius-full: 9999px;
    
    /* Component System */
    --component-radius: var(--border-radius-md);
    --button-radius: var(--border-radius-sm);
    --card-radius: var(--border-radius-lg);
    --input-radius: var(--border-radius-sm);
    
    /* Unified Shadow System */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.35);
    
    /* Component Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-button-hover: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
    --shadow-gold-hover: 0 8px 32px rgba(212, 175, 55, 0.3);
    
    /* Unified Transition System */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Component Transitions */
    --transition-button: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-card: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-input: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-link: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Enhanced Z-Index System */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

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

html {
    /* Avoid global smooth behavior to prevent iOS scroll stalls */
    scroll-behavior: auto;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
    overscroll-behavior-x: auto;
    overscroll-behavior-y: auto;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    background-color: var(--dark-navy);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: auto;
    overflow-y: auto;
    font-feature-settings: 'cv11', 'ss01', 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    /* Avoid global smooth behavior to prevent iOS scroll stalls */
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: auto;
    overscroll-behavior-y: auto;
    touch-action: manipulation;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for WebKit browsers */
body::-webkit-scrollbar {
    display: none;
}

/* Unified Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'cv11', 'ss01', 'liga' 1;
}

h1 { 
    font-size: clamp(2.8rem, 6vw, 5rem); 
    font-weight: var(--font-weight-light); 
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2 { 
    font-size: clamp(2.2rem, 4.5vw, 3.5rem); 
    font-weight: var(--font-weight-light); 
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

h3 { 
    font-size: clamp(1.6rem, 3.5vw, 2.2rem); 
    font-weight: var(--font-weight-regular); 
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
    letter-spacing: 0;
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.01em;
}

h6 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
}

p {
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'cv11', 'ss01', 'liga' 1;
}

/* Typography Scale for Body Text */
.text-small {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.text-large {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.text-lead {
    font-size: 20px;
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0;
}

/* Unified Icon System */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-link);
}

.icon-small {
    width: 16px;
    height: 16px;
    font-size: 14px;
}

.icon-medium {
    width: 24px;
    height: 24px;
    font-size: 18px;
}

.icon-large {
    width: 32px;
    height: 32px;
    font-size: 24px;
}

.icon-xl {
    width: 48px;
    height: 48px;
    font-size: 32px;
}

.icon-gold {
    color: var(--primary-gold);
}

.icon-white {
    color: var(--white);
}

.icon-muted {
    color: var(--white-60);
}

/* Smooth Section Breathing - Optimized */
section:not(.hero) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

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

/* Fallback: upewnij się, że sekcje na podstronach są widoczne nawet jeśli JS nie doda klasy */
body.subpage section { opacity: 1; transform: none; }

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

/* Cursor removed for better UX */

/* Premium Particle Background */
/* Particle background: fixed on desktop, absolute on mobile to avoid scroll issues */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

@media (max-width: 768px) {
  .particles-background { display: none !important; }
  
  /* FORCE MOBILE SCROLL - OVERRIDE EVERYTHING - POPRAWIONE DLA POZIOMEGO */
  body, html {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto !important;
    overflow-y: auto !important;
    touch-action: manipulation !important;
    overscroll-behavior-x: auto !important;
    overscroll-behavior-y: auto !important;
  }
  
  /* Kill any fixed positioning that might interfere */
  .gdpr-modal, .cookie-modal, #cookieConsentModal, #gdprInfoModal {
    position: absolute !important;
    top: 0 !important;
  }
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s infinite linear;
}

.particle:nth-child(2n) {
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    animation-duration: 12s;
}

.particle:nth-child(3n) {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    animation-duration: 15s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Design System - Consolidated */
:root {
    /* Enhanced Color System */
    --primary-navy: #0D1B2A;
    --primary-navy-light: #142C44;
    --primary-navy-dark: #0A141F;
    --accent-white: #FFFFFF;
    --accent-white-90: rgba(255, 255, 255, 0.9);
    --accent-white-80: rgba(255, 255, 255, 0.8);
    --accent-white-60: rgba(255, 255, 255, 0.6);
    --accent-white-40: rgba(255, 255, 255, 0.4);
    --accent-white-20: rgba(255, 255, 255, 0.2);
    --accent-white-10: rgba(255, 255, 255, 0.1);
    --accent-white-05: rgba(255, 255, 255, 0.05);
    
    /* Enhanced Typography */
    --font-display: 'Playfair Display', Georgia, serif;
}

/* Unified Layout System */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--component-spacing);
}

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

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

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

/* Flexbox Utilities */
.flex {
    display: flex;
}

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

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

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

/* Enhanced Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.2;
    color: var(--accent-white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.8rem, 6vw, 5rem); 
    font-weight: var(--font-weight-light); 
    line-height: 1.1;
    letter-spacing: -0.03em;
}
h2 { 
    font-size: clamp(2.2rem, 4.5vw, 3.5rem); 
    font-weight: var(--font-weight-light); 
    line-height: 1.15;
}
h3 { 
    font-size: clamp(1.6rem, 3.5vw, 2.2rem); 
    font-weight: var(--font-weight-regular); 
    line-height: 1.3;
}

p {
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: var(--accent-white-80);
    font-size: 16px;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.01em;
}

/* Top Header */
.top-header {
    background: var(--dark-navy);
    border-bottom: 1px solid var(--primary-gold-20);
    padding: 4px 0;
    font-size: 12px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

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

.top-header-left {
    display: flex;
    align-items: center;
}

.contact-info-top {
    display: flex;
    gap: var(--space-lg);
}

.contact-link-top {
    color: var(--white-80);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition-link);
    font-size: 13px;
}

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

.contact-link-top i {
    font-size: 12px;
    color: var(--primary-gold);
}

.opening-hours {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white-80);
    font-size: 13px;
}

.opening-hours i {
    color: var(--primary-gold);
    font-size: 12px;
}

/* Enhanced Header Styles with Better Performance */
header {
    background: var(--dark-navy-95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    will-change: transform, backdrop-filter;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Enhanced Logo Design with Better Performance */
.logo {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: var(--transition-slow);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    text-transform: uppercase;
    will-change: transform;
    height: 50px; /* keep header height stable, slightly bigger */
}

/* Make the logo image visually 2x larger without changing header height */
.logo-image {
    display: block;
    height: 58px;
    width: auto;
    transform: scale(2);
    transform-origin: left center;
    background: transparent;
}

/* Remove hover effects – keep the same look on hover */
.logo:hover .logo-image {
    transform: scale(2);
    filter: none;
    box-shadow: none;
}

/* Mobile logo settings are now at the top of the file */
/* Footer logo sizing */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.footer-logo-image {
    height: 56px;
    width: auto;
    filter: none;
}
.footer-logo-large { height: 140px; }

@media (max-width: 768px) {
  .footer-logo-large { height: 110px; }
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    will-change: transform, box-shadow;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--dark-navy);
    z-index: 2;
    position: relative;
}

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

.logo-main {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-gold);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.logo-sub {
    font-size: 9px;
    font-weight: var(--font-weight-regular);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

.logo:hover .logo-icon {
    box-shadow: var(--shadow-gold-hover);
    transform: scale(1.05);
}

.logo:hover .logo-icon::before {
    transform: translateX(100%);
}

.logo:hover .logo-main {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.logo:hover .logo-sub {
    color: rgba(255, 255, 255, 0.9);
}

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



.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* Nowa nawigacja HTML */
.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-light);
    font-size: 13px;
    letter-spacing: 1px;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--button-radius);
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    display: block;
}

/* Zachowaj kolor linków po odwiedzeniu, by nie rozjaśniały się domyślnie */
.nav-link:visited {
    color: var(--white);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtelniejszy hover – złote podświetlenie zamiast bieli */
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.10) 100%);
    border-radius: var(--button-radius);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    letter-spacing: 1.2px;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    font-weight: var(--font-weight-regular);
    /* Aktywny stan – delikatne złote tło zamiast białego */
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    box-shadow: inset 0 1px 2px var(--white-10), var(--shadow-sm);
}

/* Dostępność: wyraźny focus, bez bielenia */
.nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5);
}

/* Kliknięcie – bez dodatkowego rozjaśnienia */
.nav-link:active {
    transform: translateY(-1px);
    text-shadow: none;
}

.contact-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    gap: var(--space-xl);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.8px;
    margin-bottom: var(--space-xs);
}

.contact-info a {
    color: var(--white-80);
    text-decoration: none;
    transition: var(--transition-link);
    position: relative;
    font-weight: var(--font-weight-regular);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.contact-info a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, rgba(212, 175, 55, 0.5) 100%);
    transition: width var(--transition-normal);
}

.contact-info a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.contact-info a:hover::before {
    width: 100%;
}



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

/* Enhanced Hero Section - Base styles for all pages */
.hero {
    background: 
        linear-gradient(135deg, 
            rgba(13, 27, 42, 0.9) 0%, 
            rgba(26, 35, 50, 0.85) 25%,
            rgba(15, 26, 42, 0.9) 50%,
            rgba(10, 22, 32, 0.95) 100%);
    padding: calc(var(--space-section) * 2) 0 calc(var(--space-section) * 2.5) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

/* Hero background image only for main page */
body:not(.subpage) .hero {
    background: 
        linear-gradient(135deg, 
            rgba(13, 27, 42, 0.9) 0%, 
            rgba(26, 35, 50, 0.85) 25%,
            rgba(15, 26, 42, 0.9) 50%,
            rgba(10, 22, 32, 0.95) 100%),
        url('zdjecia_szymon/podpis.jpg') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.4) 100%);
    opacity: 0.8;
    will-change: opacity;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    will-change: opacity;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.5s ease-out forwards;
    will-change: transform, opacity;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: var(--font-weight-light);
    margin-bottom: calc(var(--space-2xl) * 1.0);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    max-width: none;
    white-space: nowrap;
    text-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.5),
        0 12px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    will-change: transform;
}

/* Typewriter effect (more natural) */
.typewriter {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    /* max-width removed - was blocking horizontal scroll */
}

/* caret removed for more natural typing */

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

/* Unified Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border: 2px solid transparent;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: var(--button-radius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-button);
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-button);
    will-change: transform, box-shadow, background;
    min-height: 48px;
    min-width: 120px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Button Variants */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--dark-navy);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-button);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-button);
}

/* Button Sizes */
.btn-large {
    padding: var(--space-lg) var(--space-xl);
    font-size: 18px;
    min-height: 56px;
    min-width: 200px;
    letter-spacing: 1px;
}

.btn-small {
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
    min-height: 36px;
    min-width: 80px;
}

/* Button States */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn:focus {
    outline: none;
    box-shadow: 
        var(--shadow-button),
        0 0 0 3px rgba(212, 175, 55, 0.3);
}

.btn:active {
    transform: translateY(-1px);
    transition: var(--transition-fast);
}

/* Legacy CTA Button - Maintained for compatibility */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--dark-navy);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 18px;
    letter-spacing: 1px;
    border-radius: var(--button-radius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-button);
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-gold);
    will-change: transform, box-shadow, background;
    min-height: 56px;
    min-width: 200px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
}

.cta-button::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 ease;
    will-change: transform;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-navy);
    border-color: #FFFFFF;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        var(--shadow-xl),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    letter-spacing: 1.5px;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:focus {
    outline: none;
    box-shadow: 
        var(--shadow-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 3px rgba(212, 175, 55, 0.3);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.01);
    transition: var(--transition-fast);
}

/* Enhanced Secondary Buttons */
.qualify-button, .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--dark-navy-90);
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
    min-height: 44px;
    min-width: 120px;
    user-select: none;
}

.qualify-button:hover, .submit-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    background: var(--dark-navy-95);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.8px;
}

.qualify-button:focus, .submit-button:focus {
    outline: none;
    box-shadow: 
        var(--shadow-sm),
        0 0 0 3px rgba(212, 175, 55, 0.3);
}

.qualify-button:active, .submit-button:active {
    transform: translateY(-1px);
    transition: var(--transition-fast);
}

.qualify-button, .submit-button {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid var(--accent-white-20);
    background: rgba(13, 27, 42, 0.9);
    color: var(--accent-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.qualify-button:hover, .submit-button:hover {
    transform: translateY(-2px);
    border-color: var(--accent-white-40);
    background: rgba(13, 27, 42, 0.95);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.8px;
}

/* Ripple Effect */
.cta-button::after, .qualify-button::after, .submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:active::after, .qualify-button:active::after, .submit-button:active::after {
    width: 300px;
    height: 300px;
}

/* Smooth Section Transition */
.section-transition {
    height: 120px;
    background: linear-gradient(180deg, 
        #142C44 0%, 
        rgba(13, 27, 42, 0.9) 20%, 
        rgba(13, 27, 42, 0.7) 40%, 
        rgba(13, 27, 42, 0.5) 60%, 
        rgba(13, 27, 42, 0.3) 80%, 
        var(--dark-navy) 100%);
    position: relative;
    z-index: 1;
}

/* Interactive Credit Calculator */
.calculator-section {
    padding: calc(var(--space-section) * 1.2) 0 calc(var(--space-section) * 1.5) 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--medium-navy) 50%, var(--dark-navy) 100%);
    position: relative;
    overflow: hidden;
    margin-top: -60px;
    padding-top: calc(var(--space-section) * 1.2 + 60px);
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    opacity: 0.8;
}

.calculator-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.calculator-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.calculator-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.calculator-type {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    grid-column: 1 / -1;
}

.type-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--white-15);
    border-radius: var(--component-radius);
    background: var(--white-05);
    backdrop-filter: blur(10px);
    transition: var(--transition-card);
    position: relative;
    overflow: hidden;
}

.type-option:hover {
    border-color: var(--white-20);
    background: var(--white-10);
    transform: translateY(-2px);
}

.type-option input[type="radio"] {
    display: none;
}

.type-option input[type="radio"]:checked + .type-label {
    color: var(--white);
    font-weight: var(--font-weight-medium);
}

.type-label {
    color: var(--white-80);
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    transition: var(--transition-link);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calculator-inputs {
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    border-radius: var(--component-radius);
    border: 1px solid var(--white-10);
    box-shadow: var(--shadow-card);
}

.input-group {
    margin-bottom: var(--space-lg);
}

.input-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: var(--space-sm);
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.input-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.input-value {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(212, 175, 55, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.result-card {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-gold);
    color: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(30px, -30px);
}

.result-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 27, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-navy);
}

.result-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--dark-navy);
}

.result-amount {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--dark-navy);
    font-family: var(--font-accent);
}

.result-details {
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: var(--space-lg);
    border-radius: var(--component-radius);
    border: 1px solid var(--white-10);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--white-05);
}

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

.detail-label {
    font-size: 15px;
    color: var(--white-60);
    font-weight: 300;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
}

.calculator-cta {
    text-align: center;
}

.calculator-apply {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 20px 40px;
    font-size: 16px;
    margin-bottom: var(--space-md);
}

.calculator-disclaimer {
    font-size: 12px;
    color: var(--white-60);
    font-style: italic;
    line-height: 1.4;
    max-width: none;
}

/* Responsive Calculator */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .calculator-type {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .type-option {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .calculator-inputs {
        padding: var(--space-lg);
    }
    
    .result-card {
        padding: var(--space-lg);
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Floating Section Dividers */
.floating-divider {
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--white-05) 30%, 
        var(--primary-gold-10) 50%, 
        var(--white-05) 70%, 
        transparent 100%);
    overflow: hidden;
}

.floating-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-gold-20) 20%, 
        var(--primary-gold-30) 50%, 
        var(--primary-gold-20) 80%, 
        transparent 100%);
    transform: translateY(-50%);
}

.floating-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

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

/* Premium Section Dividers */
.section-divider {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.section-divider::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-divider-diamond {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transform: rotate(45deg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

/* Geometric Background Elements */
.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.geometric-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.geometric-bg::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -5%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transform: rotate(45deg);
    animation: rotate 25s linear infinite reverse;
}

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

/* Premium Statistics Section */
.stats-section {
    padding: calc(var(--space-section) * 1.2) 0 calc(var(--space-section) * 1.5) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(13, 27, 42, 0.98) 20%, 
        rgba(15, 30, 47, 0.95) 50%, 
        rgba(13, 27, 42, 0.98) 80%, 
        var(--dark-navy) 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(13, 27, 42, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: var(--component-radius);
    transition: var(--transition-card);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white-05), transparent);
    transition: left 0.8s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--white-20);
    box-shadow: var(--shadow-hover);
    background: rgba(13, 27, 42, 0.6);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-icon {
    font-size: 32px;
    color: var(--white-80);
    margin-bottom: var(--space-md);
    transition: var(--transition-card);
}

.stat-item:hover .stat-icon {
    color: var(--white);
    transform: scale(1.1);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--white-60);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Enhanced Featured Services */
.featured-services {
    padding: calc(var(--space-section) * 2) 0;
    background: linear-gradient(180deg, 
        var(--primary-navy) 0%, 
        var(--primary-navy-dark) 25%, 
        #0F1E2F 50%, 
        var(--primary-navy-dark) 75%, 
        var(--primary-navy) 100%);
    position: relative;
    overflow: hidden;
}

/* Premium Properties Section */
.premium-properties {
    padding: calc(var(--space-section) * 2) 0;
    background: linear-gradient(180deg, 
        var(--primary-navy) 0%, 
        var(--primary-navy-dark) 25%, 
        #0F1E2F 50%, 
        var(--primary-navy-dark) 75%, 
        var(--primary-navy) 100%);
    position: relative;
    overflow: hidden;
}

.premium-properties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, var(--accent-white-05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, var(--accent-white-03) 0%, transparent 50%);
    opacity: 0.8;
}

.properties-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    position: relative;
    z-index: 2;
}

.properties-intro h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-light);
    margin-bottom: var(--space-lg);
    color: var(--accent-white);
    line-height: 1.2;
}

.properties-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--accent-white-80);
    font-weight: var(--font-weight-light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.property-card {
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: calc(var(--space-xl) * 1.2) var(--space-lg);
    text-align: center;
    border: 1px solid var(--accent-white-10);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.property-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-white-25);
    box-shadow: var(--shadow-xl);
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(25px);
}

.property-icon {
    font-size: 48px;
    margin-bottom: var(--space-lg);
    color: var(--accent-white);
    transition: var(--transition-slow);
    opacity: 0.95;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--accent-white-05);
    border: 1px solid var(--accent-white-10);
    border-radius: 50%;
    backdrop-filter: blur(15px);
}

.property-card:hover .property-icon {
    transform: scale(1.15) rotateY(360deg);
    opacity: 1;
    background: var(--accent-white-10);
    border-color: var(--accent-white-20);
    box-shadow: var(--shadow-md);
}

.property-card h3 {
    font-size: 22px;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    color: var(--accent-white);
    letter-spacing: -0.01em;
}

.property-card p {
    font-size: 16px;
    margin-bottom: var(--space-lg);
    color: var(--accent-white-80);
    line-height: 1.6;
    max-width: none;
    font-weight: var(--font-weight-light);
}

.properties-cta {
    text-align: center;
    margin-top: calc(var(--space-2xl) * 1.5);
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: var(--space-2xl);
    border: 1px solid var(--accent-white-10);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.cta-content h3 {
    font-size: 28px;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-md);
    color: var(--accent-white);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: var(--space-xl);
    color: var(--accent-white-80);
    line-height: 1.6;
}

/* Investment Process Section */
.investment-process {
    padding: calc(var(--space-section) * 2) 0;
    background: linear-gradient(180deg, 
        var(--primary-navy-dark) 0%, 
        var(--primary-navy) 50%, 
        var(--primary-navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.investment-process h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-light);
    margin-bottom: calc(var(--space-2xl) * 1.5);
    color: var(--accent-white);
    line-height: 1.2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-step {
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--accent-white-10);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--accent-white-20);
    box-shadow: var(--shadow-lg);
    background: rgba(13, 27, 42, 0.9);
}

.step-number {
    font-size: 48px;
    font-weight: var(--font-weight-light);
    color: var(--accent-white-60);
    margin-bottom: var(--space-md);
    line-height: 1;
    font-family: var(--font-display);
}

.process-step h3 {
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-md);
    color: var(--accent-white);
    line-height: 1.3;
}

.process-step p {
    font-size: 16px;
    color: var(--accent-white-80);
    line-height: 1.6;
    font-weight: var(--font-weight-light);
}

.featured-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, var(--accent-white-05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, var(--accent-white-03) 0%, transparent 50%);
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Unified Card System */
.card {
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    border: 1px solid var(--white-10);
    border-radius: var(--card-radius);
    transition: var(--transition-card);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.card-hover {
    transition: var(--transition-card);
}

.card-hover:hover {
    transform: translateY(-4px);
    border-color: var(--white-20);
    box-shadow: var(--shadow-hover);
    background: rgba(13, 27, 42, 0.9);
}

/* Card Variants */
.card-elevated {
    box-shadow: var(--shadow-lg);
}

.card-interactive {
    cursor: pointer;
    transition: var(--transition-card);
}

.card-interactive:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* Legacy Service Card - Maintained for compatibility */
.service-card {
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: calc(var(--space-xl) * 1.2) var(--space-lg);
    text-align: center;
    border: 1px solid var(--white-10);
    border-radius: var(--card-radius);
    transition: var(--transition-card);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--white-20);
    box-shadow: var(--shadow-hover);
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(25px);
}

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

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    border-radius: var(--border-radius-md);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

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

.service-icon {
    font-size: 36px;
    margin-bottom: var(--space-lg);
    color: var(--white);
    transition: var(--transition-card);
    opacity: 0.95;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    margin: 0 auto var(--space-lg);
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    backdrop-filter: blur(15px);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
    opacity: 1;
    background: var(--white-10);
    border-color: var(--white-20);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    color: var(--accent-white);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 16px;
    margin-bottom: var(--space-lg);
    color: var(--accent-white-80);
    line-height: 1.6;
    max-width: none;
    font-weight: var(--font-weight-light);
}

.service-link, .service-more {
    color: var(--white-80);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    font-size: 15px;
    letter-spacing: 0.8px;
    position: relative;
    transition: var(--transition-link);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    border: 1px solid var(--white-15);
    padding: 12px 20px;
    border-radius: var(--button-radius);
    background: var(--white-05);
    backdrop-filter: blur(10px);
}

.service-link::after, .service-more::after {
    content: '→';
    font-size: 12px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.service-link:hover, .service-more:hover {
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--white-30);
    background: var(--white-10);
    box-shadow: var(--shadow-button-hover);
}

.service-link:hover::after, .service-more:hover::after {
    transform: translateX(2px);
    opacity: 1;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--medium-navy) 30%, #0F2A3F 70%, #142C44 100%);
    padding: calc(var(--space-section) * 1.5) 0 calc(var(--space-section) * 1.8) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    opacity: 0.8;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story Section */
.company-story {
    padding: calc(var(--space-section) * 1.4) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(15, 30, 47, 0.8) 50%, 
        var(--dark-navy) 100%);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.story-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    font-weight: 300;
    max-width: none;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
}

.story-stat {
    text-align: center;
    padding: var(--space-md) 0;
}

.story-stat .stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-accent);
    margin-bottom: var(--space-xs);
}

.story-stat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mission & Values Section */
.mission-values {
    padding: calc(var(--space-section) * 1.5) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(34, 53, 77, 0.6) 50%, 
        var(--dark-navy) 100%);
    position: relative;
}

.mission-values h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-2xl);
    text-align: center;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(15px);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
    background: rgba(13, 27, 42, 0.85);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 24px;
    color: var(--dark-navy);
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: none;
    margin: 0;
}

/* Team Section Enhanced */
/* Values Section */
.values-section {
    padding: calc(var(--space-section) * 1.2) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(26, 58, 82, 0.8) 20%, 
        rgba(34, 53, 77, 0.9) 50%, 
        rgba(26, 58, 82, 0.8) 80%, 
        var(--dark-navy) 100%);
    position: relative;
}

.values-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-xl);
    text-align: center;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: var(--component-radius);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-card);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    border-color: var(--primary-gold-20);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-gold-10), transparent);
    transition: left 0.6s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-gold);
}

.value-icon i {
    font-size: 24px;
    color: var(--dark-navy);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-gold);
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--white-80);
    font-weight: 300;
}

.team-section {
    padding: calc(var(--space-section) * 1.5) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(15, 30, 47, 0.9) 50%, 
        var(--dark-navy) 100%);
    position: relative;
}

.team-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-lg);
    text-align: center;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.team-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(15px);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.team-member:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
    background: rgba(13, 27, 42, 0.85);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 32px;
    color: var(--dark-navy);
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
}

.team-member:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.team-member h3 {
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: var(--space-xs);
}

.team-role {
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.team-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
}

.team-expertise span {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: calc(var(--space-section) * 1.6) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(34, 53, 77, 0.8) 25%, 
        var(--light-navy) 50%, 
        rgba(34, 53, 77, 0.8) 75%, 
        var(--dark-navy) 100%);
    position: relative;
}

.why-choose-us h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-2xl);
    text-align: center;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(15px);
    padding: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
    background: rgba(13, 27, 42, 0.85);
}

.benefit-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin: 0;
    max-width: none;
}

/* About Section Legacy (for compatibility) */
.about-section {
    padding: calc(var(--space-section) * 0.8) 0;
    background-color: var(--dark-navy);
}

/* Mission Statement */
.mission-statement {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl) 0;
}

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

.mission-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary-gold);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.mission-text {
    text-align: center;
}

.mission-text p {
    margin-left: auto;
    margin-right: auto;
}

.mission-text .text-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--white-90);
    margin-bottom: var(--space-lg);
    font-weight: var(--font-weight-regular);
}

.mission-text p:last-child {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-80);
}

.about-section h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: #FFFFFF;
}

.company-description {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
}

.company-description p {
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.team-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
    padding: var(--space-md);
}

.team-member:hover {
    transform: translateY(-2px);
}

.team-avatar {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    font-size: 24px;
    transition: all 0.3s ease;
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.8);
}

.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    background: rgba(13, 27, 42, 0.8);
    color: #FFFFFF;
}

.team-member h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #FFFFFF;
    letter-spacing: 0.3px;
}

.team-member p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.4;
}

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--medium-navy) 30%, #0F2A3F 70%, #142C44 100%);
    padding: calc(var(--space-section) * 1.5) 0 calc(var(--space-section) * 1.8) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    opacity: 0.8;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.services-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Services Categories */
.services-categories {
    padding: calc(var(--space-section) * 1.4) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(15, 30, 47, 0.8) 50%, 
        var(--dark-navy) 100%);
    position: relative;
}

.services-categories h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-2xl);
    text-align: center;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(15px);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
    background: rgba(13, 27, 42, 0.85);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 28px;
    color: var(--dark-navy);
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.category-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
}

.category-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    font-weight: 300;
    max-width: none;
}

.category-features {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.category-features span {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Detailed Services */
.detailed-services {
    padding: calc(var(--space-section) * 1.5) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(34, 53, 77, 0.6) 50%, 
        var(--dark-navy) 100%);
    position: relative;
}

.detailed-services h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-2xl);
    text-align: center;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.tab-button {
    background: rgba(13, 27, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-button:hover,
.tab-button.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--dark-navy);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-detail-card {
    background: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(15px);
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-xl);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
    background: rgba(13, 27, 42, 0.85);
}

.service-detail-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 24px;
    color: var(--dark-navy);
    box-shadow: var(--shadow-gold);
}

.service-detail-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.service-params {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-lg);
    border-radius: var(--border-radius-sm);
}

.param {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.param-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.param-value {
    font-size: 16px;
    color: var(--primary-gold);
    font-weight: 600;
}

.service-detail-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    font-weight: 300;
    max-width: none;
}

.service-benefits {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.service-benefits li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--dark-navy);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

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

/* Process Steps */
.services-process {
    padding: calc(var(--space-section) * 1.5) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(15, 30, 47, 0.9) 50%, 
        var(--dark-navy) 100%);
    position: relative;
}

.services-process h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-2xl);
    text-align: center;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 250px;
    background: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(15px);
    padding: var(--space-xl);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

/* Fix horizontal scroll issue on mobile */
@media (max-width: 480px) {
    .process-step {
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        flex: none;
        margin: 0 auto;
    }
    .process-steps {
        flex-direction: column;
        gap: var(--space-lg);
        padding: 0 20px;
    }
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-gold);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin: 0;
    max-width: none;
}

.process-arrow {
    color: var(--primary-gold);
    font-size: 24px;
    flex-shrink: 0;
}

/* Services Section Legacy */
.services-section {
    padding: var(--space-section) 0;
    background-color: var(--dark-navy);
}

.services-section h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: #FFFFFF;
}

.services-section .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.expandable .service-expanded {
    display: none;
    margin-top: 32px;
    padding: 32px 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px);
}

.expandable.expanded .service-expanded {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-expanded p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.qualify-button {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.qualify-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%);
    color: #0D1B2A;
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.qualify-button:hover::before {
    left: 100%;
}

/* FAQ Section */
.faq-section {
    padding: calc(var(--space-section) * 1.5) 0 calc(var(--space-section) * 1.8) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(34, 53, 77, 0.8) 20%, 
        var(--light-navy) 50%, 
        rgba(34, 53, 77, 0.8) 80%, 
        var(--dark-navy) 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.01) 0%, transparent 60%);
    opacity: 0.8;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.faq-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.faq-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: var(--component-radius);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    transition: var(--transition-card);
    box-shadow: var(--shadow-card);
}

.faq-item:hover {
    border-color: var(--primary-gold-20);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-gold-30);
    background: rgba(13, 27, 42, 0.8);
}

.faq-question {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-gold-10), transparent);
    transition: left 0.6s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    flex-grow: 1;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: var(--space-sm);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.faq-toggle i {
    font-size: 14px;
    color: var(--dark-navy);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    background: var(--white-05);
    border-top: 1px solid var(--white-05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: var(--space-md) var(--space-lg);
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* FAQ Animation Effects */
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: var(--space-md) var(--space-lg);
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        margin-left: var(--space-sm);
    }
    
    .faq-toggle i {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: var(--space-md) var(--space-lg);
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

/* Responsive Floating Dividers */
@media (max-width: 768px) {
    .floating-divider {
        height: 100px;
    }
    
    .floating-divider::after {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .floating-divider {
        height: 80px;
    }
}

/* ---------- Subpage polish (About, Services, Contact) ---------- */
/* More compact hero for subpages */
body.subpage .hero {
    min-height: 50vh;
    padding: calc(var(--space-section) * 1.1) 0 calc(var(--space-section) * 1.2) 0;
}

/* Shared cards look */
body.subpage .card-surface,
body.subpage .service-card,
body.subpage .value-card,
body.subpage .team-member,
body.subpage .contact-form,
body.subpage .company-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* About */
body.subpage .about-section { padding: var(--space-section) 0; }
body.subpage .mission-statement .mission-content { max-width: 900px; margin: 0 auto; }
body.subpage .mission-statement .mission-text { font-size: 16px; color: var(--white-80); }

/* Values */
body.subpage .values-section { padding: calc(var(--space-section) * 1.2) 0; }
body.subpage .values-section .values-grid { gap: var(--space-lg); }
body.subpage .values-section .value-card { padding: var(--space-xl); }
/* Stronger, more expressive icons on subpages */
body.subpage .values-section .value-icon {
    width: 80px;
    height: 80px;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45), inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}
body.subpage .values-section .value-icon i {
    font-size: 32px;
    color: var(--dark-navy);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Team */
body.subpage .team-section { padding: calc(var(--space-section) * 1.2) 0; }
body.subpage .team-section .team-grid { gap: var(--space-xl); }
body.subpage .team-section .team-member { padding: var(--space-xl); text-align: center; }
body.subpage .team-section .team-avatar { 
    width: 64px; height: 64px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(212, 175, 55, 0.12); color: var(--primary-gold);
    margin-bottom: var(--space-md);
}

/* Services */
body.subpage .services-section { padding: var(--space-section) 0; }
body.subpage .services-section .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }
body.subpage .service-card { padding: var(--space-xl); transition: transform .3s ease, box-shadow .3s ease; }
body.subpage .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,.28); }
body.subpage .service-card .service-icon { 
    width: 48px; height: 48px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(212,175,55,.15); color: var(--primary-gold);
    margin-bottom: var(--space-md);
}
body.subpage .service-card h3 { margin-bottom: var(--space-sm); }
body.subpage .service-card p { color: var(--white-80); }
body.subpage .service-card .service-more { color: var(--primary-gold); }

/* Contact */
body.subpage .contact-section { padding: var(--space-section) 0; }
body.subpage .contact-content { gap: var(--space-xl); grid-template-columns: 1.2fr .8fr; }
body.subpage .contact-form, body.subpage .company-info { padding: var(--space-xl); }
body.subpage .company-info h3 { margin-top: 0; }

@media (max-width: 1024px) {
    body.subpage .contact-content { grid-template-columns: 1fr; }
}

/* Legal Documents Styles */
.legal-hero, .legal-content {
    /* Force visibility even if global section fade-in didn't run */
    opacity: 1 !important;
    transform: none !important;
}
.legal-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--medium-navy) 30%, #0F2A3F 70%, #142C44 100%);
    padding: calc(var(--space-section) * 1.5) 0 calc(var(--space-section) * 1.8) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    opacity: 0.8;
}

.legal-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.legal-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.update-date {
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 500;
    margin-top: var(--space-sm);
}

.legal-content {
    padding: calc(var(--space-section) * 1.5) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(15, 30, 47, 0.3) 50%, 
        var(--dark-navy) 100%);
    position: relative;
    min-height: 800px;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
}

.legal-document h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--primary-gold);
    margin: var(--space-2xl) 0 var(--space-lg) 0;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-section {
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.legal-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-md);
    font-weight: 300;
    max-width: none;
    line-height: 1.7;
}

.legal-section ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.legal-section li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
    font-weight: 300;
    line-height: 1.6;
    padding-left: var(--space-sm);
}

.legal-section strong {
    color: #FFFFFF;
    font-weight: 500;
}

.company-box,
.authority-box,
.contact-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius-sm);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.company-box p,
.authority-box p,
.contact-box p {
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.data-category {
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-sm);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-category h4 {
    font-size: 16px;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.data-category ul {
    margin: 0;
    padding-left: var(--space-lg);
}

.data-category li {
    font-size: 14px;
    margin-bottom: var(--space-xs);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.right-item {
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-sm);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.right-item h4 {
    font-size: 16px;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.right-item p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.rights-note {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-sm);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    text-align: center;
    font-weight: 400;
}

.signature-section {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.signature-section p {
    margin-bottom: var(--space-xs);
    font-size: 14px;
}

.legal-document a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-document a:hover {
    color: var(--primary-gold-light);
    text-decoration: underline;
}

/* Responsive Legal Documents */
@media (max-width: 768px) {
    .legal-document {
        padding: var(--space-xl);
        margin: 0 var(--space-md);
    }
    
    .legal-document h2 {
        font-size: 1.3rem;
    }
    
    .data-categories,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-section ul {
        padding-left: var(--space-lg);
    }
}

/* Section Headers */
.about-section h1,
.services-section h1,
.contact-section h1 {
    font-size: 56px;
    font-weight: 200;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-section h1::after,
.services-section h1::after,
.contact-section h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--medium-navy) 30%, #0F2A3F 70%, #142C44 100%);
    padding: calc(var(--space-section) * 1.5) 0 calc(var(--space-section) * 1.8) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    opacity: 0.8;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Methods */
.contact-methods {
    padding: calc(var(--space-section) * 1.4) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(15, 30, 47, 0.8) 50%, 
        var(--dark-navy) 100%);
    position: relative;
}

.contact-methods h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-2xl);
    text-align: center;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

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

.contact-method {
    background: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(15px);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.contact-method:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
    background: rgba(13, 27, 42, 0.85);
}

.method-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 28px;
    color: var(--dark-navy);
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.contact-method h3 {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
}

.contact-method p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    font-weight: 300;
    max-width: none;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-gold-light);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.availability {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Contact Main Section */
.contact-main {
    padding: calc(var(--space-section) * 1.5) 0;
    background: linear-gradient(180deg, 
        var(--dark-navy) 0%, 
        rgba(34, 53, 77, 0.6) 50%, 
        var(--dark-navy) 100%);
    position: relative;
}

.contact-form-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.form-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    font-weight: 300;
    max-width: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.checkbox-group {
    margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
    margin-right: var(--space-sm);
    transform: scale(1.2);
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: none;
}

.checkbox-label a:hover {
    color: var(--primary-gold-light);
    text-decoration: underline;
}

/* Company Info Enhanced */
.company-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.company-info {
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(15px);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.company-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.info-group {
    margin-bottom: var(--space-xl);
}

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

.info-group h4 {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-details p,
.company-numbers p,
.working-hours p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.company-details i {
    width: 16px;
    text-align: center;
    color: var(--primary-gold);
}

.company-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-details a:hover {
    color: var(--primary-gold);
}

.emergency-note {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-sm);
    padding: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 13px;
    color: var(--primary-gold);
}

/* Contact CTA */
.contact-cta {
    padding: calc(var(--space-section) * 1.5) 0;
    background: linear-gradient(135deg, 
        var(--dark-navy) 0%, 
        var(--medium-navy) 50%, 
        var(--dark-navy) 100%);
    position: relative;
    text-align: center;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.contact-cta p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    font-weight: 300;
    max-width: none;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--dark-navy);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(13, 27, 42, 0.6);
    color: #FFFFFF;
    padding: var(--space-lg) var(--space-2xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Contact Section Legacy */
.contact-section {
    padding: 140px 0 160px;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Section */
.contact-section {
    padding: var(--space-section) 0;
    background-color: #0D1B2A;
}

.contact-section h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(15px);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Unified Form System */
.form-group {
    position: relative;
    margin-bottom: var(--element-spacing);
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-sm);
    padding-top: calc(var(--space-md) + 8px);
    border: 1px solid var(--white-20);
    background: rgba(13, 27, 42, 0.6);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    font-size: 16px;
    border-radius: var(--input-radius);
    transition: var(--transition-input);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    will-change: border-color, box-shadow;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md) var(--space-sm);
    padding-top: calc(var(--space-md) + 8px);
    border: 1px solid var(--white-20);
    background: rgba(13, 27, 42, 0.6);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    font-size: 16px;
    border-radius: var(--input-radius);
    transition: var(--transition-input);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    will-change: border-color, box-shadow;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 
        var(--shadow-card),
        0 0 0 3px var(--primary-gold-20);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error);
    box-shadow: 
        var(--shadow-card),
        0 0 0 3px rgba(231, 76, 60, 0.2);
}

.form-group label {
    position: absolute;
    top: var(--space-md);
    left: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: var(--font-weight-light);
    transition: all var(--transition-normal);
    pointer-events: none;
    background: rgba(13, 27, 42, 0.9);
    padding: 0 4px;
    border-radius: var(--border-radius-xs);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: var(--primary-gold);
    font-weight: var(--font-weight-medium);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group select option {
    background-color: var(--dark-navy);
    color: #FFFFFF;
    padding: var(--space-sm);
}

.form-group select optgroup {
    background: var(--dark-navy);
    color: var(--primary-gold);
    font-weight: var(--font-weight-semibold);
    padding: var(--space-sm);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group select optgroup option {
    background: var(--dark-navy);
    color: var(--white);
    font-weight: var(--font-weight-regular);
    text-transform: none;
    letter-spacing: normal;
    padding: var(--space-sm) var(--space-md);
}

/* Unified Status Messages */
.status-message {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    margin-top: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-xs);
    animation: fadeIn 0.3s ease;
    border: 1px solid;
}

.status-error {
    color: var(--error-light);
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.2);
}

.status-success {
    color: var(--success-light);
    background: rgba(39, 174, 96, 0.1);
    border-color: rgba(39, 174, 96, 0.2);
}

.status-warning {
    color: var(--warning-light);
    background: rgba(243, 156, 18, 0.1);
    border-color: rgba(243, 156, 18, 0.2);
}

.status-info {
    color: var(--info-light);
    background: rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.2);
}

/* Legacy Field Error - Maintained for compatibility */
.field-error {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    margin-top: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-xs);
    animation: fadeIn 0.3s ease;
    border: 1px solid;
    color: var(--error-light);
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.2);
}

/* Form Status Styles */
.form-status {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    min-height: 20px;
    animation: slideInUp 0.3s ease;
}

.form-status.success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    color: var(--success-light);
}

.form-status.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: var(--error-light);
}

/* Unified Micro-interactions */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Elegant Image Integration for Sections */
.section-with-image {
    position: relative;
    overflow: hidden;
}

.section-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.section-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(13, 27, 42, 0.6) 0%, 
        rgba(13, 27, 42, 0.4) 30%,
        rgba(13, 27, 42, 0.3) 70%,
        rgba(13, 27, 42, 0.5) 100%);
    z-index: 2;
}

/* Images only for main page (index.html) */
body:not(.subpage) .calculator-section.section-with-image .section-image-overlay {
    background-image: url('zdjecia_szymon/kalkulator.jpg');
}

body:not(.subpage) .featured-services.section-with-image .section-image-overlay {
    background-image: url('zdjecia_szymon/finanse.jpg');
}

body:not(.subpage) .stats-section.section-with-image .section-image-overlay {
    background-image: url('zdjecia_szymon/zaufanie.jpg');
}

body:not(.subpage) .faq-section.section-with-image .section-image-overlay {
    background-image: url('zdjecia_szymon/FAQ.jpg');
}

/* About page backgrounds */
body.subpage .about-section.section-with-image .section-image-overlay {
    background-image: url('../zdjecia_szymon/naszewartosci.jpg');
}

body.subpage .values-section.section-with-image .section-image-overlay {
    background-image: url('../zdjecia_szymon/naszamisja.jpg');
}

/* team-section removed on About page */

/* About page stats section background */
body.subpage .stats-section.section-with-image .section-image-overlay {
    background-image: url('../zdjecia_szymon/kafelkiz.jpg');
}

/* Ensure content is above overlay */
.section-with-image .container {
    position: relative;
    z-index: 3;
}

/* Hover effects for sections with images */
.section-with-image:hover .section-image-overlay {
    opacity: 0.25;
}

.section-with-image:hover .section-image-overlay::before {
    background: linear-gradient(90deg, rgba(13, 27, 42, 0.4) 0%, transparent 60%);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    /* Duplicate mobile styles removed - using simplified version above */
    
    /* Kill particles on tablets too */
    .particles-background {
      display: none !important;
    }
    
    /* Force hero to be reasonable */
    .hero { min-height: 60vh !important; height: auto !important; }
    
    /* Ensure body has content to scroll */
    body { min-height: 100dvh !important; }
    
    .section-image-overlay { left: 0; right: 0; width: 100%; opacity: 0.25; background-attachment: scroll; background-position: center center; background-size: cover; }
    
    .section-image-overlay::before {
        background: linear-gradient(135deg, 
            rgba(13, 27, 42, 0.45) 0%,
            rgba(13, 27, 42, 0.35) 50%,
            rgba(13, 27, 42, 0.45) 100%);
    }
}

/* Mobile menu */
.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.menu-toggle:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
.menu-toggle .bar {
  position: absolute;
  left: 10px;
  right: 10px;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.3s ease;
}
.menu-toggle .bar:nth-child(1) { top: 11px; }
.menu-toggle .bar:nth-child(2) { top: 17px; }
.menu-toggle .bar:nth-child(3) { top: 23px; }

/* Creative morph to X */
.menu-toggle.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 768px) {
  .menu-toggle { display: inline-block; }
  header { position: sticky; top: 0; z-index: 100000; background: var(--dark-navy-95); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .top-header { 
    display: flex !important; 
    padding: 8px 0;
    font-size: 12px;
    background: var(--dark-navy);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .top-header-content {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .top-header-left {
    width: 100%;
    justify-content: center;
  }
  .top-header-right {
    width: 100%;
    justify-content: center;
  }
  .contact-info-top {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-link-top {
    font-size: 11px;
    padding: 2px 0;
    white-space: nowrap;
  }
  .opening-hours {
    font-size: 11px;
    margin-top: 4px;
  }
  .header-content { padding: 8px 16px; }
  .header-right { gap: 8px; }
  /* Simple full-screen mobile menu */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    /* Avoid horizontal overflow from 100vw on mobile due to scrollbars */
    width: 100%;
    /* Use dynamic viewport height to avoid iOS address bar resize issues */
    height: 100dvh;
    background: rgba(13,27,42,0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(var(--header-h, 56px) + 20px) 20px 20px 20px;
    z-index: 100001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto; /* ensure internal scroll if needed */
  }
  
  /* Ensure body can still scroll when menu is open */
  body.nav-open {
    overflow: auto !important;
    position: static !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: manipulation !important;
  }
  .nav-list { 
    flex-direction: column; 
    gap: 20px; 
    margin: 0;
    text-align: center;
  }
  .nav-link { 
    display: block; 
    padding: 16px 24px; 
    border-radius: 12px; 
    color: #E5E7EB; 
    background: rgba(255,255,255,0.05);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .nav-link:hover { 
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
  }
  /* Close button for mobile menu */
  .mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .mobile-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
  }
  body.nav-open { 
    /* Nie blokuj scroll na desktop */
    overflow: auto;
  }
  

  

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 30px;
  }
}

/* Mobile overlay for nav - REMOVED - using simple full-screen menu instead */

/* Close button inside mobile menu - REMOVED - using toggle button instead */



  @keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes for Animations */
.animate-slide-in-up {
    animation: slideInUp 0.3s ease;
}

.animate-slide-in-down {
    animation: slideInDown 0.3s ease;
}

.animate-slide-in-left {
    animation: slideInLeft 0.3s ease;
}

.animate-slide-in-right {
    animation: slideInRight 0.3s ease;
}

.animate-fade-in {
    animation: fadeIn 0.3s ease;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease;
}

.animate-bounce-in {
    animation: bounceIn 0.6s ease;
}

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

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-full { border-radius: var(--border-radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.bg-transparent { background: transparent; }
.bg-navy { background: var(--dark-navy); }
.bg-gold { background: var(--primary-gold); }
.bg-white { background: var(--white); }

.text-white { color: var(--white); }
.text-gold { color: var(--primary-gold); }
.text-muted { color: var(--white-60); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.text-warning { color: var(--warning); }
.text-info { color: var(--info); }

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

/* Enhanced Checkbox Styles */
.checkbox-group {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
    accent-color: var(--primary-gold);
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    user-select: none;
    flex: 1;
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-normal);
}

.checkbox-label a:hover {
    color: var(--primary-gold-light);
    text-decoration: underline;
}

/* Enhanced Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.submit-button {
    padding: 20px 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    color: #0D1B2A;
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.submit-button:hover::before {
    left: 100%;
}

.company-info {
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(15px);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    height: fit-content;
}

.company-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.3px;
    color: #FFFFFF;
}

.info-section {
    margin-bottom: var(--space-lg);
}

.company-details {
    margin-bottom: var(--space-lg);
}

.company-details p {
    margin-bottom: var(--space-sm);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    padding: 4px 0;
}

.company-details p:hover {
    color: #FFFFFF;
    transform: translateX(2px);
}

.company-details i {
    width: 16px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.company-numbers {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(13, 27, 42, 0.4);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.company-numbers p {
    margin-bottom: var(--space-xs);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.map-container {
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
    background: linear-gradient(135deg, 
        #0A1620 0%, 
        #1a2a3a 25%,
        #0d1b26 50%,
        #0A1620 100%);
    padding: calc(var(--space-section) * 1.5) 0 var(--space-lg);
    border-top: 2px solid var(--primary-gold);
    margin-top: var(--space-section);
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    min-height: 250px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

/* Global responsive media - consolidated above in mobile section */

/* Ensure background images scale nicely */
.section-with-image .section-image-overlay {
    background-size: cover;
    background-position: center;
}

/* Mobile/parallax safety for iOS and low-power devices */
@media (max-width: 1024px) {
    .section-with-image .section-image-overlay {
        background-attachment: scroll;
    }
}

/* Container padding and hero sizing on small screens */
@media (max-width: 768px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
    .hero-content { padding: 48px 0; }
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 40% at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.8;
}

footer.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
    align-items: start;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-separator {
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--primary-gold-20) 20%, 
        var(--primary-gold-30) 50%, 
        var(--primary-gold-20) 80%, 
        transparent 100%);
    justify-self: center;
    position: relative;
}

.footer-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, rgba(212, 175, 55, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-logo-icon i {
    font-size: 20px;
    color: var(--dark-navy);
}

.footer-logo-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--primary-gold);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.footer-subtitle {
    font-size: 13px;
    color: var(--white-60);
    font-weight: 300;
    margin: 0;
}

.company-details {
    margin-top: var(--space-lg);
}

.company-details p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 13px;
    color: var(--white-80);
}

.company-details i {
    color: var(--primary-gold);
    width: 16px;
    font-size: 12px;
}

/* Footer Section Headers */
.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.5px;
    color: var(--primary-gold);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    position: relative;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-section h3 i {
    font-size: 16px;
    color: var(--primary-gold);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, transparent 100%);
    border-radius: 1px;
}

/* Contact Section */
.contact-details {
    margin-bottom: var(--space-lg);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 13px;
    color: var(--white-80);
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white-80);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details i {
    color: var(--primary-gold);
    width: 16px;
    font-size: 12px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold-30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

/* General Footer Section Styles */
.footer-section p,
.footer-section a {
    color: var(--white-80);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 300;
    transition: all 0.3s ease;
    margin-bottom: var(--space-xs);
}

.footer-company-info p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 13px;
    color: var(--white-80);
}

.footer-company-info i {
    color: var(--primary-gold);
    width: 16px;
    font-size: 12px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 13px;
    color: var(--white-80);
}

.footer-contact-info a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white-80);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-gold);
}

.footer-contact-info i {
    color: var(--primary-gold);
    width: 16px;
    font-size: 12px;
}

.footer-section a {
    position: relative;
    padding: 2px 0;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, rgba(212, 175, 55, 0.6) 100%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-section a:hover {
    color: var(--primary-gold);
    transform: translateX(6px);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-nav a i {
    color: var(--primary-gold);
    width: 16px;
    font-size: 12px;
}

.footer-nav a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold-30);
    color: var(--primary-gold);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--primary-gold-20);
    font-size: 13px;
    color: var(--white-60);
    position: relative;
    z-index: 2;
    font-weight: 300;
    background: transparent;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.footer-bottom-content {
    margin-bottom: var(--space-md);
}

.footer-copyright {
    margin-bottom: var(--space-md);
}

.footer-copyright p:first-child {
    font-weight: var(--font-weight-medium);
    color: var(--white-80);
    margin-bottom: var(--space-xs);
}

.footer-tagline {
    color: var(--primary-gold);
    font-size: 13px;
    font-style: italic;
}

.footer-bottom-content p:first-child {
    font-weight: var(--font-weight-medium);
    color: var(--white-80);
    margin-bottom: var(--space-xs);
}

.footer-bottom-content p:last-child {
    color: var(--primary-gold);
    font-size: 13px;
}

.footer-bottom-legal {
    border-top: 1px solid var(--white-05);
    padding-top: var(--space-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gdpr-notice {
    font-size: 12px;
    color: var(--white-60);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.gdpr-notice i {
    color: var(--primary-gold);
    font-size: 11px;
}

.gdpr-notice a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-link);
}

.gdpr-notice a:hover {
    color: var(--white);
    text-decoration: underline;
}

.legal-title {
    color: var(--white-70);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
    text-align: center;
}

/* Copyright Section - bez tła, typowe położenie */
.copyright-section {
    background: transparent;
    padding: var(--space-lg) 0;
    text-align: center;
    border-top: 1px solid var(--white-10);
    margin-top: 0;
}

.copyright-section p {
    color: var(--white-60);
    font-size: 13px;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.footer-copyright-centered {
    margin-top: var(--space-md);
    color: var(--white-60);
    font-size: 13px;
    text-align: center;
}

/* Enhanced Responsive Design with Better Mobile Optimization */
@media (max-width: 1024px) {
    :root {
        --gutter: 24px;
        --space-section: 60px;
    }
    
    .container {
        padding: 0 var(--gutter);
    }
    
    .hero-content h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --space-section: 50px;
        --gutter: 20px;
    }
    
    .container {
        padding: 0 var(--gutter);
    }
    
    /* Top Header Mobile */
    .top-header {
        padding: var(--space-xs) 0;
    }
    
    .contact-info-top {
        gap: var(--space-sm);
    }
    
    .contact-link-top {
        font-size: 11px;
    }
    
    .opening-hours {
        font-size: 11px;
    }
    
    /* Enhanced Mobile Header */
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: var(--space-sm);
        padding: var(--space-sm) 0;
    }
    
    .header-right {
        width: auto;
        align-items: center;
        position: static;
    }
    
    /* Mobile nawigacja */
    /* remove legacy toggle here; side drawer variant above controls visibility */
    .main-nav { display: block; }
    

    
    .contact-info {
        flex-direction: column;
        gap: var(--space-xs);
        font-size: 12px;
        margin-bottom: var(--space-sm);
    }
    
    /* Enhanced Mobile Hero */
    .hero {
        padding: calc(var(--space-section) * 1.2) 0 calc(var(--space-section) * 1.5) 0;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
        margin-bottom: var(--space-xl);
        line-height: 1.2;
    }
    
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    /* Enhanced Mobile CTA */
    .cta-button {
        padding: var(--space-md) var(--space-lg);
        font-size: 16px;
        min-width: 180px;
        min-height: 48px;
    }
    
    /* Enhanced Mobile Services */
    .featured-services {
        padding: var(--space-section) 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: var(--space-lg) var(--space-md);
    }
    
    /* Enhanced Mobile Calculator */
    .calculator-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .calculator-type {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .type-option {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .calculator-inputs {
        padding: var(--space-lg);
    }
    
/* Enhanced Mobile Stats */
    .stats-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    
    .stat-item {
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    /* Enhanced Mobile FAQ */
    .faq-question {
        padding: var(--space-md) var(--space-lg);
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        margin-left: var(--space-sm);
    }
    
    .faq-item.active .faq-answer {
        padding: var(--space-md) var(--space-lg);
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    /* Enhanced Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: var(--space-lg);
    }
    
    .footer-company-info,
    .footer-contact-info {
        text-align: center;
    }
    
    .footer-company-info p,
    .footer-contact-info p {
        justify-content: center;
    }
    
    .footer-separator {
        display: none;
    }
    
    footer {
        padding: var(--space-section) 0 var(--space-lg);
        margin-top: var(--space-section);
    }
    
    .copyright-section {
        padding: var(--space-md) 0;
    }
    
    .copyright-section p {
        font-size: 12px;
    }
    
    /* Enhanced Mobile Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-form,
    .company-info {
        padding: var(--space-lg) var(--space-md);
        border-radius: var(--border-radius-md);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--space-md) var(--space-sm);
        border-radius: var(--border-radius-sm);
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-button {
        padding: var(--space-md) var(--space-lg);
        border-radius: var(--border-radius-sm);
        font-size: 16px;
        width: 100%;
    }
    
    /* Enhanced Mobile Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    /* Enhanced Mobile Floating Dividers */
    .floating-divider {
        height: 100px;
    }
    
    .floating-divider::after {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-section: 40px;
        --gutter: 16px;
    }
    
    .container {
        padding: 0 var(--gutter);
    }
    
    /* Enhanced Small Mobile Hero */
    .hero {
        padding: calc(var(--space-section) * 1.1) 0 calc(var(--space-section) * 1.3) 0;
        min-height: 65vh;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.3;
    }
    
    .hero-content {
        padding: 0 var(--space-sm);
    }
    
    /* Enhanced Small Mobile CTA */
    .cta-button {
        padding: var(--space-sm) var(--space-md);
        font-size: 15px;
        min-width: 160px;
        min-height: 44px;
    }
    
    /* Enhanced Small Mobile Services */
    .featured-services {
        padding: var(--space-section) 0;
    }
    
    .service-card {
        padding: var(--space-md) var(--space-sm);
    }
    
    .service-icon {
        font-size: 48px;
        width: 60px;
        height: 60px;
    }
    
    /* Enhanced Small Mobile Calculator */
    .calculator-inputs {
        padding: var(--space-md);
    }
    
    .result-card {
        padding: var(--space-md);
    }
    
    .result-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Enhanced Small Mobile Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .stat-item {
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    /* Enhanced Small Mobile Contact */
    .contact-form,
    .company-info {
        padding: var(--space-md) var(--space-sm);
        border-radius: var(--border-radius-sm);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--space-sm) var(--space-xs);
        border-radius: var(--border-radius-xs);
        font-size: 16px;
    }
    
    .submit-button {
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--border-radius-xs);
        font-size: 15px;
    }
    
    /* Enhanced Small Mobile Footer */
    footer {
        padding: var(--space-lg) 0 var(--space-md);
        margin-top: var(--space-lg);
    }
    
    /* Enhanced Small Mobile Floating Dividers */
    .floating-divider {
        height: 80px;
    }
    
    .floating-divider::after {
        width: 4px;
        height: 4px;
    }
    
    /* Performance optimizations for small screens */
.particles-background {
    display: none;
}

.geometric-bg::before,
.geometric-bg::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-2px);
}

/* Disable premium effects on small mobile for better performance */
body {
    cursor: auto;
}

.custom-cursor {
    display: none;
}

/* Enhanced Performance Optimizations */
@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;
    }
}

/* Print styles for better accessibility */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .floating-divider,
    .particles-background,
    .mobile-menu-toggle,
    .cta-button {
        display: none !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
    
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #FFD700;
        --dark-navy: #000000;
    }
    
    .service-card,
    .stat-item,
    .faq-item {
        border: 2px solid #FFFFFF;
    }
    
    .cta-button {
        border: 3px solid #FFFFFF;
        background: #000000;
        color: #FFFFFF;
    }
}

/* Focus visible for better accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-gold);
    color: var(--dark-navy);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: var(--font-weight-medium);
}

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

/* Enhanced loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-gold);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@media (max-width: 480px) {
    :root {
        --space-section: 50px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: calc(var(--space-section) * 1.1) 0 calc(var(--space-section) * 1.3) 0;
        min-height: 65vh;
    }
    
    .hero-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .featured-services {
        padding: 80px 0 100px;
    }
    
    .service-card {
        padding: 40px 24px;
    }
    
    .service-icon {
        font-size: 56px;
    }
    
    .about-section h1,
    .services-section h1,
    .contact-section h1 {
        font-size: 36px;
    }
    
    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form,
    .company-info {
        padding: 32px 24px;
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 15px;
    }
    
    .submit-button {
        padding: 16px 32px;
        border-radius: 8px;
        font-size: 14px;
    }
    
    .expandable .service-expanded {
        padding: 24px 20px;
        border-radius: 12px;
        margin-top: 24px;
    }
    
    .about-section,
    .services-section,
    .contact-section {
        padding: 60px 0;
    }
    
    footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }
    
    /* Disable premium effects on mobile for performance */
    body {
        cursor: auto;
    }
    
    .custom-cursor {
        display: none;
    }
    
    .particles-background {
        display: none;
    }
    
    .geometric-bg::before,
    .geometric-bg::after { display: none; }
    
    /* Force single-column stats on mobile */
    .stats-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    
    .stat-item {
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .service-card:hover {
        transform: translateY(-4px);
    }
}

/* Premium Consolidation Banner Styles */
.consolidation-banner-premium {
    position: relative;
    background: linear-gradient(145deg, 
        var(--dark-navy) 0%,
        var(--medium-navy) 50%,
        var(--dark-navy) 100%);
    border-radius: 24px;
    padding: 0;
    margin-bottom: 60px;
    box-shadow: 
        0 25px 80px rgba(13, 27, 42, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.banner-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-gold), 
        var(--primary-gold-light), 
        var(--primary-gold), 
        var(--primary-gold-dark));
    border-radius: 26px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.banner-content-premium {
    position: relative;
    padding: 50px 40px;
    color: var(--white);
}

/* Header Section */
.banner-header {
    text-align: center;
    margin-bottom: 40px;
}

.banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.banner-icon i {
    font-size: 36px;
    color: var(--dark-navy);
}

.banner-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-highlight {
    display: block;
    font-size: 24px;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 2px;
}

.title-main {
    display: block;
    font-size: 36px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white-90);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.banner-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold-30);
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold-20), var(--primary-gold-10));
    border-radius: 12px;
    margin-bottom: 16px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-gold);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.feature-content p {
    font-size: 14px;
    color: var(--white-80);
    line-height: 1.5;
    margin: 0;
}

/* DELIKATNA NAPRAWKA SCROLLOWANIA MOBILE - POPRAWIONA DLA POZIOMEGO */
@media (max-width: 768px) {
  /* Upewnij się że podstawowe scrollowanie działa W OBIE STRONY */
  html {
    overflow-x: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: manipulation !important;
    overscroll-behavior-x: auto !important;
    overscroll-behavior-y: auto !important;
  }
  
  body {
    overflow-x: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: manipulation !important;
    overscroll-behavior-x: auto !important;
    overscroll-behavior-y: auto !important;
  }
  
  /* Gdy menu jest otwarte - nadal pozwól na scroll W OBIE STRONY */
  body.nav-open {
    overflow-x: auto !important;
    overflow-y: auto !important;
    touch-action: manipulation !important;
    position: static !important;
  }
}

/* Requirements Section */
.banner-requirements-premium {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
}

.requirements-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.requirements-header i {
    font-size: 24px;
    color: var(--primary-gold);
}

.requirements-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-gold);
    margin: 0;
    letter-spacing: 1px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.requirement-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.requirement-card i {
    font-size: 20px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.requirement-card span {
    font-size: 14px;
    color: var(--white-90);
    line-height: 1.4;
}

/* CTA Section */
.banner-cta-premium {
    text-align: center;
}

.consolidation-button-premium {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    color: var(--dark-navy);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.consolidation-button-premium::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 ease;
}

.consolidation-button-premium:hover::before {
    left: 100%;
}

.consolidation-button-premium:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(13, 27, 42, 0.2);
    border-radius: 50%;
}

.button-icon i {
    font-size: 18px;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.button-text strong {
    font-size: 16px;
    line-height: 1;
}

.button-text small {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.banner-footer-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white-80);
    margin: 0;
    font-style: italic;
}

.banner-footer-premium i {
    color: var(--primary-gold);
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .consolidation-banner-premium {
        margin-bottom: 40px;
        border-radius: 20px;
    }
    
    .banner-content-premium {
        padding: 32px 24px;
    }
    
    .banner-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .banner-icon i {
        font-size: 28px;
    }
    
    .title-highlight {
        font-size: 18px;
    }
    
    .title-main {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .banner-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .consolidation-button-premium {
        padding: 16px 32px;
        font-size: 14px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .button-text {
        align-items: center;
    }
    
    .banner-footer-premium {
        font-size: 12px;
        flex-direction: column;
        gap: 4px;
    }
}

/* Enhanced Smooth Transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

/* Smooth hover effects for links */
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced button hover effects */
.cta-button, .consolidation-button, .qualify-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

/* Smooth card transitions */
.service-card, .value-card, .stat-item {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    will-change: transform;
}

/* Smooth navigation transitions */


/* Enhanced font loading for smoother transitions */
html {
    font-display: swap;
}