/* ============================================
   SOLUTIA SERVICES - LIGHT/DARK THEME v4.0
   ============================================ */

/* ============================================
   THEME VARIABLES
   ============================================ */

:root {
    /* Brand Colors (constant) */
    --brand-primary: #1c75bc;
    --brand-secondary: #00a8e8;
    --brand-accent: #00f5d4;
    --gradient-primary: linear-gradient(135deg, #1c75bc 0%, #00a8e8 100%);
    --gradient-accent: linear-gradient(135deg, #00a8e8 0%, #00f5d4 100%);
    
    /* Spacing & Layout */
    --section-padding: 6rem;
    --container-width: 1280px;
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
}

/* ============================================
   LIGHT THEME (Default)
   ============================================ */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-primary: 0 4px 20px rgba(28, 117, 188, 0.25);
    
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-blur: blur(20px);
    
    /* Slightly blue-tinted overlay to avoid grey wash-out on dark images */
    --hero-overlay: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,248,255,0.85) 100%);
    --hero-text: var(--text-primary);
    
    --blur-opacity: 0.08;
    --logo-filter: none;
    --footer-logo-filter: none;
    
    --input-bg: #f8fafc;
    --map-filter: none;
}

/* ============================================
   DARK THEME
   ============================================ */
[data-theme="dark"] {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a24;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(255,255,255,0.06);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.5);
    
    --border-color: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.12);
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-primary: 0 4px 20px rgba(0, 168, 232, 0.3);
    
    --header-bg: rgba(10, 10, 15, 0.9);
    --header-blur: blur(20px);
    
    --hero-overlay: linear-gradient(135deg, rgba(10,10,15,0.85) 0%, rgba(28,117,188,0.3) 100%);
    --hero-text: #ffffff;
    
    --blur-opacity: 0.15;
    --logo-filter: brightness(0) invert(1);
    --footer-logo-filter: brightness(0) invert(1);
    
    --input-bg: rgba(255,255,255,0.05);
    --map-filter: grayscale(80%) invert(92%) contrast(90%);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color var(--transition), color var(--transition);
}

::selection {
    background: var(--brand-primary);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--brand-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-primary);
    transition: background-color var(--transition);
}

.section-alt {
    background: var(--bg-secondary);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blur Decorations */
.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: var(--blur-opacity);
    transition: opacity var(--transition);
}

.blur-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--brand-secondary);
    top: -200px;
    right: -200px;
}

.blur-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--brand-accent);
    bottom: -100px;
    left: -100px;
}

.blur-circle-3 {
    width: 500px;
    height: 500px;
    background: #7b2cbf;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================
   CUSTOM MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.modal-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: all var(--transition);
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.modal-footer {
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

[data-theme="dark"] .modal-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(28, 117, 188, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: rgba(28, 117, 188, 0.1);
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Section Titles */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-secondary);
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.header.scrolled {
    padding: 10px 0;
    background: var(--header-bg);
    backdrop-filter: var(--header-blur);
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 44px;
    transition: all var(--transition);
    filter: var(--logo-filter);
}

.header.scrolled .logo img {
    height: 38px;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hide mobile specific elements on desktop */
.nav-menu-header,
.mobile-menu-close {
    display: none;
}

.nav-menu ul {
    display: flex;
    gap: 4px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all var(--transition);
    margin-left: 8px;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: all var(--transition);
}

[data-theme="light"] .theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="light"] .theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-theme="dark"] .theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Language Switch */
.lang-switch {
    display: flex;
    gap: 4px;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid var(--border-color);
}

.lang-switch a {
    padding: 8px;
    border-radius: var(--radius-sm);
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.lang-switch a:hover,
.lang-switch a.active {
    opacity: 1;
    background: var(--bg-card-hover);
}

.lang-switch img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: var(--bg-card-hover);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    transition: background var(--transition);
}

/* Full-width centered hero (no image) */
.hero-fullwidth .hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-fullwidth .hero-lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-fullwidth .hero-buttons {
    justify-content: center;
}

.hero-fullwidth .hero-label {
    margin-left: auto;
    margin-right: auto;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(28, 117, 188, 0.15);
    border: 1px solid rgba(28, 117, 188, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .hero-label {
    background: rgba(0, 168, 232, 0.15);
    border-color: rgba(0, 168, 232, 0.3);
    color: var(--brand-secondary);
}

.hero-label i {
    font-size: 0.5rem;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.hero h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--hero-text);
}

.hero-lead {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Hero Features List */
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition);
}

[data-theme="light"] .hero-feature {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(28, 117, 188, 0.2);
    box-shadow: var(--shadow-sm);
}

.hero-feature:hover {
    background: rgba(28, 117, 188, 0.15);
    border-color: rgba(28, 117, 188, 0.3);
    transform: translateY(-2px);
}

.hero-feature i {
    color: var(--brand-primary);
    font-size: 1.1rem;
}

[data-theme="dark"] .hero-feature i {
    color: var(--brand-secondary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Legacy two-column hero (keeping for reference) */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
}

.hero-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(28,117,188,0.2) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

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

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
    position: relative;
    transition: background-color var(--transition), border-color var(--transition);
}

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

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

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: var(--border-color);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 4rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    transition: background-color var(--transition);
}

.trust-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.trust-logo {
    height: 40px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--transition);
}

[data-theme="dark"] .trust-logo {
    filter: grayscale(100%) brightness(2);
}

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

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

[data-theme="light"] .service-card {
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 117, 188, 0.1);
    border: 1px solid rgba(28, 117, 188, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--brand-primary);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card .service-highlight {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link i {
    transition: transform var(--transition-fast);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 2rem;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: all var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Partner Section */
.partner-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.partner-section h3 {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
}

.partner-logo {
    display: inline-block;
    transition: all var(--transition);
}

.partner-logo img {
    height: 50px;
    opacity: 0.5;
    filter: var(--logo-filter);
    transition: all var(--transition);
}

.partner-logo:hover img {
    opacity: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

[data-theme="light"] .contact-method {
    background: var(--bg-primary);
}

.contact-method:hover {
    border-color: var(--brand-primary);
    transform: translateX(8px);
}

.contact-method i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 117, 188, 0.1);
    border-radius: var(--radius-sm);
    color: var(--brand-primary);
    font-size: 1.1rem;
}

.contact-method-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-method-text a,
.contact-method-text p {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

.transport-info h3 {
    margin-top: 2rem;
}

.transport-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transport-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.transport-list i {
    width: 28px;
    color: var(--brand-primary);
}

/* Company Card */
.company-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: background-color var(--transition), border-color var(--transition);
}

[data-theme="light"] .company-card {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.company-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.company-details-grid {
    display: grid;
    gap: 1rem;
}

.company-detail {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.company-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.company-detail-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.company-detail-value {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
}

.bank-info {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(28, 117, 188, 0.05);
    border: 1px solid rgba(28, 117, 188, 0.2);
    border-radius: var(--radius-md);
}

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

.bank-info p + p {
    margin-top: 0.5rem;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    height: 450px;
    position: relative;
    background: var(--bg-secondary);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--brand-primary);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.map-placeholder h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

#google-map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: var(--map-filter);
}

/* ============================================
   FORM
   ============================================ */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
    transition: background-color var(--transition), border-color var(--transition);
}

[data-theme="light"] .form-wrapper {
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(28, 117, 188, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.checkbox-group label {
    display: inline;
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--brand-primary);
    text-decoration: underline;
}

#contactForm .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
    transition: background-color var(--transition);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 45px;
    filter: var(--footer-logo-filter);
    margin-bottom: 1.5rem;
    transition: filter var(--transition);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column ul li a,
.footer-column ul li span {
    color: var(--text-muted);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--brand-primary);
    transform: translateX(4px);
}

.footer-column ul li a i,
.footer-column ul li span i {
    font-size: 0.85rem;
    width: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-copyright strong {
    color: var(--text-secondary);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cookie-text strong {
    color: var(--text-primary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.lightbox-close:hover {
    opacity: 1;
}

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

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

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-feature {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-lead {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1000px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transform: translateX(100%); /* Changed from -100% to 100% for slide from right */
        transition: transform var(--transition);
        z-index: 999;
        padding-top: 0;
        overflow-y: auto;
    }
    
    /* Disable transition during resize to prevent flashing */
    .nav-menu.no-transition {
        transition: none !important;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 2rem;
    }

    .nav-menu-header .logo img {
        height: 35px;
        width: auto;
    }

    .mobile-menu-close {
        display: flex;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
        padding: 5px;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        padding: 16px 32px;
    }
    
    .theme-toggle {
        position: absolute;
        top: 24px;
        right: 80px;
    }
    
    .lang-switch {
        margin-left: 0;
        margin-top: 32px;
        padding-left: 0;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item::after {
        display: none !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        margin: 0 auto 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-label {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .header,
    .cookie-banner,
    .lightbox,
    .map-section,
    .blur-circle,
    .theme-toggle {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}
