/* ==========================================
   MODERN CSS - THE TECH CONCIERGE
   Design: Contemporary, Tech-Savvy, Vibrant
   ========================================== */

/* CRITICAL: Hero section text must be white */
.hero-section,
.hero-section *,
.hero-content,
.hero-content *,
.hero-badge,
.hero-badge *,
.hero-title,
.hero-subtitle,
.feature-pill,
.feature-pill * {
    color: #ffffff !important;
}

.hero-section .btn-secondary,
.hero-section .btn-secondary * {
    color: #fbbf24 !important;
}

.hero-section .gradient-text,
.gradient-text {
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* CRITICAL: Contact section text must be white */
.contact-section,
.contact-section *,
.contact-section h1,
.contact-section h2,
.contact-section h3,
.contact-section h4,
.contact-section h5,
.contact-section p,
.contact-section span,
.contact-section strong,
.contact-section em,
.contact-section a,
.contact-section div {
    color: #ffffff !important;
}

:root {
    /* Modern Color Palette - Vibrant & Tech-Forward */
    --color-primary: #6366f1; /* Indigo - Modern tech color */
    --color-primary-dark: #4f46e5;
    --color-primary-light: #818cf8;
    --color-secondary: #f59e0b; /* Amber - Energetic accent */
    --color-secondary-dark: #d97706;
    --color-accent: #ec4899; /* Pink - Modern pop */
    --color-success: #10b981;
    --color-danger: #ef4444;

    /* Neutrals - High Contrast */
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-black: #0a0a0a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    --gradient-card: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);

    /* Typography - Modern Sans-Serif */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.65rem + 1.125vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.95rem + 1.5vw, 3.5rem);
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4.5rem);

    /* Spacing - Consistent Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius - Smooth Curves */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows - Layered Depth */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.4);
    --shadow-glow-secondary: 0 0 20px rgba(245, 158, 11, 0.4);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-900);
    background: var(--color-white);
    overflow-x: hidden;
}

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }

p {
    line-height: 1.7;
}

/* Default colors for body sections */
body h1, body h2, body h3, body h4, body h5, body h6 {
    color: var(--color-gray-900);
}

body p {
    color: var(--color-gray-700);
}

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

a:hover {
    color: var(--color-primary-dark);
}

/* ==========================================
   LAYOUT
   ========================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.section-title {
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: var(--text-xl);
    color: var(--color-gray-700);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   BUTTONS - Modern & Interactive
   ========================================== */
.btn-primary, .btn-secondary, .btn-accept, .btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(99, 102, 241, 0.7); }
    50% { box-shadow: var(--shadow-xl), 0 0 0 10px rgba(99, 102, 241, 0); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fbbf24 !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-secondary);
    color: #fbbf24 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Secondary button for non-hero sections */
.about-section .btn-secondary,
.services-section .btn-secondary {
    background: transparent;
    color: var(--color-gray-900);
    border: 2px solid var(--color-gray-300);
    backdrop-filter: none;
}

.about-section .btn-secondary:hover,
.services-section .btn-secondary:hover {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-accept {
    background: var(--gradient-secondary);
    color: var(--color-white);
}

.btn-emergency {
    background: var(--gradient-secondary);
    color: var(--color-white);
    font-size: var(--text-lg);
    padding: var(--space-5) var(--space-10);
    box-shadow: var(--shadow-lg);
}

.btn-emergency:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-secondary);
}

.btn-icon {
    font-size: var(--text-xl);
    transition: transform var(--transition-base);
}

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

/* ==========================================
   HEADER & NAVIGATION - Glassmorphism
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: var(--space-4) 0;
}

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

.logo-img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-base);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2);
    align-items: center;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-gray-900);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
    background: rgba(99, 102, 241, 0.1);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: var(--space-2);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-gray-900);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ==========================================
   HERO SECTION - Modern Gradient Background
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-24) var(--space-6);
    overflow: hidden;
}

.hero-section,
.hero-section * {
    color: white !important;
}

.hero-section .gradient-text {
    color: transparent !important;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('media/cascais_sunset.jpg') center/cover;
    z-index: -2;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.75) 0%, rgba(49, 46, 129, 0.75) 50%, rgba(76, 29, 149, 0.75) 100%);
    z-index: -1;
}

.animated-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--color-accent);
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-content * {
    color: var(--color-white) !important;
}

.hero-content .gradient-text {
    color: transparent !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    color: white !important;
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-lg);
}

.hero-badge * {
    color: white !important;
}

.badge-icon {
    font-size: var(--text-lg);
}

.hero-title {
    color: var(--color-white) !important;
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-section h1,
.hero-section h2,
.hero-section h3 {
    color: var(--color-white) !important;
}

.hero-section p,
.hero-section .hero-subtitle {
    color: var(--color-white) !important;
}

.gradient-text {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
    color: transparent !important;
}

.hero-subtitle {
    font-size: var(--text-2xl);
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: var(--space-8);
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: white !important;
    font-size: var(--text-base);
    font-weight: 600;
}

.feature-pill * {
    color: white !important;
}

.pill-icon {
    color: var(--color-secondary);
    font-weight: 700;
}

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

/* ==========================================
   ABOUT SECTION - Card Grid
   ========================================== */
.about-section {
    padding: var(--space-24) 0;
    background: var(--color-gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.about-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-200);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary-light);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.card-title {
    margin-bottom: var(--space-3);
    color: var(--color-gray-900);
}

.card-text {
    color: var(--color-gray-700);
    line-height: 1.7;
}

.about-cta {
    display: flex;
    justify-content: center;
}

.cta-box {
    background: var(--gradient-card);
    border: 2px solid var(--color-primary-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    max-width: 700px;
}

.cta-title {
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    color: var(--color-gray-700);
}

/* ==========================================
   SPECIAL OFFER SECTION - Featured Audit
   ========================================== */
.special-offer-section {
    padding: var(--space-24) 0;
    background: var(--color-white);
}

.special-offer-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.special-offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.offer-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-6);
    background: var(--gradient-secondary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-md);
}

.offer-title {
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-price {
    font-size: var(--text-3xl);
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--color-secondary-dark);
    text-align: center;
    margin-bottom: var(--space-10);
    padding: var(--space-4);
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-secondary);
}

.offer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.offer-column {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 2px solid var(--color-gray-200);
    transition: all var(--transition-base);
}

.offer-column:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.offer-subtitle {
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.offer-subtitle::before {
    content: '•';
    color: var(--color-secondary);
    font-size: var(--text-2xl);
}

.offer-list {
    list-style: none;
    margin: 0;
}

.offer-list li {
    padding: var(--space-3) 0 var(--space-3) var(--space-6);
    position: relative;
    color: var(--color-gray-700);
    font-size: var(--text-sm);
    line-height: 1.6;
    border-bottom: 1px solid var(--color-gray-100);
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: var(--text-base);
}

.offer-deliverables {
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid var(--color-success);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.offer-deliverables .offer-subtitle {
    color: var(--color-success);
    margin-bottom: var(--space-4);
}

.offer-deliverables .offer-subtitle::before {
    content: '📋';
    font-size: var(--text-xl);
}

.offer-list-inline {
    list-style: none;
    margin: 0;
}

.offer-list-inline li {
    padding: var(--space-2) 0 var(--space-2) var(--space-6);
    position: relative;
    color: var(--color-gray-700);
    font-size: var(--text-sm);
}

.offer-list-inline li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.offer-perfect-for {
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.offer-perfect-for .offer-subtitle {
    margin-bottom: var(--space-3);
}

.offer-perfect-for .offer-subtitle::before {
    content: '✨';
    font-size: var(--text-xl);
}

.offer-text {
    color: var(--color-gray-700);
    font-size: var(--text-base);
    line-height: 1.7;
    margin: 0;
}

.offer-duration {
    text-align: center;
    padding: var(--space-4);
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
    font-size: var(--text-base);
    color: var(--color-gray-700);
}

.offer-duration strong {
    color: var(--color-gray-900);
    font-weight: 700;
}

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

.offer-cta .btn-primary {
    font-size: var(--text-lg);
    padding: var(--space-5) var(--space-12);
    box-shadow: var(--shadow-xl);
}

.offer-cta .btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

/* ==========================================
   SERVICES SECTION - Detailed Cards
   ========================================== */
.services-section {
    padding: var(--space-24) 0;
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.service-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--color-primary);
    background: var(--gradient-card);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-secondary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.service-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.service-title {
    color: var(--color-gray-900);
    margin: 0;
}

.service-description {
    font-size: var(--text-base);
    color: var(--color-gray-700);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

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

.service-list li {
    padding: var(--space-3) 0;
    padding-left: var(--space-6);
    position: relative;
    color: var(--color-gray-700);
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--color-gray-100);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.service-highlight {
    padding: var(--space-4);
    background: rgba(99, 102, 241, 0.05);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
}

.highlight-text {
    font-weight: 600;
    color: var(--color-primary);
    font-size: var(--text-sm);
}

.services-footer {
    margin-top: var(--space-16);
}

.emergency-box {
    background: var(--gradient-secondary);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    display: flex;
    align-items: center;
    gap: var(--space-8);
    box-shadow: var(--shadow-2xl);
    color: var(--color-white);
}

.emergency-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.emergency-content {
    flex: 1;
}

.emergency-title {
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.emergency-text {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

/* ==========================================
   CONTACT SECTION - Clean Cards
   ========================================== */
.contact-section {
    padding: var(--space-24) 0;
    background: var(--gradient-hero);
    color: var(--color-white);
}

.contact-section,
.contact-section *,
.contact-section h1,
.contact-section h2,
.contact-section h3,
.contact-section h4,
.contact-section p,
.contact-section strong,
.contact-section em,
.contact-section span,
.contact-section a {
    color: var(--color-white) !important;
}

.contact-section .section-title {
    color: var(--color-white) !important;
    -webkit-text-fill-color: var(--color-white) !important;
}

.contact-section .section-intro {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.contact-info {
    display: grid;
    gap: var(--space-6);
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.contact-card-title {
    color: var(--color-white) !important;
    margin-bottom: var(--space-3);
}

.contact-card-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.contact-link {
    display: inline-block;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white) !important;
    margin-bottom: var(--space-2);
    transition: all var(--transition-base);
}

.contact-link:hover {
    color: var(--color-secondary);
    transform: translateX(4px);
}

.contact-meta {
    display: block;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
}

.contact-details-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
}

.details-title {
    color: var(--color-white) !important;
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.details-title:first-child {
    margin-top: 0;
}

.details-text {
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.trust-indicators {
    margin-top: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.trust-icon {
    color: var(--color-success);
    font-weight: 700;
    font-size: var(--text-lg);
}

.trust-text {
    color: var(--color-white) !important;
    font-weight: 500;
}

/* ==========================================
   FOOTER - Minimal & Clean
   ========================================== */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-300);
    padding: var(--space-12) 0 var(--space-6);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-gray-800);
}

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

.footer-logo {
    height: auto;
    width: 150px;
    max-height: 60px;
    object-fit: contain;
}

.footer-tagline {
    color: var(--color-gray-100);
    font-size: var(--text-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-6);
}

.footer-link {
    color: var(--color-gray-100);
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
}

.copyright {
    font-size: var(--text-sm);
    color: var(--color-gray-100);
}

/* ==========================================
   MODALS - Modern Overlay
   ========================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 2000;
    padding: var(--space-6);
    overflow-y: auto;
}

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

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    max-width: 800px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-2xl);
}

.modal-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    font-size: var(--text-2xl);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--color-danger);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-body {
    margin-top: var(--space-6);
}

.modal-body h3 {
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    color: var(--color-primary);
}

.modal-body p {
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

/* ==========================================
   COOKIE BANNER - Compact & Modern
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    right: var(--space-6);
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-2xl);
    z-index: 1500;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.cookie-content p {
    font-size: var(--text-sm);
    margin: 0;
}

.cookie-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-xl);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

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

*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: var(--space-4); }
