/* VARIABLES & RESET */
:root {
    --primary-red: #DC2626;
    /* Urgency Color */
    --hover-red: #B91C1C;
    --secondary-gold: #F59E0B;
    /* Trust/Premium Color */
    --dark-bg: #111827;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    color: var(--text-dark);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

/* LAYOUT UTILS */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

/* BUTTONS */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-red);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.cta-white {
    background-color: white;
    color: var(--primary-red);
}

.cta-white:hover {
    background-color: #f0f0f0;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

.pulse-strong {
    animation: pulse-strong-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

@keyframes pulse-strong-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.logo-desc {
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 1px;
}

#nav-menu ul {
    display: flex;
    gap: 2rem;
}

#nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
}

#nav-menu a:hover {
    color: var(--primary-red);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* HERO SECTION */
.hero {
    position: relative;
    background-image: url('zarnyitas-hero-banner.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(220, 38, 38, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: var(--secondary-gold);
    color: #000;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero h1 .highlight {
    color: var(--secondary-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* SERVICES */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-gold);
}

.service-card .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

/* PROCESS / TIMELINE */
.timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    position: relative;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* URGENCY BANNER */
.urgency-banner {
    background: var(--primary-red);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.urgency-banner h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.urgency-banner a {
    margin-top: 1.5rem;
    color: var(--primary-red);
}

/* CONTACT */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}


.c-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--primary-red);
}

.phone-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
}

.map-container {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-form-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* FOOTER */
footer {
    background: var(--dark-bg);
    color: #9CA3AF;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links a {
    margin: 0 10px;
    color: white;
}

/* FLOATING MOBILE CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-gold);
    color: var(--dark-bg);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    /* Hidden by default on desktop */
    align-items: center;
    gap: 0.5rem;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    #nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        display: none;
        flex-direction: column;
    }

    #nav-menu.active {
        display: flex;
    }

    #nav-menu ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .mobile-only {
        display: flex;
    }
}