﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #23211F;
    --bg-secondary: #2D2B28;
    --bg-card: #333230;
    --text-primary: #F7F7FF;
    --text-secondary: #DCDCDC;
    --text-muted: #A8A8A8;
    --accent: #E28413;
    --accent-light: #E89E3F;
    --accent-glow: rgba(226, 132, 19, 0.15);
    --bg-light: #3E3C39;
    --border: rgba(240, 240, 240, 0.08);
    /* Multi-layer shadows: inset top highlight + dark drop + soft spread */
    --shadow-sm:
        inset 0 1px 1px rgba(255, 255, 255, 0.07),
        0 1px 3px rgba(0, 0, 0, 0.36),
        0 3px 8px rgba(0, 0, 0, 0.18);
    --shadow-md:
        inset 0 1px 1px rgba(255, 255, 255, 0.09),
        0 4px 10px rgba(0, 0, 0, 0.42),
        0 8px 24px rgba(0, 0, 0, 0.22);
    --shadow-lg:
        inset 0 1px 2px rgba(255, 255, 255, 0.11),
        0 8px 20px rgba(0, 0, 0, 0.52),
        0 20px 48px rgba(0, 0, 0, 0.28);
    /* Sunken / recessed effect */
    --shadow-inset:
        inset 0 2px 8px rgba(0, 0, 0, 0.45),
        inset 0 1px 3px rgba(0, 0, 0, 0.28);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-width: 320px;
}

/* ============================================
           NAVIGATION
        ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    background: rgba(35, 33, 31, 0.78);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid rgba(226, 132, 19, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 1rem;
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #F7F7FF;
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav-logo .i {
    color: #E28413;
}

.nav-logo {
    justify-self: start;
}

.nav-logo img {
    height: clamp(0.875rem, 2.5vw, 2rem);
    width: auto;
    transition: height 0.3s ease;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
    grid-column: 3;
}

/* Two-class selector (0,2,0) beats .btn alone (0,1,0) so size overrides correctly */
.btn.nav-cta-btn {
    padding: 0.42rem 0.95rem;
    font-size: 0.84rem;
    white-space: nowrap;
    line-height: 1.4;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #F7F7FF;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Two-class selector beats .btn mobile override so the CTA matches the nav button */
.btn.mobile-menu-cta {
    padding: 0.55rem 1.4rem;
    font-size: 1.5rem;
    width: auto;
    max-width: none;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* ============================================
           HERO SECTION
        ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 1rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    animation: blobPulse1 10s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 110%;
    background: radial-gradient(ellipse, rgba(139, 90, 43, 0.09) 0%, transparent 65%);
    pointer-events: none;
    animation: blobPulse2 13s ease-in-out infinite 3s;
}

@keyframes blobPulse1 {
    0%, 100% { transform: scale(1) translate(0, 0); }
    40%       { transform: scale(1.10) translate(-3%, 5%); }
    70%       { transform: scale(0.93) translate(4%, -2%); }
}

@keyframes blobPulse2 {
    0%, 100% { transform: scale(1) translate(0, 0); }
    35%       { transform: scale(1.15) translate(4%, -5%); }
    65%       { transform: scale(0.90) translate(-3%, 4%); }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-description {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    opacity: 0.78;
}

.hero h1 span,
.hero-description span {
    color: var(--accent);
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.22),
        0 2px 6px rgba(226, 132, 19, 0.35),
        0 6px 18px rgba(0, 0, 0, 0.28);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.22),
        0 4px 14px rgba(226, 132, 19, 0.5),
        0 10px 28px rgba(0, 0, 0, 0.32);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s both;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   HERO MACBOOK ANIMATION
   ============================================ */

.macbook-wrap {
    position: relative;
    width: 300px;
    height: 420px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* ── Crumpled amber ball that unravels into the laptop ── */
.laptop-ball {
    width: 72px;
    height: 72px;
    position: absolute;
    left: 50%;
    top: 44px;
    transform: translate(-50%, 0);
    background: radial-gradient(circle at 35% 30%, #f4a61e, #c87a0a 55%, #7a4804);
    border-radius: 50%;
    box-shadow:
        inset -8px -6px 18px rgba(0, 0, 0, 0.40),
        inset 4px 4px 10px rgba(255, 255, 255, 0.12),
        0 8px 28px rgba(226, 132, 19, 0.50);
    animation: ball-crumple 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 10;
}

@keyframes ball-crumple {
    0%  { transform: translate(-50%, 0) scale(1);    border-radius: 50%;              opacity: 1; }
    15% { transform: translate(-50%, 0) scale(1.15) rotateZ(12deg);  border-radius: 50% 43% 57% 47%; }
    30% { transform: translate(-50%, 0) scale(0.88) rotateZ(-9deg);  border-radius: 47% 53% 44% 56%; }
    45% { transform: translate(-50%, 0) scale(1.08) rotateZ(16deg);  border-radius: 56% 44% 52% 48%; }
    62% { transform: translate(-50%, 0) scale(0.65) rotateZ(-4deg);  border-radius: 50%; opacity: 0.75; }
    82% { transform: translate(-50%, 0) scale(0.25);                 border-radius: 50%; opacity: 0.30; }
    100%{ transform: translate(-50%, 0) scale(0);                    border-radius: 50%; opacity: 0; }
}

/* ── MacBook fades in as ball disappears ── */
@keyframes mac-appear {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── MacBook container ── */
.macbook-wrap .macbook {
    width: 150px;
    height: 96px;
    position: absolute;
    left: 50%;
    top: 10px;
    margin-left: -75px;
    perspective: 500px;
    transform: scale(2);
    transform-origin: top center;
    opacity: 0;
    animation: mac-appear 0.5s ease forwards 2.3s;
}

.macbook-wrap .shadow {
    position: absolute;
    width: 60px;
    height: 0px;
    left: 40px;
    top: 160px;
    transform: rotateX(80deg) rotateY(0deg) rotateZ(0deg);
    box-shadow: 0 0 60px 40px rgba(0, 0, 0, 0.30);
    animation: mac-shadow infinite 7s ease;
}

.macbook-wrap .inner {
    z-index: 20;
    position: absolute;
    width: 150px;
    height: 96px;
    left: 0;
    top: 0;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg);
    animation: mac-rotate infinite 7s ease;
}

/* ── Screen (lid) ── */
.macbook-wrap .screen {
    width: 150px;
    height: 96px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 7px;
    background: #b87010;
    transform-style: preserve-3d;
    transform-origin: 50% 93px;
    transform: rotateX(0deg);
    animation: mac-lid-screen infinite 7s ease;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0) 100%);
    background-position: left bottom;
    background-size: 300px 300px;
    box-shadow:
        inset 0 3px 7px rgba(244, 166, 30, 0.18),
        inset 0 -2px 8px rgba(0, 0, 0, 0.32),
        inset 2px 0 6px rgba(0, 0, 0, 0.18),
        inset -2px 0 6px rgba(0, 0, 0, 0.18);
}

.macbook-wrap .screen .face-one {
    width: 150px;
    height: 96px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 7px;
    background: #c98018;
    transform: translateZ(2px);
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.22);
}

/* iTrast logo on lid back */
.macbook-wrap .mac-logo {
    position: absolute;
    height: 20px;
    width: auto;
    left: 50%;
    top: 50%;
    margin-top: -10px;
    transform: translateX(-50%) rotateY(180deg) translateZ(0.1px);
    opacity: 0.75;
}

.macbook-wrap .camera {
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #1a0c00;
    position: absolute;
    left: 50%;
    top: 4px;
    margin-left: -1.5px;
}

.macbook-wrap .display {
    width: 130px;
    height: 74px;
    margin: 10px;
    background: radial-gradient(ellipse at 50% 115%, rgba(226, 132, 19, 0.14) 0%, #060810 58%);
    border-radius: 1px;
    position: relative;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 1);
}

.macbook-wrap .shade {
    position: absolute;
    left: 0;
    top: 0;
    width: 130px;
    height: 74px;
    background: linear-gradient(-135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.07) 47%, rgba(255,255,255,0) 48%);
    animation: mac-screen-shade infinite 7s ease;
    background-size: 300px 200px;
    background-position: 0px 0px;
}

/* ── Body (keyboard deck) ── */
.macbook-wrap .body {
    width: 150px;
    height: 96px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 7px;
    background: #a85e08;
    transform-style: preserve-3d;
    transform-origin: 50% bottom;
    transform: rotateX(-90deg);
    animation: mac-lid-body infinite 7s ease;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 100%);
}

.macbook-wrap .body .face-one {
    width: 150px;
    height: 96px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 7px;
    transform-style: preserve-3d;
    background: #c07810;
    animation: mac-lid-keyboard-area infinite 7s ease;
    transform: translateZ(-2px);
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(30deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.20);
}

.macbook-wrap .touchpad {
    width: 40px;
    height: 31px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 4px;
    margin: -44px 0 0 -18px;
    background: #a86208;
    background-image: linear-gradient(30deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}

.macbook-wrap .keyboard {
    width: 130px;
    height: 45px;
    position: absolute;
    left: 7px;
    top: 41px;
    border-radius: 4px;
    transform-style: preserve-3d;
    background: #aa6608;
    background-image: linear-gradient(30deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
    padding: 0 0 0 2px;
}

.macbook-wrap .key {
    width: 6px;
    height: 6px;
    background: #5a2e02;
    float: left;
    margin: 1px;
    transform: translateZ(-2px);
    border-radius: 2px;
    box-shadow: 0 -2px 0 #3a1802;
    animation: mac-keys infinite 7s ease;
}

.macbook-wrap .key.space { width: 45px; }
.macbook-wrap .key.f     { height: 3px; }

.macbook-wrap .pad {
    width: 5px;
    height: 5px;
    background: #3a1802;
    border-radius: 100%;
    position: absolute;
}

.macbook-wrap .pad.one   { left: 20px;  top: 20px;    }
.macbook-wrap .pad.two   { right: 20px; top: 20px;    }
.macbook-wrap .pad.three { right: 20px; bottom: 20px; }
.macbook-wrap .pad.four  { left: 20px;  bottom: 20px; }

/* ── Keyframes (mac- prefixed to avoid conflicts) ── */
@keyframes mac-rotate {
    0%  { transform: rotateX(-20deg) rotateY(0deg)   rotateZ(0deg); }
    5%  { transform: rotateX(-20deg) rotateY(-20deg) rotateZ(0deg); }
    20% { transform: rotateX(30deg)  rotateY(200deg) rotateZ(0deg); }
    25% { transform: rotateX(-60deg) rotateY(150deg) rotateZ(0deg); }
    60% { transform: rotateX(-20deg) rotateY(130deg) rotateZ(0deg); }
    65% { transform: rotateX(-20deg) rotateY(120deg) rotateZ(0deg); }
    80% { transform: rotateX(-20deg) rotateY(375deg) rotateZ(0deg); }
    85% { transform: rotateX(-20deg) rotateY(357deg) rotateZ(0deg); }
    87% { transform: rotateX(-20deg) rotateY(360deg) rotateZ(0deg); }
    100%{ transform: rotateX(-20deg) rotateY(360deg) rotateZ(0deg); }
}

@keyframes mac-lid-screen {
    0%  { transform: rotateX(0deg);   background-position: left bottom; }
    5%  { transform: rotateX(50deg);  background-position: left bottom; }
    20% { transform: rotateX(-90deg); background-position: -150px top; }
    25% { transform: rotateX(15deg);  background-position: left bottom; }
    30% { transform: rotateX(-5deg);  background-position: right top; }
    38% { transform: rotateX(5deg);   background-position: right top; }
    48% { transform: rotateX(0deg);   background-position: right top; }
    90% { transform: rotateX(0deg);   background-position: right top; }
    100%{ transform: rotateX(0deg);   background-position: right center; }
}

@keyframes mac-lid-body {
    0%, 50%, 100% { transform: rotateX(-90deg); }
}

@keyframes mac-lid-keyboard-area {
    0%   { background-color: #c07810; }
    50%  { background-color: #9a5e08; }
    100% { background-color: #c07810; }
}

@keyframes mac-screen-shade {
    0%   { background-position: -20px 0px; }
    5%   { background-position: -40px 0px; }
    20%  { background-position: 200px 0; }
    50%  { background-position: -200px 0; }
    80%  { background-position: 0px 0px; }
    85%  { background-position: -30px 0; }
    90%  { background-position: -20px 0; }
    100% { background-position: -20px 0px; }
}

@keyframes mac-keys {
    0%  { box-shadow: 0 -2px 0 #3a1802; }
    5%  { box-shadow: 0 -1px 0 #3a1802; }
    20% { box-shadow: -1px 1px 0 #3a1802; }
    60% { box-shadow: -1px 1px 0 #3a1802; }
    80% { box-shadow: 0 -2px 0 #3a1802; }
    100%{ box-shadow: 0 -2px 0 #3a1802; }
}

@keyframes mac-shadow {
    0%  { transform: rotateX(80deg) rotateY(0deg)  rotateZ(0deg);             box-shadow: 0 0 60px 40px rgba(0,0,0,0.3); }
    5%  { transform: rotateX(80deg) rotateY(10deg) rotateZ(0deg);             box-shadow: 0 0 60px 40px rgba(0,0,0,0.3); }
    20% { transform: rotateX(30deg) rotateY(-20deg) rotateZ(-20deg);          box-shadow: 0 0 50px 30px rgba(0,0,0,0.3); }
    25% { transform: rotateX(80deg) rotateY(-20deg) rotateZ(50deg);           box-shadow: 0 0 35px 15px rgba(0,0,0,0.1); }
    60% { transform: rotateX(80deg) rotateY(0deg)  rotateZ(-50deg) translateX(30px); box-shadow: 0 0 60px 40px rgba(0,0,0,0.3); }
    100%{ box-shadow: 0 0 60px 40px rgba(0,0,0,0.3); }
}

.hero-mockup {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: var(--bg-card);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-header {
    background: var(--bg-secondary);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E5E5;
}

.mockup-dot:first-child {
    background: #FF6B6B;
}

.mockup-dot:nth-child(2) {
    background: #FFE066;
}

.mockup-dot:nth-child(3) {
    background: #69DB7C;
}

.mockup-content {
    padding: 2rem;
    background: white;
}

.booking-preview {
    text-align: center;
}

.booking-preview h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.calendar-mini {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-muted);
}

.calendar-day.active {
    background: var(--accent);
    color: white;
    font-weight: 600;
}

.calendar-day.available {
    background: var(--accent-glow);
    color: var(--accent);
    cursor: pointer;
}

.time-slots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.time-slot {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.time-slot.selected {
    background: var(--accent);
    color: white;
}

/* ============================================
           SERVICES SECTION
        ============================================ */
.services {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
    opacity: 0.8;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.service-card.expanded {
    grid-column: 1 / -1;
    padding: 2rem;
    position: relative;
    z-index: 10;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-card.hidden-by-expansion {
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #F7F7FF;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
}

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

/* Accordion Styles */
.service-card .service-description,
.service-card .service-features {
    display: none;
    max-height: 0;
    opacity: 0;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.service-card.active .service-description,
.service-card.active .service-features {
    display: block;
    max-height: 500px;
    opacity: 1;
    margin-bottom: 1.5rem;
}

.service-card .service-visual {
    display: none;
    max-height: 0;
    opacity: 0;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.service-card.active .service-visual {
    display: flex;
    max-height: 500px;
    opacity: 1;
    margin-top: 1.5rem;
}

.service-card.featured.active .service-description,
.service-card.featured.active .service-features {
    max-height: none;
}

.service-card.featured.active .service-visual {
    max-height: none;
}

.service-card .service-title {
    transition: margin-bottom 0.3s ease;
}

.service-card.active {
    padding: 2rem;
}

.service-card.featured {
    grid-column: span 1;
    display: block;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--accent);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(226, 132, 19, 0.18),
        0 8px 28px rgba(0, 0, 0, 0.38);
}

.service-card.featured.expanded {
    grid-column: 1 / -1;
    display: block;
    padding: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-card.featured .service-icon {
    background: var(--accent-glow);
    color: var(--accent);
}

.service-card.featured .service-title,
.service-card.featured .service-description {
    color: var(--text-primary);
}

.service-card.featured .service-description {
    opacity: 1;
}

.service-card.featured .service-price {
    color: var(--text-muted);
    opacity: 1;
}

.service-card.featured .service-price span {
    color: var(--accent);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.3);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ============================================
   SERVICE CARD HEADINGS - HIGHLIGHTER STYLE
============================================ */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    font-weight: 600;
    color: var(--text-primary);
    display: inline;
    background: linear-gradient(180deg, transparent 60%, rgba(226, 132, 19, 0.4) 60%);
    padding: 0 4px;
}

.section-heading.solution {
    background: linear-gradient(180deg, transparent 60%, rgba(105, 219, 124, 0.4) 60%);
}

.heading-wrapper {
    margin-bottom: 0.4rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.service-card.featured .service-features li {
    color: var(--text-secondary);
}

.service-card.featured .service-features li::before {
    color: var(--accent);
}

.service-price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-price span {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--accent);
}

.service-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booking Demo Placeholder */
.booking-demo-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.booking-demo-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.booking-demo-placeholder p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   DEMO SECTION — REDESIGNED
============================================ */

/* ── Section wrapper ── */
.demo-section {
    background: var(--bg-primary);
    padding: 5rem 0 6rem;
}

.demo-section .section-header {
    margin-bottom: 1rem;
}

.demo-section .section-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* ── Outer container ── */
.demo-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* ============================================
   CHALKBOARD ANNOTATIONS
============================================ */
.chalk-annotations-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
    gap: 0.5rem;
}

.chalk-annotation {
    font-family: 'Caveat', cursive;
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    font-weight: 600;
    color: var(--accent);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(226, 132, 19, 0.3);
    letter-spacing: 0.3px;
    line-height: 1.2;
    text-align: center;
    align-items: center;
}

.chalk-annotation.left {
    transform: none;
    align-items: center;
    text-align: center;
}

.chalk-annotation.right {
    transform: none;
    align-items: center;
    text-align: center;
}

.chalk-annotation svg {
    width: clamp(24px, 6vw, 35px);
    height: clamp(18px, 5vw, 28px);
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(226, 132, 19, 0.4));
    animation: chalkWobble 3s ease-in-out infinite;
}

.chalk-annotation.left svg {
    animation-delay: 0s;
}

.chalk-annotation.right svg {
    animation-delay: 1.5s;
}

@keyframes chalkWobble {

    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }

    25% {
        transform: rotate(-2deg) translateY(2px);
    }

    75% {
        transform: rotate(2deg) translateY(-1px);
    }
}

/* Very small screens (320px - 374px) */
@media (max-width: 374px) {
    .chalk-annotation {
        font-size: 0.8rem;
    }

    .chalk-annotation svg {
        width: 22px;
        height: 16px;
    }

    .chalk-annotations-wrapper {
        margin-bottom: 0.5rem;
    }
}

/* Small screens (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .button-with-annotation {
        flex: 1;
        min-width: 0;
        gap: 0.5rem;
    }

    .view-buttons {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .view-btn {
        padding: 0.6rem 0.6rem;
        font-size: 0.75rem;
        flex: 1;
        justify-content: center;
    }

    .chalk-annotation {
        font-size: 0.7rem;
    }

    .chalk-annotation span {
        font-size: 0.65rem;
    }

    .chalk-annotation svg {
        width: 18px;
        height: 14px;
    }
}

/* Larger screens (480px+) */
@media (min-width: 480px) {
    .chalk-annotations-wrapper {
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .chalk-annotation {
        font-size: 1rem;
    }

    .chalk-annotation.left {
        transform: rotate(-3deg);
    }

    .chalk-annotation.right {
        transform: rotate(3deg);
    }
}

/* Tablet and up (768px+) */
@media (min-width: 768px) {
    .chalk-annotations-wrapper {
        margin-bottom: 1.25rem;
    }

    .chalk-annotation {
        font-size: 1.15rem;
    }

    .chalk-annotation.left {
        transform: rotate(-4deg);
    }

    .chalk-annotation.right {
        transform: rotate(3deg);
    }
}

/* ── Toggle ── */
.view-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    margin-bottom: 1.75rem;
}

.view-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 500px;
}

.button-with-annotation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.chalk-annotations-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.view-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-text-short { display: none; }

.view-btn:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-primary);
}

.view-btn.active {
    border-color: transparent;
    color: #fff;
}

.button-with-annotation:first-child .view-btn.active {
    background: linear-gradient(135deg, #334155, #1E293B);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 4px 14px rgba(15, 23, 42, 0.65),
        0 8px 24px rgba(0, 0, 0, 0.35);
}

.button-with-annotation:last-child .view-btn.active {
    background: linear-gradient(135deg, #334155, #1E293B);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 4px 14px rgba(15, 23, 42, 0.65),
        0 8px 24px rgba(0, 0, 0, 0.35);
}

/* ── Browser frame ── */
.demo-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 0 1px rgba(255,255,255,0.06),
        0 8px 24px rgba(0,0,0,0.45),
        0 32px 80px rgba(0,0,0,0.62);
}

.demo-bar {
    background: #1E2733;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.demo-dots {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.demo-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.demo-dot.r { background: #FF6058; }
.demo-dot.y { background: #FFBD2E; }
.demo-dot.g { background: #28CA41; }

.demo-url {
    flex: 1;
    background: rgba(255,255,255,0.07);
    padding: 0.38rem 0.85rem;
    border-radius: 8px;
    font-size: 0.73rem;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    text-align: left;
    letter-spacing: 0.01em;
}

.demo-content {
    min-height: 520px;
}

/* =============================================
   CUSTOMER VIEW
============================================= */
.customer-view {
    background: #F0F4FF;
    padding: 2rem 1.5rem;
    min-height: 520px;
}

.book-container {
    max-width: 580px;
    margin: 0 auto;
}

.book-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.book-header h2 {
    font-family: 'Playfair Display', serif;
    color: #1E293B;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.book-header p {
    color: #64748B;
    font-size: 0.88rem;
    font-weight: 500;
}

/* ── Step progress ── */
.progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 1.75rem;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    background: #fff;
    color: #94A3B8;
    border: 2px solid #E2E8F0;
    transition: all 0.35s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-num.active {
    background: #45A3D2;
    border-color: #45A3D2;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(69, 163, 210, 0.2);
}

.step-num.done {
    background: #7DBCE1;
    border-color: #7DBCE1;
    color: #fff;
}

.step-line {
    width: 48px;
    height: 2px;
    background: #E2E8F0;
    flex-shrink: 0;
    transition: background 0.35s ease;
}

.step-line.active {
    background: linear-gradient(to right, #7DBCE1, #45A3D2);
}

/* ── Booking card ── */
.book-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow:
        0 1px 3px rgba(0,0,0,0.06),
        0 4px 12px rgba(0,0,0,0.07),
        0 16px 48px rgba(69, 163, 210, 0.12);
    border: 1px solid rgba(69, 163, 210, 0.12);
    border-top-color: rgba(255, 255, 255, 0.9);
}

.card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1E293B;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F1F5F9;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #94A3B8;
}

/* ── Services ── */
.svc-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cat-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.cat-label:first-child {
    margin-top: 0;
}

.svc-item {
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #FAFBFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.svc-item:hover {
    border-color: #45A3D2;
    background: #EFF6FF;
    transform: translateX(3px);
}

.svc-item.selected {
    border-color: #45A3D2;
    background: #EFF6FF;
    box-shadow: 0 0 0 3px rgba(69, 163, 210, 0.15);
}

.svc-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1E293B;
    display: block;
    margin-bottom: 0.15rem;
}

.svc-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.73rem;
    color: #64748B;
    flex-shrink: 0;
}

.svc-meta span {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.svc-meta svg {
    width: 12px;
    height: 12px;
    color: #94A3B8;
}

/* ── Calendar ── */
.cal-wrap {
    display: none;
}

.cal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cal-nav {
    background: #EFF6FF;
    color: #45A3D2;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.cal-nav:hover {
    background: #45A3D2;
    color: #fff;
}

.cal-month {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: #1E293B;
    font-weight: 700;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.wd {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #94A3B8;
    padding: 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    color: #1E293B;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    font-size: 0.78rem;
    position: relative;
    border: none;
}

.day.has:hover {
    background: #EFF6FF;
    color: #45A3D2;
    font-weight: 700;
}

.day.sel {
    background: #45A3D2;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(69, 163, 210, 0.4);
}

.day.off {
    opacity: 0.25;
    cursor: not-allowed;
}

.day.empty {
    cursor: default;
}

.day.has::after {
    content: '';
    position: absolute;
    bottom: 3px;
    width: 4px;
    height: 4px;
    background: #45A3D2;
    border-radius: 50%;
}

.day.sel.has::after {
    background: rgba(255,255,255,0.8);
}

/* ── Time slots ── */
.times-wrap {
    display: none;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #F1F5F9;
}

.times-wrap.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.times-title {
    font-weight: 700;
    color: #1E293B;
    font-size: 0.85rem;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.time-btn {
    padding: 0.55rem 0.3rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #FAFBFF;
    font-size: 0.78rem;
    font-family: inherit;
}

.time-btn:hover:not(.booked) {
    border-color: #45A3D2;
    background: #EFF6FF;
    color: #45A3D2;
}

.time-btn.sel {
    background: #45A3D2;
    border-color: #45A3D2;
    color: #fff;
    box-shadow: 0 2px 8px rgba(69, 163, 210, 0.35);
}

.time-btn.booked {
    opacity: 0.35;
    cursor: not-allowed;
    background: #F1F5F9;
    text-decoration: line-through;
    color: #94A3B8;
}

/* ── Back button ── */
.back-btn {
    background: transparent;
    border: 1.5px solid #E2E8F0;
    color: #64748B;
    padding: 0.38rem 0.85rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.back-btn:hover {
    border-color: #94A3B8;
    color: #1E293B;
}

/* ── Form / Step 3 ── */
.form-wrap {
    display: none;
}

.summary {
    background: #EFF6FF;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.1rem;
    border-left: 4px solid #45A3D2;
}

.sum-label {
    font-size: 0.7rem;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.sum-val {
    font-weight: 700;
    color: #1E293B;
    font-size: 0.9rem;
    word-break: break-word;
}

.form-group {
    margin-bottom: 0.85rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.88rem;
    font-family: inherit;
    transition: all 0.2s ease;
    color: #1E293B;
    background: #FAFBFF;
}

.form-group input:focus {
    outline: none;
    border-color: #45A3D2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(69, 163, 210, 0.15);
}

.error-msg {
    display: block;
    color: #EF4444;
    font-size: 0.72rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

.form-group input.error {
    border-color: #EF4444;
    background: #FFF5F5;
}

/* ── Submit / action buttons ── */
.submit-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #45A3D2, #2e86c1);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    margin-top: 0.5rem;
    letter-spacing: 0.01em;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        0 2px 6px rgba(69, 163, 210, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.18);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        0 6px 20px rgba(69, 163, 210, 0.45),
        0 8px 24px rgba(0, 0, 0, 0.22);
}

.submit-btn--outline {
    background: transparent;
    color: #45A3D2;
    border: 2px solid #45A3D2;
    margin-top: 1rem;
}

.submit-btn--outline:hover {
    background: #EFF6FF;
    box-shadow: none;
}

.submit-btn--solid {
    background: linear-gradient(135deg, #45A3D2, #2e86c1);
    margin-top: 0.5rem;
}

/* ── Success state ── */
.success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7DBCE1, #45A3D2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(69, 163, 210, 0.35);
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.success-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.success h3 {
    font-family: 'Playfair Display', serif;
    color: #1E293B;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.success p {
    color: #64748B;
    font-size: 0.88rem;
}

/* =============================================
   ADMIN VIEW
============================================= */
.admin-view {
    background: #0F172A;
    padding: 1.25rem;
    min-height: 520px;
    display: none;
}

.admin-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 800;
    color: #F1F5F9;
    letter-spacing: -0.02em;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #45A3D2, #2e86c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(69, 163, 210, 0.3);
}

.admin-avatar svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.admin-name {
    font-weight: 600;
    font-size: 0.82rem;
    color: #94A3B8;
}

/* ── Stat cards ── */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.stat {
    background: #1E293B;
    padding: 0.9rem 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: all 0.2s;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.55),
        0 6px 16px rgba(0, 0, 0, 0.3);
}

.stat:hover {
    border-color: rgba(255,255,255,0.12);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.07),
        0 4px 10px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.34);
}

.stat-label {
    font-size: 0.62rem;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.stat-val {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 800;
    color: #F1F5F9;
    letter-spacing: -0.02em;
}

.stat-val.green { color: #7DBCE1; }
.stat-val.blue  { color: #45A3D2; }
.stat-val.orange { color: #F59E0B; }

/* ── Appointments panel ── */
.panel {
    background: #162032;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    overflow: hidden;
    box-shadow: var(--shadow-inset);
}

.panel-head {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
    background: transparent;
}

.panel-title {
    display: flex;
    align-items: stretch;
    flex: 1;
    min-width: 0;
}

.panel-tabs {
    display: flex;
    gap: 0;
    border-bottom: none;
    flex: 1;
}

.panel-tab {
    padding: 0.1rem 0.2rem;
    border: none;
    background: transparent;
    color: #64748B;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.panel-tab:hover {
    color: #CBD5E1;
}

.panel-tab.active {
    color: #45A3D2;
    border-bottom-color: #45A3D2;
}

.filters {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-left: auto;
    padding-left: 1rem;
}

.filter {
    padding: 0.3rem 0.65rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #64748B;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.filter:hover {
    border-color: rgba(255,255,255,0.2);
    color: #CBD5E1;
}

.filter.active {
    background: rgba(69, 163, 210, 0.15);
    color: #45A3D2;
    border-color: rgba(69, 163, 210, 0.3);
}

.filter-select {
    display: none;
    padding: 0.1rem 0.1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    color: #CBD5E1;
    border-radius: 8px;
    font-size: 0.75rem;
    font-family: inherit;
    cursor: pointer;
    margin-left: auto;
}

.filter-select:focus {
    outline: none;
    border-color: rgba(69, 163, 210, 0.4);
}

/* ── Table ── */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

th {
    text-align: left;
    padding: 0.65rem 0.85rem;
    font-size: 0.62rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: transparent;
    white-space: nowrap;
}

td {
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.78rem;
    color: #CBD5E1;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255,255,255,0.02);
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.client-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: #F1F5F9;
}

.client-email {
    font-size: 0.68rem;
    color: #475569;
}

.status {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    font-size: 0.62rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.status.confirmed {
    background: rgba(125, 188, 225, 0.12);
    color: #7DBCE1;
    border: 1px solid rgba(125, 188, 225, 0.2);
}

.status.pending {
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status.completed {
    background: rgba(69, 163, 210, 0.12);
    color: #45A3D2;
    border: 1px solid rgba(69, 163, 210, 0.2);
}

.status.cancelled {
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.actions {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.act {
    padding: 0.28rem 0.6rem;
    border: none;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.act.complete {
    background: rgba(69, 163, 210, 0.12);
    color: #45A3D2;
    border: 1px solid rgba(69, 163, 210, 0.2);
}

.act.complete:hover {
    background: #45A3D2;
    color: #fff;
    border-color: #45A3D2;
}

.act.cancel {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.act.cancel:hover {
    background: #EF4444;
    color: #fff;
    border-color: #EF4444;
}

/* ============================================
           CONTACT / ABOUT SECTION
        ============================================ */
.contact {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    width: 100%;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(51, 50, 48, 0.50);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-method:hover {
    transform: translateX(8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.contact-method svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-method span {
    font-weight: 500;
    font-size: 0.85rem;
    word-break: break-all;
}

.contact-image {
    position: relative;
    width: 100%;
}

.about-card {
    background: rgba(51, 50, 48, 0.55);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.about-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent-glow);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 4px 14px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.28);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-title {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.about-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.about-location svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* ============================================
           FOOTER
        ============================================ */
footer {
    padding: 1.5rem 1rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
           ANIMATIONS
        ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TOUCH DEVICE - DISABLE ALL EFFECTS
============================================ */
@media (hover: none) and (pointer: coarse) {

    /* Remove all transitions except for accordion and mobile menu */
    .nav,
    .nav-links a,
    .nav-cta,
    .btn,
    .btn-primary,
    .btn-secondary,
    .view-btn,
    .svc-item,
    .cal-nav,
    .day,
    .time-btn,
    .submit-btn,
    .back-btn,
    .filter,
    .act,
    .contact-method,
    .social-links a,
    .form-group input {
        transition: none !important;
    }

    /* Navigation - remove hover effects */
    .nav-links a:hover,
    .nav-links a:focus,
    .nav-links a:active {
        color: #F7F7FF;
    }

    .nav-cta:hover,
    .nav-cta:focus,
    .nav-cta:active {
        background: var(--accent) !important;
        transform: none !important;
    }

    /* Buttons - remove all effects */
    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        background: var(--accent);
        transform: none;
        box-shadow: 0 4px 20px rgba(45, 90, 61, 0.3);
    }

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary:active {
        border-color: var(--border);
        color: var(--text-primary);
        transform: none;
    }

    /* Service cards - keep accordion but remove hover lift */
    .service-card:hover {
        transform: none;
        box-shadow: none;
    }

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

    /* Demo section elements */
    .view-btn:hover,
    .view-btn:focus,
    .view-btn:active {
        background: transparent;
        color: var(--text-secondary);
    }

    .button-with-annotation:first-child .view-btn.active:hover,
    .button-with-annotation:first-child .view-btn.active:focus,
    .button-with-annotation:first-child .view-btn.active:active {
        background: linear-gradient(135deg, #334155, #1E293B);
        color: white;
    }

    .button-with-annotation:last-child .view-btn.active:hover,
    .button-with-annotation:last-child .view-btn.active:focus,
    .button-with-annotation:last-child .view-btn.active:active {
        background: linear-gradient(135deg, #334155, #1E293B);
        color: white;
    }

    .svc-item:hover,
    .svc-item:focus,
    .svc-item:active {
        transform: none;
        box-shadow: none;
    }

    .svc-item.selected:hover,
    .svc-item.selected:focus,
    .svc-item.selected:active {
        border-color: #45A3D2;
    }

    .cal-nav:hover,
    .cal-nav:focus,
    .cal-nav:active {
        background: #45A3D2;
    }

    .day:hover,
    .day:focus,
    .day:active {
        transform: none;
        box-shadow: none;
        border-style: solid;
    }

    .day.sel:hover,
    .day.sel:focus,
    .day.sel:active {
        border-color: #45A3D2;
    }

    .time-btn:hover,
    .time-btn:focus,
    .time-btn:active {
        transform: none;
        box-shadow: none;
    }

    .time-btn.sel:hover,
    .time-btn.sel:focus,
    .time-btn.sel:active {
        border-color: #45A3D2;
    }

    .submit-btn:hover,
    .submit-btn:focus,
    .submit-btn:active {
        background: #45A3D2;
    }

    .back-btn:hover,
    .back-btn:focus,
    .back-btn:active {
        background: transparent;
        border-color: #E2E8F0;
        color: #64748B;
    }

    /* Admin filters and actions */
    .filter:hover,
    .filter:focus,
    .filter:active {
        background: transparent;
        border-color: rgba(255,255,255,0.1);
    }

    .filter.active:hover,
    .filter.active:focus,
    .filter.active:active {
        background: #45A3D2;
        color: white;
        border-color: #45A3D2;
    }

    .act.confirm:hover,
    .act.confirm:focus,
    .act.confirm:active {
        background: rgba(40, 167, 69, 0.1);
        color: #28a745;
    }

    .act.complete:hover,
    .act.complete:focus,
    .act.complete:active {
        background: rgba(69, 163, 210, 0.1);
        color: #45A3D2;
    }

    .act.cancel:hover,
    .act.cancel:focus,
    .act.cancel:active {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }

    /* Contact section */
    .contact-method:hover,
    .contact-method:focus,
    .contact-method:active {
        transform: none;
        border-color: var(--border);
    }

    .social-links a:hover,
    .social-links a:focus,
    .social-links a:active {
        background: var(--bg-secondary);
        color: var(--text-secondary);
        transform: none;
    }

    /* Form inputs */
    .form-group input:focus {
        border-color: #45A3D2;
    }
}

/* ============================================
           RESPONSIVE BREAKPOINTS
        ============================================ */

/* Tablets and up (768px+) */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero {
        padding: 8rem 2rem 4rem;
    }

    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .btn {
        width: auto;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-inner {
        padding: 0 2rem;
    }

    .demo-container {
        padding: 2rem;
    }

    .times-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact {
        padding: 6rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-card {
        padding: 2.5rem;
    }

    .about-avatar {
        width: 165px;
        height: 165px;
    }
}

/* Mobile only (less than 768px) */
@media (max-width: 767px) {
    .nav-inner {
        display: flex;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .nav-cta-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .services {
        padding: 4rem 0;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card.active,
    .service-card.expanded {
        padding: 1.5rem;
    }

    .book-card {
        margin: 0 auto;
    }
}

/* Small phones (320px - 374px) */
@media (max-width: 374px) {
    .nav {
        padding: 0.65rem 0.5rem;
    }

    .nav-inner {
        padding: 0 0.25rem;
    }

    .nav-logo {
        font-size: 1.15rem;
    }

    .hero {
        padding: 5rem 0.75rem 2.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }

    .btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .services,
    .contact {
        padding: 3rem 0;
    }

    .section-inner {
        padding: 0 0.75rem;
    }

    .service-card {
        padding: 1rem;
        border-radius: 16px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .demo-container {
        padding: 1rem;
        border-radius: 12px;
    }

    .view-btn {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
    }

    .demo-bar {
        padding: 0.5rem 0.65rem;
    }

    .demo-dot {
        width: 8px;
        height: 8px;
    }

    .demo-url {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
    }

    .customer-view {
        padding: 1rem 0.75rem;
    }

    .book-card {
        padding: 1rem;
        border-radius: 10px;
    }

    .step-num {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .step-line {
        width: 18px;
    }

    .svc-item {
        padding: 0.5rem;
    }

    .svc-name {
        font-size: 0.8rem;
    }

    .svc-meta {
        font-size: 0.7rem;
        gap: 0.5rem;
    }

    .cal-nav {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .day {
        font-size: 0.65rem;
        border-radius: 4px;
    }

    .times-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .time-btn {
        padding: 0.45rem 0.3rem;
        font-size: 0.7rem;
    }

    .form-group input {
        padding: 0.55rem;
        font-size: 0.8rem;
    }

    .submit-btn {
        padding: 0.65rem;
        font-size: 0.85rem;
    }

    .back-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }

    .admin-view {
        padding: 0.75rem;
    }

    .stats {
        gap: 0.35rem;
    }

    .stat {
        padding: 0.5rem 0.25rem;
        border-radius: 8px;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    .panel-head {
        padding: 0.6rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .filters {
        width: 100%;
    }

    .filter {
        flex: 1;
        text-align: center;
        padding: 0.3rem 0.4rem;
        font-size: 0.65rem;
    }

    table {
        min-width: 450px;
    }

    th,
    td {
        padding: 0.5rem 0.35rem;
        font-size: 0.65rem;
    }

    .client-name {
        font-size: 0.7rem;
    }

    .client-email {
        font-size: 0.6rem;
    }

    .act {
        padding: 0.2rem 0.4rem;
        font-size: 0.55rem;
    }

    .contact-method {
        padding: 0.75rem;
    }

    .contact-method svg {
        width: 18px;
        height: 18px;
    }

    .contact-method span {
        font-size: 0.75rem;
    }

    .about-card {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .about-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .about-title {
        font-size: 0.8rem;
    }

    .about-location {
        font-size: 0.8rem;
    }

    .about-location svg {
        width: 14px;
        height: 14px;
    }

    .social-links {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .social-links svg {
        width: 16px;
        height: 16px;
    }

    .mobile-menu a {
        font-size: 1.25rem;
    }

    footer {
        padding: 1.25rem 0.75rem;
    }

    footer p {
        font-size: 0.75rem;
    }
}

/* Medium phones (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .times-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .panel-tab {
        padding: 0.4rem 0.65rem;
        font-size: 0.8rem;
    }
}

/* Larger phones (480px+) */
@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .times-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Restore original panel tab & filter values above mobile breakpoint */
    .panel-tabs {
        gap: 0;
    }

    .panel-tab {
        padding: 0.1rem 0.2rem;
        font-size: 0.75rem;
    }

    .filters {
        gap: 0.3rem;
    }

    .filter {
        display: inline-flex;
        padding: 0.3rem 0.65rem;
    }

    .filter-select {
        display: none;
    }
}

/* Mobile demo button labels & filter dropdown (max-width: 479px) */
@media (max-width: 479px) {
    .btn-text-long { display: none; }
    .btn-text-short { display: inline; }

    .filters .filter { display: none; }
    .filter-select { display: block; }
}

/* Narrow phones: strip panel-tab horizontal padding (max-width: 389px) */
@media (max-width: 389px) {
    .panel-tabs {
        gap: 0.8rem;
    }

    .panel-tab {
        padding-left: 0;
        padding-right: 0;
    }
}