/* Fallback utility selectors (valid syntax) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }
::selection { background: var(--primary); color: var(--white); }
/* ===========================
   Taxi Tiran – Fahrdienst Graubünden
   Premium Corporate Stylesheet
   =========================== */

/* --- Global UI utilities (valid selectors) --- */
*::-webkit-scrollbar { width: 8px; }
*::-webkit-scrollbar-track { background: var(--gray-100); }
*::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
*::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }
*::selection { background: var(--primary); color: var(--white); }

/* --- Reset & Custom Properties --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Corporate palette */
    --primary: #1a3a5c;
    --primary-dark: #0f2137;
    --primary-light: #e8eef4;
    --primary-lighter: #f4f7fa;
    --accent: #d4a74a;
    --accent-dark: #b8912e;
    --accent-light: #fdf6e3;
    --blue: #2563eb;
    --blue-light: #dbeafe;
    --whatsapp: #25D366;
    --whatsapp-dark: #1eba59;
    --success: #16a34a;
    --success-light: #dcfce7;
    --dark: #0a1628;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transition */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s var(--ease);
    --transition-fast: all 0.2s var(--ease);

    /* Fonts */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

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

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

/* --- Typography Utilities --- */
.text-accent {
    color: var(--accent);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.btn svg {
    flex-shrink: 0;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 58, 92, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
    font-weight: 700;
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 167, 74, 0.35);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

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

.logo-text {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.logo-text strong {
    font-weight: 700;
}

.logo-sub {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    font-weight: 500;
}

.navbar.scrolled .logo {
    color: var(--gray-900);
}

.navbar.scrolled .logo-sub {
    color: var(--gray-500);
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    position: relative;
    padding: 4px 0;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.nav-active {
    color: var(--primary);
}

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

/* Phone Button */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    background: var(--accent);
    padding: 10px 22px;
    border-radius: 50px;
    letter-spacing: 0.01em;
    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 167, 74, 0.3);
}

.nav-phone svg {
    flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

/* Hamburger X Animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.88) 0%,
        rgba(26, 58, 92, 0.75) 50%,
        rgba(10, 22, 40, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 140px 0 100px;
    max-width: 680px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 167, 74, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    border: 1px solid rgba(212, 167, 74, 0.25);
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.hero .btn-accent {
    font-size: 1.05rem;
    padding: 18px 38px;
}

.hero .btn-whatsapp {
    padding: 18px 38px;
    font-size: 1.05rem;
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.4);
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: var(--primary-dark);
    padding: 0;
    position: relative;
    z-index: 4;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    background: rgba(255,255,255,0.04);
}

.trust-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 167, 74, 0.12);
    border-radius: var(--radius-sm);
    color: var(--accent);
}

.trust-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.trust-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    padding: 110px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

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

.service-card:hover .service-card-accent {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 167, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-banner-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-banner-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* =============================================
   AREA / EINSATZGEBIET
   ============================================= */
.area {
    padding: 110px 0;
    background: var(--gray-50);
}

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

.area-regions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.area-region {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.area-region:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateX(6px);
}

.area-region-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent-dark);
    border-radius: var(--radius-sm);
}

.area-region h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.area-region p {
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.6;
}

.area-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--gray-200);
    min-height: 520px;
}

.area-map iframe {
    display: block;
    width: 100%;
    min-height: 520px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: 110px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
}

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

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--primary);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

.about-badge span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.about-text {
    color: var(--gray-500);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--gray-700);
}

.about-value svg {
    color: var(--success);
    flex-shrink: 0;
}

.about-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 110px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.testimonial-quote {
    margin-bottom: 16px;
    color: var(--primary);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 18px;
}

.testimonial-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 400;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 110px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.contact-card {
    background: var(--gray-50);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card-link {
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    background: var(--white);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.contact-icon-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
}

.contact-card:hover .contact-card-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-card:hover .contact-icon-whatsapp {
    background: var(--whatsapp);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-900);
}

.contact-card p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.contact-value {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
}

.contact-area-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 18px 24px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 167, 74, 0.2);
    color: var(--gray-700);
}

.contact-area-info svg {
    color: var(--accent-dark);
    flex-shrink: 0;
}

.contact-area-info p {
    font-size: 0.95rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer .logo {
    margin-bottom: 20px;
}

.footer .logo-text {
    color: var(--white);
}

.footer .logo-sub {
    color: rgba(255,255,255,0.4);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 11px;
}

.footer-nav a {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
}

.footer-contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.4);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    margin-top: 24px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
}

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

.footer-legal a {
    color: rgba(255,255,255,0.25);
    font-size: 0.82rem;
}

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

/* =============================================
   LEGAL MODALS
   ============================================= */
.legal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease);
    padding: 24px;
}

.legal-overlay:target {
    opacity: 1;
    visibility: visible;
}

.legal-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 52px;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.legal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.8rem;
    color: var(--gray-400);
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.legal-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.legal-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 28px;
    padding-right: 40px;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--blue);
    text-decoration: underline;
}

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

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 58px;
    height: 58px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* =============================================
   MOBILE STICKY CTA
   ============================================= */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    padding: 10px 14px;
    gap: 10px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-body);
    text-align: center;
    transition: var(--transition-fast);
}

.mobile-cta-phone {
    background: var(--primary);
    color: var(--white);
}

.mobile-cta-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
    .area-content { gap: 32px; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .trust-items { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .cta-banner-content { flex-direction: column; text-align: center; }
    .cta-banner-actions { justify-content: center; }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 28px 28px;
        gap: 4px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        border-bottom-left-radius: var(--radius-md);
        border-bottom-right-radius: var(--radius-md);
    }

    .nav-links.active { display: flex; }
    .nav-links a {
        color: var(--gray-700) !important;
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--gray-100);
    }
    .nav-links a::after { display: none; }
    .nav-links li:last-child a { border-bottom: none; }

    .nav-actions { display: none; }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero {
        min-height: 100svh;
        align-items: flex-end;
    }
    .hero-content {
        padding: 132px 0 96px;
        max-width: 100%;
    }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero .btn-accent, .hero .btn-whatsapp { font-size: 0.95rem; padding: 16px 28px; justify-content: center; width: 100%; }
    .hero-scroll-hint { display: none; }
    .hero-label { letter-spacing: 0.35px; }

    /* Trust */
    .trust-items { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .trust-item:last-child { border-bottom: none; }

    /* Services */
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }

    /* Area */
    .area-content { grid-template-columns: 1fr; }
    .area-map { min-height: 300px; }
    .area-map iframe { min-height: 300px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrapper { height: 280px; }
    .about-values { grid-template-columns: 1fr; }
    .about-badge { bottom: -10px; right: 12px; padding: 14px 18px; }
    .about-cta { flex-direction: column; }
    .about-cta .btn { width: 100%; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-area-info {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    /* Sections */
    .section-header h2 { font-size: 1.8rem; }
    .about-content h2 { font-size: 1.8rem; }
    .services, .area, .about, .testimonials, .contact { padding: 80px 0; }

    /* CTA Banner */
    .cta-banner { padding: 50px 0; }
    .cta-banner-text h2 { font-size: 1.6rem; }
    .cta-banner-actions { flex-direction: column; width: 100%; }
    .cta-banner-actions .btn { width: 100%; justify-content: center; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-contact-item { align-items: flex-start; }
    .footer-contact-item a { overflow-wrap: anywhere; }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-bottom: 88px;
    }

    /* Legal */
    .legal-modal { padding: 36px 24px; max-height: 90vh; }
    .legal-modal h2 { font-size: 1.4rem; }

    /* Mobile CTA */
    .mobile-cta {
        display: flex;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }
    .whatsapp-float { bottom: 84px; }
    body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.65rem; }
    .hero-label { font-size: 0.72rem; padding: 6px 14px; }
    .hero {
        min-height: 100svh;
    }
    .hero-content { padding: 120px 0 92px; }
    .hero-subtitle { line-height: 1.65; }
    .container { padding: 0 18px; }
    .services, .area, .about, .testimonials, .contact { padding: 64px 0; }
    .section-header h2 { font-size: 1.5rem; }
    .logo-text { font-size: 1.15rem; }
    .logo-sub { font-size: 0.6rem; }
    .trust-item { padding: 20px 14px; }
    .trust-icon { width: 44px; height: 44px; }
    .contact-card { padding: 28px 18px; }
    .legal-modal { padding: 24px 18px; }
    .mobile-cta-btn { font-size: 0.86rem; padding: 13px 10px; }
}

/* =============================================
   SUPPORT FORM
   ============================================= */
.support-form-section {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.support-form-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 167, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.support-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.support-info {
    color: var(--white);
}

.support-info .section-label {
    color: var(--accent);
}

.support-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
}

.support-info p {
    color: rgba(255,255,255,0.6);
    font-size: 1.02rem;
    line-height: 1.75;
}

.support-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--gray-900);
    transition: var(--transition-fast);
    background: var(--gray-50);
}

/* Prevent iOS auto-zoom when inputs get focus */
.form-group input,
.form-group textarea {
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 58, 92, 0.08);
    background: var(--white);
}

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

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

.support-submit {
    width: 100%;
    margin-top: 4px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .support-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .support-form {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .support-info h2 {
        font-size: 1.8rem;
    }

    .support-form-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .support-form-section {
        padding: 64px 0;
    }
}

/* =============================================
   UTILITIES
   ============================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }
::selection { background: var(--primary); color: var(--white); }
