/* ===== CSS Variables ===== */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #e74c3c;
    --dark: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --lighter: #f8fafc;
    --white: #ffffff;
    --shadow: 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);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --navbar-height: 70px;
    --top-offset: var(--navbar-height);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--top-offset, 70px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Touch Optimization ===== */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .contact-item a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .floating-contact a {
        min-height: 48px;
    }

    /* Disable hover-only effects on touch devices */
    .trust-card:hover,
    .service-card:hover,
    .why-card:hover {
        transform: none;
    }

    .promo-card {
        animation: none;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-nav {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 8px 24px;
    border-radius: 50px;
}

.btn-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-promo {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
    width: 100%;
    margin-top: 12px;
}

.btn-promo:hover {
    background-color: var(--light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.nav-promo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    background: var(--light);
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-promo strong {
    font-weight: 800;
    color: var(--secondary-dark);
    font-size: 0.95rem;
}

.nav-promo a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.nav-promo a:hover {
    text-decoration: underline;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-icon img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.logo:hover .logo-icon img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 50%, #38bdf8 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 24px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge i {
    font-size: 0.8rem;
    color: #fde68a;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Promo Card ===== */
.promo-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.promo-header {
    margin-bottom: 16px;
}

.promo-occasion {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.promo-year {
    font-size: 0.9rem;
    opacity: 0.9;
}

.promo-body {
    position: relative;
    z-index: 1;
}

.promo-discount {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.promo-discount span {
    font-size: 2.5rem;
}

.promo-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.promo-season {
    font-weight: 600;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 8px;
}

/* ===== Stats Section ===== */
.stats-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
    padding: 50px 0;
    position: relative;
    z-index: 4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    z-index: 3;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.trust-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.trust-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

/* ===== Services Section ===== */
.services-section {
    padding: 80px 0;
    background-color: var(--lighter);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-card ul {
    margin-bottom: 16px;
}

.service-card li {
    padding: 6px 0;
    color: var(--dark-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 24px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-note {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-note i {
    margin-right: 6px;
}

/* ===== Why Section ===== */
.why-section {
    padding: 80px 0;
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background-color: var(--lighter);
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Promo Banner ===== */
.promo-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.promo-banner-text h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.promo-banner-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.promo-banner .btn-primary {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.promo-banner .btn-primary:hover {
    background-color: var(--light);
    border-color: var(--light);
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
    background-color: var(--lighter);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    color: var(--dark-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-dark);
}

/* Floating contact bar on mobile */
.floating-contact {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    z-index: 998;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.floating-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.floating-contact a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    transition: var(--transition);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.floating-contact a:last-child {
    border-right: none;
}

.floating-contact a i {
    font-size: 1.1rem;
}

.floating-contact a:hover {
    background-color: var(--primary-dark);
}

@media (max-width: 768px) {
    .floating-contact {
        display: block;
    }

    .footer {
        padding-bottom: 70px;
    }

    .back-to-top {
        bottom: 80px;
    }
}

.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background-color: var(--lighter);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; /* 16px prevents iOS auto-zoom */
    color: var(--dark);
    background-color: var(--white);
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* ===== Map Section ===== */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(20%);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    margin-bottom: 0;
}

.footer-tagline {
    color: var(--primary-light);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col p i {
    color: var(--primary-light);
    width: 20px;
    margin-right: 8px;
}

.footer-col a.footer-link {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.footer-col a.footer-link:hover {
    color: var(--white);
    text-decoration-color: var(--white);
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.promo-card {
    animation: pulse 3s ease-in-out infinite;
}

/* Shimmer effect for CTA buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-promo {
        max-width: 360px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 64px;
    }

    .nav-promo {
        order: 4;
        width: 100%;
        background: linear-gradient(135deg, var(--dark) 0%, #0c4a6e 100%);
        color: var(--white);
        padding: 6px 16px;
        border-radius: 0;
        font-size: 0.72rem;
        text-align: center;
        white-space: nowrap;
        margin: 0 -20px -12px;
        width: calc(100% + 40px);
    }

    .nav-promo strong {
        color: #fde68a;
    }

    .nav-promo a {
        color: var(--primary-light);
    }

    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding-top: 8px;
        padding-bottom: 0;
    }

    .navbar {
        top: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        height: auto;
    }

    .nav-links {
        position: fixed;
        top: calc(var(--navbar-height) + 30px);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px 20px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        padding: 14px 16px;
        border-radius: var(--radius);
        font-size: 1rem;
        width: 100%;
    }

    .nav-links a:hover, .nav-links a:active {
        background-color: var(--light);
    }

    .nav-links a:not(.btn)::after {
        display: none;
    }

    .nav-links .btn-nav {
        margin-top: 8px;
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
    }

    .hero {
        padding: calc(var(--navbar-height) + 50px) 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-card {
        padding: 28px 24px;
    }

    .trust-section {
        margin-top: 0;
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .services-section, .why-section, .about-section, .contact-section {
        padding: 50px 0;
    }

    .service-card {
        padding: 28px 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 24px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .promo-banner {
        padding: 40px 0;
    }

    .promo-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-banner-text h2 {
        font-size: 1.4rem;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-card {
        padding: 24px;
    }

    .promo-discount {
        font-size: 3.5rem;
    }

    .stats-section {
        padding: 36px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .logo-icon img {
        height: 36px;
        width: auto;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .map-section iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .badge i {
        font-size: 0.7rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .btn {
        text-align: center;
        padding: 14px 24px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .trust-icon {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .promo-discount {
        font-size: 2.8rem;
    }

    .promo-label {
        font-size: 1.2rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .floating-contact a {
        font-size: 0.65rem;
        padding: 10px 4px;
    }

    .floating-contact a i {
        font-size: 1rem;
    }

    .footer-logo img {
        height: 32px;
        width: auto;
    }

}

@media (max-width: 360px) {
    .container {
        padding: 0 14px;
    }

    .hero h1 {
        font-size: 1.25rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-tagline {
        display: none;
    }

    .promo-card {
        padding: 20px 16px;
    }
}
