/* ============================================================================
   ACOPERISURI24.RO - CSS COMPLETO
   Traducción de Tailwind CSS a CSS Vanilla
   ============================================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================================
   1. RESET & BASE
   ============================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid #e5e5e5;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #121212;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
    /* Previne scroll orizontal pe mobile */
    overflow-wrap: break-word;
    /* Previne textul care iese din container */
    word-wrap: break-word;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* ============================================================================
   2. CSS VARIABLES
   ============================================================================ */
:root {
    /* Colors */
    --alarm: #E11D2E;
    --alarm-dark: #c41928;
    --alarm-light: #ff4757;
    --navy: #0C71C3;
    --navy-dark: #095a9e;
    --navy-light: #1a8fe0;
    --slate-dark: #121212;
    --slate-gray: #64748B;
    --slate-snow: #F5F5F5;
    --white: #FFFFFF;
    --green: #22c55e;
    --yellow: #facc15;
    --orange: #f97316;
    --blue-600: #2563eb;
    --sky-500: #0ea5e9;
    --blue-700: #1d4ed8;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    --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-cta: 0 4px 20px rgba(225, 29, 46, 0.4);

    /* Border Radius */
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* ============================================================================
   3. LAYOUT
   ============================================================================ */
.min-h-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    /* Default to 1 column on mobile to prevent overflow */
}

/* Explicit 1 column */
.grid-1 {
    grid-template-columns: 1fr;
}

/* These classes will stack on mobile and expand on tablet/desktop */
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Visibility Utilities */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

/* Flex */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Display */
.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-flex {
    display: inline-flex;
}

.inline-block {
    display: inline-block;
}

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

/* Sizing */
.w-full {
    width: 100%;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================================
   4. TYPOGRAPHY
   ============================================================================ */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Text Colors */
.text-white {
    color: #fff;
}

.text-alarm {
    color: var(--alarm);
}

.text-navy {
    color: var(--navy);
}

.text-slate-dark {
    color: var(--slate-dark);
}

.text-slate-gray {
    color: var(--slate-gray);
}

.text-green-500 {
    color: var(--green);
}

.text-green-600 {
    color: #16a34a;
}

.text-green-400 {
    color: #4ade80;
}

.text-yellow-400 {
    color: var(--yellow);
}

.text-orange-500 {
    color: var(--orange);
}

/* Background Colors */
.bg-white {
    background-color: #fff;
}

.bg-alarm {
    background-color: var(--alarm);
}

.bg-alarm-dark {
    background-color: var(--alarm-dark);
}

.bg-navy {
    background-color: var(--navy);
}

.bg-navy-dark {
    background-color: var(--navy-dark);
}

.bg-slate-dark {
    background-color: var(--slate-dark);
}

.bg-slate-snow {
    background-color: var(--slate-snow);
}

.bg-green-500 {
    background-color: var(--green);
}

.bg-yellow-400 {
    background-color: var(--yellow);
}

.bg-orange-300 {
    background-color: #fdba74;
}

.bg-gray-300 {
    background-color: #d1d5db;
}

/* Opacity backgrounds */
.bg-alarm-10 {
    background-color: rgba(225, 29, 46, 0.1);
}

.bg-alarm-20 {
    background-color: rgba(225, 29, 46, 0.2);
}

.bg-navy-10 {
    background-color: rgba(12, 113, 195, 0.1);
}

.bg-navy-20 {
    background-color: rgba(12, 113, 195, 0.2);
}

.bg-navy-5 {
    background-color: rgba(12, 113, 195, 0.05);
}

.bg-green-10 {
    background-color: rgba(34, 197, 94, 0.1);
}

.bg-green-20 {
    background-color: rgba(34, 197, 94, 0.2);
}

.bg-orange-10 {
    background-color: rgba(249, 115, 22, 0.1);
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white-20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-black-70 {
    background-color: rgba(0, 0, 0, 0.7);
}

.bg-black-95 {
    background-color: rgba(0, 0, 0, 0.95);
}

/* Text opacity */
.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}

.text-white-40 {
    color: rgba(255, 255, 255, 0.4);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================================
   5. SPACING
   ============================================================================ */
.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.-mt-1 {
    margin-top: -0.25rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.space-y-1>*+* {
    margin-top: 0.25rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

.space-y-12>*+* {
    margin-top: 3rem;
}

/* ============================================================================
   6. BORDERS & RADIUS
   ============================================================================ */
.rounded {
    border-radius: var(--radius);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-2xl {
    border-radius: var(--radius-2xl);
}

.rounded-full {
    border-radius: var(--radius-full);
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-l-4 {
    border-left-width: 4px;
    border-left-style: solid;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-white-30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.border-alarm-30 {
    border-color: rgba(225, 29, 46, 0.3);
}

.border-navy-30 {
    border-color: rgba(12, 113, 195, 0.3);
}

.border-navy-20 {
    border-color: rgba(12, 113, 195, 0.2);
}

.border-green-30 {
    border-color: rgba(34, 197, 94, 0.3);
}

/* ============================================================================
   7. SHADOWS
   ============================================================================ */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-card {
    box-shadow: var(--shadow-card);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}

/* ============================================================================
   8. COMPONENTS
   ============================================================================ */

/* Emergency CTA Button */
.btn-emergency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: var(--alarm);
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-emergency:hover {
    background-color: var(--alarm-dark);
}

.btn-emergency:active {
    transform: scale(0.95);
}

.btn-emergency:disabled,
.btn-emergency.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-emergency-pulse {
    animation: emergency-pulse 2s infinite;
}

@keyframes emergency-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(225, 29, 46, 0);
    }
}

/* Authority Button */
.btn-authority {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: var(--navy);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-authority:hover {
    background-color: var(--navy-dark);
}

.btn-authority:active {
    transform: scale(0.95);
}

/* Service Card */
.service-card {
    display: block;
    background-color: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(12, 113, 195, 0.3);
}

.service-card .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(225, 29, 46, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.service-card:hover .icon-box {
    background-color: var(--alarm);
    transform: scale(1.1);
}

.service-card:hover .icon-box i {
    color: #fff;
}

.service-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.service-card:hover .card-title {
    color: var(--alarm);
}

/* Section Headers */
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--slate-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-gray);
    max-width: 42rem;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--slate-snow);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-dark);
}

/* Phone Display */
.phone-display {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--slate-dark);
    letter-spacing: -0.025em;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    background-color: var(--slate-dark);
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
}

.price-table tr:hover td {
    background-color: var(--slate-snow);
}

/* Category tag/pill */
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Icon boxes */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Form inputs */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-xl);
    border: 1px solid #e5e7eb;
    outline: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.form-input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(12, 113, 195, 0.2);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-dark);
    margin-bottom: 0.5rem;
}

/* ============================================================================
   9. GRADIENTS
   ============================================================================ */
.gradient-dark {
    background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate-dark) 50%, var(--navy) 100%);
}

.gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.gradient-hero-overlay {
    background: linear-gradient(to right, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.7) 50%, transparent 100%);
}

.gradient-top-dark {
    background: linear-gradient(to top, rgba(18, 18, 18, 0.8) 0%, transparent 100%);
}

/* ============================================================================
   10. ANIMATIONS
   ============================================================================ */
.transition-all {
    transition: all 0.3s;
}

.transition-colors {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.transition-transform {
    transition: transform 0.3s;
}

.transition-shadow {
    transition: box-shadow 0.3s;
}

.transition-opacity {
    transition: opacity 0.3s;
}

.hover-shadow-lg:hover {
    box-shadow: var(--shadow-lg);
}

.hover-shadow-md:hover {
    box-shadow: var(--shadow-md);
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Scale on hover */
.hover-scale:hover {
    transform: scale(1.05);
}

.hover-scale-110:hover {
    transform: scale(1.1);
}

/* ============================================================================
   11. NAVBAR
   ============================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.75rem 0;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar .top-bar {
    background-color: var(--slate-dark);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.navbar-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-dark);
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--slate-snow);
}

.nav-link.active {
    background-color: rgba(225, 29, 46, 0.1);
    color: var(--alarm);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 16rem;
    background-color: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid #f3f4f6;
    padding: 0.5rem 0;
    z-index: 50;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu.right {
    left: auto;
    right: 0;
    min-width: 12rem;
    max-height: 20rem;
    overflow-y: auto;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--slate-dark);
    transition: all 0.2s;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: rgba(225, 29, 46, 0.05);
    color: var(--alarm);
}

.mobile-menu-btn {
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
    background-color: var(--slate-snow);
}

.mobile-menu {
    display: none;
    background-color: #fff;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu.show {
    display: block;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--alarm);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: #fff;
    font-weight: 900;
    font-size: 1.125rem;
}

/* ============================================================================
   12. FOOTER
   ============================================================================ */
.footer {
    background-color: var(--slate-dark);
    color: #fff;
}

/* ============================================================================
   13. STICKY CTA
   ============================================================================ */
.sticky-cta-desktop {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-2xl);
    padding: 0.75rem 1.5rem;
    border: 1px solid #f3f4f6;
}

.sticky-cta-desktop.visible {
    display: flex;
}

.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: var(--shadow-lg);
}

.sticky-cta-mobile.visible {
    display: block;
}

.sticky-mobile-spacer {
    display: none;
    height: 5rem;
}

/* ============================================================================
   14. WHATSAPP BUTTON
   ============================================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 6rem;
    right: 1rem;
    z-index: 50;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--green);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #15803d;
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    background-color: var(--slate-dark);
    color: #fff;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============================================================================
   15. BREADCRUMBS
   ============================================================================ */
.breadcrumb-bar {
    background-color: var(--slate-snow);
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    list-style: none;
}

.breadcrumb-list a {
    color: var(--slate-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: var(--alarm);
}

.breadcrumb-list .current {
    color: var(--slate-dark);
    font-weight: 500;
}

/* ============================================================================
   16. HERO SECTIONS
   ============================================================================ */
.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================================
   17. PROSE (Article Content)
   ============================================================================ */
.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    color: var(--slate-gray);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.prose ul,
.prose ol {
    color: var(--slate-gray);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.prose strong {
    color: var(--slate-dark);
}

.prose a {
    color: var(--alarm);
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.prose table th {
    background-color: var(--slate-dark);
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
}

.prose table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.prose table tr:hover td {
    background-color: var(--slate-snow);
}

/* ============================================================================
   18. LIGHTBOX
   ============================================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--alarm);
}

.lightbox-nav {
    position: absolute;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 3rem;
    transition: color 0.3s;
}

.lightbox-nav:hover {
    color: var(--alarm);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

/* ============================================================================
   19. FAQ ACCORDION
   ============================================================================ */
.faq-item {
    background-color: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f3f4f6;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
    color: var(--slate-dark);
}

.faq-question:hover {
    background-color: rgba(245, 245, 245, 0.5);
}

.faq-question .chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--slate-gray);
}

.faq-item.open .faq-question .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1rem;
    color: var(--slate-gray);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ============================================================================
   20. FEATHER ICONS
   ============================================================================ */
.feather {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: inline-block;
    vertical-align: middle;
}

.feather-sm {
    width: 16px;
    height: 16px;
}

.feather-md {
    width: 20px;
    height: 20px;
}

.feather-lg {
    width: 28px;
    height: 28px;
}

.feather-xl {
    width: 32px;
    height: 32px;
}

/* Star filled */
.star-filled {
    fill: var(--yellow);
    color: var(--yellow);
}

.star-empty {
    fill: none;
    color: #d1d5db;
}

/* ============================================================================
   21. SCROLL INDICATOR
   ============================================================================ */
.scroll-indicator {
    width: 2rem;
    height: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.375rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
}

/* Company rank badges */
.rank-gold {
    background-color: var(--yellow);
    color: var(--slate-dark);
}

.rank-silver {
    background-color: #d1d5db;
    color: var(--slate-dark);
}

.rank-bronze {
    background-color: #fdba74;
    color: var(--slate-dark);
}

.rank-default {
    background-color: var(--slate-snow);
    color: var(--slate-dark);
}

/* Rating bars */
.rating-bar {
    flex: 1;
    height: 0.75rem;
    background-color: #f3f4f6;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: var(--yellow);
    border-radius: var(--radius-full);
}

/* ============================================================================
   22. UTILITY CLASSES
   ============================================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.list-disc {
    list-style-type: disc;
}

.list-decimal {
    list-style-type: decimal;
}

.list-inside {
    list-style-position: inside;
}

.resize-none {
    resize: none;
}

.cursor-pointer {
    cursor: pointer;
}

.select-none {
    user-select: none;
}

.pointer-events-none {
    pointer-events: none;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.h-full {
    height: 100%;
}

.w-px {
    width: 1px;
}

/* Ring styles (for company cards) */
.ring-alarm {
    box-shadow: 0 0 0 2px var(--alarm);
}

/* ============================================================================
   23. RESPONSIVE
   ============================================================================ */
@media (min-width: 640px) {
    .sm-inline {
        display: inline;
    }

    .sm-flex-row {
        flex-direction: row;
    }

    .sm-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
    }

    .phone-display {
        font-size: 1.875rem;
    }

    .md-block {
        display: block;
    }

    .md-flex {
        display: flex;
    }

    .md-hidden {
        display: none;
    }

    .md-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .md-grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .md-grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .md-col-span-2 {
        grid-column: span 2;
    }

    .md-col-span-3 {
        grid-column: span 3;
    }

    .md-text-4xl {
        font-size: 2.25rem;
    }

    .md-text-5xl {
        font-size: 3rem;
    }

    .py-24-md {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .sticky-cta-desktop.visible {
        display: flex;
    }

    .sticky-cta-mobile {
        display: none !important;
    }

    .sticky-mobile-spacer {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .lg-block {
        display: block;
    }

    .lg-flex {
        display: flex;
    }

    .lg-hidden {
        display: none;
    }

    .lg-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lg-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .lg-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .lg-grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .lg-col-span-1 {
        grid-column: span 1;
    }

    .lg-col-span-2 {
        grid-column: span 2;
    }

    .lg-col-span-3 {
        grid-column: span 3;
    }

    .lg-text-5xl {
        font-size: 3rem;
    }

    .lg-text-6xl {
        font-size: 3.75rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .navbar-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .navbar-cta-desktop {
        display: flex;
    }
}

@media (max-width: 767px) {
    .sticky-cta-mobile.visible {
        display: block;
    }

    .sticky-mobile-spacer.visible {
        display: block;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .whatsapp-btn {
        bottom: 6rem;
    }

    .navbar .top-bar {
        display: none;
    }

    .navbar-cta-desktop {
        display: none;
    }

    /* Hide the desktop sticky CTA completely on mobile */
    .sticky-cta-desktop {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: block;
    }

    .navbar-nav {
        display: none;
    }

    .navbar-cta-desktop {
        display: none !important;
    }
}

/* Print */
@media print {

    .navbar,
    .sticky-cta-desktop,
    .sticky-cta-mobile,
    .whatsapp-btn,
    .mobile-menu {
        display: none !important;
    }
}