/* ============================================================
   San Diego Karaoke — Patriotic Red, White & Blue Theme
   ============================================================ */

:root {
    --bg:          #0b1a30;
    --bg-card:     #0f2240;
    --bg-elevated: #142a4e;
    --surface:     #1a3460;
    --border:      rgba(255, 255, 255, 0.08);
    --border-glow: rgba(200, 35, 51, 0.3);

    --pink:     #c82333;
    --pink-dim: #a01c2b;
    --cyan:     #4a90d9;
    --cyan-dim: #3670b0;
    --purple:   #5b7fb5;
    --gold:     #ffd700;

    --text:      #eef1f5;
    --text-dim:  #98a8c0;
    --text-mute: #607088;

    --font-display: 'Dela Gothic One', cursive;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
em { font-style: normal; color: var(--pink); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Section Tags & Titles ---- */
.section-tag {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 640px;
    margin-bottom: 2.5rem;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}
.btn--primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 0 24px rgba(200, 35, 51, 0.35);
}
.btn--primary:hover {
    background: #d9334a;
    box-shadow: 0 0 40px rgba(200, 35, 51, 0.5);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn--outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(74, 144, 217, 0.15);
}
.btn--ghost {
    background: transparent;
    color: var(--text-dim);
    padding-left: 0;
}
.btn--ghost:hover { color: var(--cyan); }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav.scrolled {
    background: rgba(11, 26, 48, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.15em;
}
.logo-sd {
    color: var(--pink);
    text-shadow: 0 0 20px rgba(200, 35, 51, 0.5);
}
.logo-k { color: #fff; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.25s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
    background: var(--pink);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-weight: 600 !important;
    box-shadow: 0 0 16px rgba(200, 35, 51, 0.25);
    transition: all 0.3s var(--ease-out) !important;
}
.nav-cta:hover {
    box-shadow: 0 0 28px rgba(200, 35, 51, 0.45) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: glow-drift 12s ease-in-out infinite alternate;
}
.hero-glow--pink {
    width: 600px;
    height: 600px;
    background: var(--pink);
    top: -10%;
    right: -5%;
}
.hero-glow--cyan {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    bottom: -15%;
    left: -10%;
    animation-delay: -6s;
    opacity: 0.25;
}
@keyframes glow-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 30px) scale(1.1); }
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.hero-tag {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) 0.2s forwards;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7.5vw, 5.5rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
}
.hero-line {
    display: block;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.35s; }
.hero-line:nth-child(2) { animation-delay: 0.5s; }
.hero-line--accent {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) 0.65s forwards;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) 0.8s forwards;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) 1s forwards;
}
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.9rem;
    border-radius: 99px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: var(--gold);
    background: rgba(251, 191, 36, 0.06);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-mute);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) 1.2s forwards;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%      { opacity: 1;   transform: scaleY(1); }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Date Checker (Gigbuilder widget)
   ============================================================ */
.date-checker {
    padding: 3rem 0 2rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}
.date-checker-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================================
   About Photo
   ============================================================ */
.about-photo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.about-img {
    width: 280px;
    max-width: 100%;
    border-radius: 12px;
    border: 3px solid var(--pink);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   Services Grid
   ============================================================ */
.services {
    padding: 7rem 0;
    position: relative;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.service-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}
.service-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(200, 35, 51, 0.08);
}
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(200, 35, 51, 0.08);
    color: var(--pink);
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--text-dim);
    flex: 1;
}
.service-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink);
    transition: gap 0.3s;
}
.service-card:hover .service-link { color: #d9334a; }

/* ============================================================
   Feature Sections (Weddings / Corporate)
   ============================================================ */
.feature-section {
    padding: 7rem 0;
}
.feature-section--alt {
    background: var(--bg-card);
}
.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-layout--reverse { direction: rtl; }
.feature-layout--reverse > * { direction: ltr; }

.feature-visual {
    display: flex;
    justify-content: center;
}
.feature-visual-frame {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(200, 35, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-visual-frame--cyan {
    border-color: rgba(74, 144, 217, 0.2);
}
.feature-visual-inner {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(200, 35, 51, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.feature-visual-frame--cyan .feature-visual-inner {
    background: rgba(74, 144, 217, 0.05);
}
.neon-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(200, 35, 51, 0.15);
    animation: ring-spin 20s linear infinite;
}
.neon-ring::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--pink);
}
.neon-ring--cyan {
    border-color: rgba(74, 144, 217, 0.15);
    animation-direction: reverse;
}
.neon-ring--cyan::after {
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.feature-stat { text-align: center; }
.feature-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}
.feature-stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.feature-text p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}
.feature-list {
    margin-bottom: 2rem;
}
.feature-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    color: var(--text-dim);
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 8px rgba(200, 35, 51, 0.4);
}
.feature-list a {
    color: var(--cyan);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.feature-list a:hover { border-color: var(--cyan); }
.feature-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   Karaoke Rentals
   ============================================================ */
.rentals {
    padding: 7rem 0;
}
.rental-card {
    position: relative;
    max-width: 720px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
}
.rental-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}
.rental-card-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
}
.rental-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.rental-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}
.rental-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
}
.rental-price { text-align: right; }
.rental-price-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: #fff;
    line-height: 1;
}
.rental-price-period {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.rental-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.rental-feature {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: var(--text);
}
.rental-note {
    font-size: 0.78rem;
    color: var(--text-mute);
    text-align: center;
    margin-top: 0.75rem;
}

.delivery-details {
    max-width: 720px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.delivery-details summary {
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dim);
    cursor: pointer;
    transition: color 0.2s;
}
.delivery-details summary:hover { color: #fff; }
.delivery-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.88rem;
    color: var(--text-dim);
}
.delivery-content p { margin-bottom: 0.75rem; }
.delivery-content ul {
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
}
.delivery-content li {
    list-style: disc;
    margin-bottom: 0.35rem;
}

/* ============================================================
   About
   ============================================================ */
.about {
    padding: 7rem 0;
    background: var(--bg-card);
}
.about-layout {
    display: grid;
    grid-template-columns: auto 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-text p {
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}
.about-text strong { color: var(--text); }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.stat-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: border-color 0.3s;
}
.stat-card:hover { border-color: var(--border-glow); }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-card:nth-child(1) .stat-num { color: var(--pink); }
.stat-card:nth-child(2) .stat-num { color: var(--cyan); }
.stat-card:nth-child(3) .stat-num { color: var(--purple); }
.stat-card:nth-child(4) .stat-num { color: var(--gold); }
.stat-label {
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
    padding: 7rem 0;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 1.02rem;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.3s;
}
.contact-method:hover { border-color: var(--border-glow); }
.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(200, 35, 51, 0.08);
    color: var(--pink);
    flex-shrink: 0;
}
.contact-method strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}
.contact-method span {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 0.35rem;
    letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(200, 35, 51, 0.1);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238888a8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer {
    font-size: 0.78rem;
    color: var(--text-mute);
    text-align: center;
    margin-top: 0.75rem;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.footer-brand { max-width: 320px; }
.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 1rem;
}
.footer-links {
    display: flex;
    gap: 4rem;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
    font-size: 0.88rem;
    color: var(--text-dim);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-mute);
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom a {
    color: var(--pink);
    transition: color 0.2s;
}
.footer-bottom a:hover { color: #d9334a; }

/* ============================================================
   Scroll Animations
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
    .feature-layout,
    .feature-layout--reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        direction: ltr;
    }
    .feature-visual-frame {
        width: 240px;
        height: 240px;
    }
    .feature-visual-inner {
        width: 180px;
        height: 180px;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        background: var(--bg-card);
        border-left: 1px solid var(--border);
        padding: 5rem 2rem 2rem;
        gap: 1.25rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 99;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 1.05rem; color: var(--text); }
    .nav-cta {
        margin-top: 0.5rem;
    }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { min-height: 100svh; padding: 6rem 0 4rem; }
    .hero-badges { gap: 0.5rem; }
    .badge { font-size: 0.68rem; padding: 0.35rem 0.7rem; }
    .hero-scroll { display: none; }

    .services-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .rental-header { flex-direction: column; }
    .rental-price { text-align: left; }
    .rental-features { grid-template-columns: 1fr; }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}
