/* ==========================================================================
   wedropleads CSS - Full Habitus Layout Rebuild (V6)
   ========================================================================== */

:root {
    --color-orange: #ff5722;
    --color-orange-dark: #e64a19;
    --color-dark: #0f172a;
    --color-text-main: #334155;
    --color-text-muted: #64748b;
    --color-bg-light: #f8fafc;
    --color-bg-blue: #e0f2fe; /* For the secondary CTA */
    --color-white: #ffffff;
    
    /* FAQ Pill Colors */
    --color-pill-orange: #ff5722;
    --color-pill-pink: #fbcfe8;
    --color-pill-purple: #ddd6fe;
    --color-pill-blue: #bae6fd;
    
    /* Abstract Mockup BG Colors */
    --color-ab-purple: #c4b5fd;
    --color-ab-orange: #fdba74;
    --color-ab-darkblue: #1e293b;
    --color-ab-pink: #f9a8d4;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--color-text-main); background-color: var(--color-white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-dark); line-height: 1.2; }
a { text-decoration: none; color: inherit; }

/* Base Layout Helpers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-header-center { text-align: center; max-width: 700px; margin: 0 auto 4rem auto; }
.section-header-center h2 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-header-center p { font-size: 1.15rem; color: var(--color-text-muted); }

.section-header-left { text-align: left; max-width: 700px; margin-bottom: 3rem; }
.section-header-left h2 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-header-left p { font-size: 1.15rem; color: var(--color-text-muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background-color: var(--color-white); color: var(--color-orange); }
.btn-primary:hover { background-color: #fff1ed; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-outline { background-color: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline:hover { background-color: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.btn-login { background-color: var(--color-white); color: var(--color-dark); padding: 0.6rem 1.5rem; font-size: 0.9rem; }
.btn-login:hover { background-color: #f1f5f9; }
.btn-primary-dark { background-color: var(--color-dark); color: var(--color-white); }
.btn-primary-dark:hover { background-color: #1e293b; transform: translateY(-2px); }
.btn-primary-light { background-color: var(--color-orange); color: var(--color-white); border-color: var(--color-orange);}
.btn-primary-light:hover { background-color: var(--color-orange-dark); transform: translateY(-2px); }
.btn-white { background-color: var(--color-white); color: var(--color-dark); }
.w-100 { width: 100%; }

/* ==========================================================================
   HERO WRAPPER (Fixed Overlap)
   ========================================================================== */
.hero-container { padding: 20px; width: 100%; }
.hero-wrapper { 
    position: relative; 
    background-color: var(--color-orange); 
    border-radius: 40px; 
    overflow: hidden; 
    padding-bottom: 6rem; 
    min-height: 90vh;
}

/* Floating Decorative Blobs */
.float-blob { position: absolute; border-radius: 50%; z-index: 1; }
.blob-white-1 { width: 80px; height: 80px; background: #fff; top: 20%; left: 10%; opacity: 0.9; }
.blob-pink { width: 60px; height: 60px; background: #fbcfe8; top: 35%; left: 20%; opacity: 0.9; }
.blob-blue { width: 70px; height: 70px; background: #bae6fd; top: 45%; left: 22%; opacity: 0.9; }
.blob-white-2 { width: 60px; height: 60px; background: #e0f2fe; top: 50%; left: 60%; opacity: 0.9; }
.blob-purple { width: 70px; height: 70px; background: #ddd6fe; top: 25%; right: 20%; opacity: 0.9; }
.blob-dark { width: 60px; height: 60px; background: #0f172a; top: 40%; right: 22%; opacity: 0.9; }

/* Navigation */
.header { position: relative; z-index: 10; padding: 2rem 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--color-white); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--color-white); }

/* Hero Content */
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 800px; margin: 8rem auto 6rem auto; color: var(--color-white); }
.hero-title { font-size: 4.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--color-white); margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.25rem; font-weight: 400; color: rgba(255, 255, 255, 0.9); max-width: 650px; margin: 0 auto 2.5rem auto; }
.hero-ctas { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }

/* Corner Cards (Hero) */
.corner-card { 
    background: var(--color-white); border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); border: 6px solid #0f172a; overflow: hidden; position: absolute; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 240px; height: auto;
    --tx: 0px; --ty: 0px; --rot: 0deg;
    transform: translateX(var(--tx)) translateY(var(--ty)) rotate(var(--rot));
    z-index: 5;
}
.corner-card:hover { --ty: -15px; z-index: 10; }

.cc-top-left { top: 200px; left: 5%; --rot: -8deg; }
.cc-bottom-left { bottom: 5%; left: 8%; --rot: 6deg; }
.cc-top-right { top: 250px; right: 5%; --rot: 10deg; }
.cc-bottom-right { bottom: 8%; right: 6%; --rot: -5deg; }

.cc-header { display: flex; justify-content: space-between; padding: 10px 15px; font-size: 0.75rem; font-weight: 600; color: var(--color-dark); border-bottom: 1px solid #e2e8f0; }
.cc-icons { display: flex; gap: 4px; align-items: center; }
.cc-body { padding: 15px; }
.cc-body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.cc-sub { font-size: 0.7rem; color: var(--color-text-muted); margin-bottom: 15px; }

.cc-data-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed #e2e8f0; font-size: 0.8rem; }
.cc-data-row:last-child { border-bottom: none; }
.cc-data-label { color: var(--color-text-muted); }
.cc-data-val { font-weight: 700; color: var(--color-dark); }
.cc-val-green { color: #16a34a; }

/* ==========================================================================
   SECTION 1: Trusted By Logos
   ========================================================================== */
.section-trusted { padding: 4rem 0; border-bottom: 1px solid #e2e8f0; text-align: center; }
.trusted-text { font-size: 0.9rem; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2rem; }
.trusted-logos { display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; }
.trusted-logos span { font-size: 1.5rem; font-weight: 800; color: #94a3b8; opacity: 0.7; }

/* ==========================================================================
   SECTION 2: "Take a Look Inside" (Abstract Vertical Cards)
   ========================================================================== */
.section-look-inside { padding: 6rem 0; }
.abstract-mockups-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.abstract-card { position: relative; height: auto; min-height: 280px; display: flex; justify-content: center; align-items: stretch; padding: 15px 0; }
.abstract-bg { position: absolute; inset: 0; border-radius: 24px; z-index: 1; opacity: 0.85; }
.bg-purple { background-color: var(--color-ab-purple); transform: rotate(-3deg); }
.bg-orange { background-color: var(--color-ab-orange); transform: rotate(3deg); }
.bg-darkblue { background-color: var(--color-ab-darkblue); transform: rotate(-2deg); }
.bg-pink { background-color: var(--color-ab-pink); transform: rotate(4deg); }

.abstract-mockup { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; background: rgba(255, 255, 255, 0.45); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.abstract-mockup .mockup-header { padding: 12px 16px; font-size: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.4); display: flex; justify-content: space-between; align-items: center; color: var(--color-text-main); font-weight: 700;}
.abstract-mockup .mockup-body { padding: 20px; flex-grow: 1; }
.abstract-mockup h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--color-dark); }
.abstract-mockup .mockup-sub { font-size: 0.85rem; color: var(--color-text-main); line-height: 1.6; font-weight: 500; margin-bottom: 0;}

/* Bonus Banner Glassmorphism */
.bonus-pm-wrapper { position: relative; margin-top: 4rem; }
.bonus-pm-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #ff5722, #fbcfe8); border-radius: 24px; transform: rotate(-1deg); z-index: 1; opacity: 0.6;}
.bonus-pm-banner { position: relative; z-index: 2; background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255, 0.9); border-radius: 24px; padding: 2.5rem; display: flex; align-items: center; gap: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.bonus-badge { background: var(--color-orange); color: var(--color-white); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.pm-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--color-dark); }
.pm-content p { font-size: 1.05rem; color: var(--color-text-main); font-weight: 500; }

/* ==========================================================================
   SECTION 3: "What our users say"
   ========================================================================== */
.section-testimonials { padding: 6rem 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--color-bg-light); padding: 2rem; border-radius: 16px; border: 1px solid #e2e8f0; }
.t-user { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #fff; background: var(--color-dark); }
.t-info strong { display: block; font-size: 1rem; color: var(--color-dark); }
.t-info span { font-size: 0.85rem; color: var(--color-text-muted); }
.testimonial-card p { font-size: 0.95rem; font-style: italic; color: var(--color-text-main); line-height: 1.6; }

/* Testimonial Marquee */
.testimonial-marquee-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.testimonial-marquee {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
}
.testimonial-marquee:hover {
  animation-play-state: paused;
}
.testimonial-marquee .testimonial-card {
  width: 350px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.testimonial-marquee .testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 87, 34, 0.15);
  border-color: rgba(255, 87, 34, 0.3);
  z-index: 2;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

/* ==========================================================================
   SECTION 4: Calendar Booking
   ========================================================================== */
.section-booking { padding: 8rem 0; background: var(--color-bg-light); border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.booking-wrapper { max-width: 1000px; margin: 0 auto; background: var(--color-white); border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; overflow: hidden; display: flex; flex-direction: column; }
.booking-header { padding: 2.5rem 2rem; border-bottom: 1px solid #e2e8f0; text-align: center; }
.booking-header h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.booking-header p { font-size: 1.05rem; color: var(--color-text-muted); }
.booking-body { padding: 4rem; display: flex; justify-content: center; align-items: center; min-height: 400px; background: #f8fafc; }
.mock-calendar { text-align: center; color: var(--color-text-muted); }
.mock-calendar svg { margin-bottom: 1rem; color: #cbd5e1; }
.book-btn-wrapper { text-align: center; margin-top: 3rem; }

/* ==========================================================================
   SECTION 5: "Simple, transparent pricing"
   ========================================================================== */
.section-pricing { padding: 6rem 0; }
.pricing-2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; margin: 0 auto; }
.pricing-card { padding: 3rem; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

/* Light Card */
.card-light { background: var(--color-white); border: 1px solid #e2e8f0; }
/* Dark Card */
.card-dark { background: var(--color-dark); color: var(--color-white); position: relative; }
.card-dark h3, .card-dark .currency, .card-dark .amount { color: var(--color-white); }
.card-dark .p-features li { color: rgba(255,255,255,0.8); }

.popular-badge { position: absolute; top: 20px; right: 20px; background: var(--color-orange); color: var(--color-white); padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }

.p-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.p-header p { font-size: 0.9rem; color: var(--color-text-muted); min-height: 40px; }
.p-price { margin: 2rem 0; display: flex; align-items: baseline; }
.currency { font-size: 1.5rem; font-weight: 700; color: var(--color-dark); }
.amount { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--color-dark); margin: 0 0.2rem; line-height: 1; }
.period { font-size: 1rem; color: var(--color-text-muted); font-weight: 600; }

.p-features { list-style: none; margin-bottom: 2rem; }
.p-features li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.95rem; }
.p-features li svg { color: #10b981; flex-shrink: 0; }

/* FAQ section removed */

/* ==========================================================================
   SECTION 7: Dark Rounded Footer
   ========================================================================== */
.footer-rounded { background: var(--color-dark); color: var(--color-white); padding: 5rem 0 2rem 0; border-radius: 40px 40px 0 0; margin-top: 4rem; }
.footer-content { display: flex; justify-content: space-between; gap: 4rem; margin-bottom: 4rem; }
.footer-brand { flex: 1; }
.footer-brand .logo { color: var(--color-white); margin-bottom: 1rem; }
.footer-brand p { color: #94a3b8; font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 300px; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; transition: background 0.3s; }
.social-links a:hover { background: var(--color-orange); }

.footer-links-grid { flex: 2; display: flex; justify-content: space-between; }
.footer-col h4 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-col a { display: block; color: #94a3b8; margin-bottom: 0.8rem; font-size: 0.95rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--color-white); }

.newsletter-form { display: flex; flex-direction: column; gap: 0.5rem; }
.newsletter-form input { padding: 0.8rem 1rem; border-radius: 8px; border: none; outline: none; font-family: var(--font-body); }

.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: #64748b; font-size: 0.85rem; }

/* ==========================================================================
   Mobile Menu Styles
   ========================================================================== */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-link {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--color-orange);
}

.mobile-cta {
    margin-top: 1rem;
}

/* Base grid classes mapping to previous inline styles */
.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.process-grid, .pricing-grid { gap: 2rem; }
.grid-4-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ==========================================================================
   Responsive Media Queries (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 992px) {
    .grid-3-col, .grid-4-col { grid-template-columns: repeat(2, 1fr); }
    .abstract-mockups-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { flex-direction: column; gap: 2rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    
    /* Navigation */
    .nav-links { display: none; }
    .nav-actions .btn-login { display: none; }
    .mobile-toggle { display: block; }
    .nav-container { padding: 0 1.25rem; }
    .header { padding: 1.5rem 0; }
    
    /* Hero Section */
    .hero-content { margin: 2rem auto 2rem auto; padding: 0 1rem; }
    .hero-title { font-size: 2.25rem; line-height: 1.1; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .hero-badge { margin-bottom: 1rem !important; font-size: 0.75rem !important; }
    
    .hero-ctas { 
        flex-direction: column; 
        align-items: center; 
        gap: 1rem; 
    }
    .hero-ctas .btn { 
        width: 100%; 
        max-width: 350px; 
    }
    
    .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; text-align: center; padding-top: 1.5rem; margin-top: 2rem; }
    .hero-stats span { font-size: 0.85rem; }
    
    .corner-card { display: none; /* Hide floating cards on small screens for clarity */ }
    .hero-wrapper { min-height: 100vh; padding-bottom: 3rem; border-radius: 24px; display: flex; flex-direction: column; }
    
    /* Typography */
    .section-header-center, .section-header-left { margin-bottom: 3rem; }
    .section-header-center h2, .section-header-left h2 { font-size: 2rem; }
    
    /* Grids to single column */
    .grid-3-col, .grid-4-col { grid-template-columns: 1fr; gap: 1.5rem; }
    .abstract-mockups-grid { grid-template-columns: 1fr; }
    .pricing-2-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .testimonial-marquee .testimonial-card { width: 300px; }
    
    /* Specific Sections */
    .trusted-logos { gap: 1.5rem; flex-wrap: wrap; }
    .bonus-pm-banner { flex-direction: column; text-align: center; padding: 1.5rem; }
    .p-price .amount { font-size: 3rem; }
    
    .footer-links-grid { flex-direction: column; gap: 2rem; }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-load-down {
    animation: loadDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(-20px);
}
.animate-load-up {
    animation: loadUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
    animation-delay: 0.2s; /* slightly delayed after navbar */
}
@keyframes loadDown {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes loadUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Booking Widget
   ========================================================================== */
.booking-widget {
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    max-width: 1000px;
    margin: 3rem auto 0 auto;
    overflow: hidden;
    text-align: left;
}
.booking-calendar {
    flex: 2;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
}
.bw-step {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}
.date-picker .dp-header {
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.dp-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
}
.dp-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}
.dp-day:not(.dp-label):not(.disabled):hover {
    background: #f1f5f9;
}
.dp-day.selected {
    background: var(--color-orange);
    color: var(--color-white);
    font-weight: 600;
}
.dp-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}
.dp-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.85rem;
}
.time-picker {
    flex: 1;
    min-width: 140px;
}
.time-slots {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.time-btn {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}
.time-btn:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}
.time-btn.active {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
    font-weight: 600;
}
.booking-form-wrapper {
    flex: 1;
    padding: 2.5rem;
    background: #f8fafc;
}
.booking-form-wrapper .form-group {
    margin-bottom: 1.25rem;
}
.booking-form-wrapper label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #475569;
}
.booking-form-wrapper input,
.booking-form-wrapper select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}
.booking-form-wrapper input:focus,
.booking-form-wrapper select:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
}
@media (max-width: 768px) {
    .booking-widget {
        flex-direction: column;
    }
    .booking-calendar {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}
