
/* =========================================================
   Painting GTA - Modern Premium Styles
   File: painting_style.css
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
    --primary: #0f4c81;
    --primary-dark: #0a3559;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #22c55e;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --border: #e5e7eb;
    --shadow-sm: 0 4px 12px rgba(15, 76, 129, 0.08);
    --shadow-md: 0 12px 30px rgba(15, 76, 129, 0.12);
    --shadow-lg: 0 24px 50px rgba(15, 76, 129, 0.18);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s ease;
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #f4f7fb !important;;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
}

/* ---------- Header ---------- */
header {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

header nav a {
    transition: var(--transition);
}

header nav a:hover {
    color: var(--primary) !important;
}

header img {
    width: auto;
    transition: var(--transition);
}

header img:hover {
    transform: scale(1.03);
}

.group:hover .group-hover\:visible {
    visibility: visible;
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

/* ---------- Buttons ---------- */
.btn-primary,
a[href*="painting-gta-booking"],
button[type="submit"] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-primary:hover,
a[href*="painting-gta-booking"]:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.03);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}
/* Smooth premium section spacing */
section {
    position: relative;
}

/* Better containers */
.container {
    max-width: 1280px;
}

/* ---------- Hero ---------- */
/*#home > section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.25), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #0b3a63 0%, #0f4c81 45%, #1d76c2 100%) !important;
}*/

#home h1 {
    /*font-size: clamp(2.25rem, 5vw, 4.5rem);*/
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

#home p {
    /*color: rgba(255,255,255,0.92) !important;*/
    color: darkslategray;
}

#home .max-w-4xl {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}
main {
    padding-top: 5px;
}

/* ---------- Sections ---------- */
section section {
    position: relative;
}

h2 {
    letter-spacing: -0.02em;
}

/* ---------- Cards ---------- */
.rounded-lg.border,
.shadow-sm,
.shadow-lg,
.shadow-xl {
    border-radius: var(--radius) !important;
    border: 1px solid rgba(229, 231, 235, 0.85) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition);
    overflow: hidden;
}

.rounded-lg.border:hover,
.shadow-sm:hover,
.shadow-lg:hover,
.shadow-xl:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
}

/* ---------- Service Cards ---------- */
#services .p-6.bg-gradient-to-r {
    background: linear-gradient(135deg, var(--primary), #1d76c2) !important;
}

#services .inline-flex.rounded-full {
    background: #eff6ff !important;
    color: var(--primary) !important;
    border: 1px solid #dbeafe !important;
    font-weight: 600;
}

/* ---------- Gallery ---------- */
#gallery img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#gallery .rounded-lg:hover img {
    transform: scale(1.08);
}

#gallery .absolute.inset-0.bg-black\/20 {
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15)) !important;
}

/* ---------- Contact Form ---------- */
input,
textarea,
select {
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    transition: var(--transition);
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12) !important;
    outline: none !important;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

/* ---------- Service Areas ---------- */
#contact .bg-red-50 {
    background: linear-gradient(135deg, #fff7ed, #fffbeb) !important;
    border: 1px solid #fde68a;
    font-weight: 600;
    color: #92400e;
    transition: var(--transition);
}

#contact .bg-red-50:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
footer {
    color: rgba(255,255,255,0.75);
    padding: 4rem 2rem 2rem;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 25%),
        linear-gradient(135deg, #0a3559, #0f4c81) !important;
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: #fff !important;
    padding-left: 4px;
}

/* ---------- Utilities ---------- */
.text-white-400 {
    color: #ffffff !important;
}

.bg-background {
    background: #fff !important;
}

.border-border\/40 {
    border-color: rgba(229, 231, 235, 0.8) !important;
}

/* ---------- Animations ---------- */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#home .max-w-4xl,
#services .rounded-lg,
#gallery .rounded-lg,
#contact .rounded-lg {
    animation: floatUp 0.8s ease both;
}

/* ---------- Sticky Mobile CTA ---------- */
@media (max-width: 768px) {
    #home .max-w-4xl {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    header img {
        height: 72px !important;
    }

    #home h1 {
        font-size: 2.2rem;
    }

    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    footer .grid,
    #contact .grid,
    #gallery .grid,
    #services .grid {
        gap: 1.5rem !important;
    }
}

/* ---------- Large Screens ---------- */
@media (min-width: 1280px) {
    #home > section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}




/* ── HEADER ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo img {
        height: 77px;
        width: auto;
        object-fit: contain;
    }

    nav.desktop-nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    nav.desktop-nav a, nav.desktop-nav button.nav-link {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0;
    }

    nav.desktop-nav a:hover, nav.desktop-nav button.nav-link:hover { color: var(--primary-dark); }

    /*.dropdown-wrap { position: relative; }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 0;
      min-width: 240px;
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: all 0.22s ease;
      z-index: 200;
    }

    .dropdown-wrap:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 10px;
      font-size: 14px;
      color: var(--text) !important;
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
      font-weight: 500;
    }

    .dropdown-menu a:hover { background: #fff5ee; color: var(--accent) !important; }
    .dropdown-menu a i { color: var(--accent); width: 18px; }*/


    /* ── MEGA MENU ── */
    .dropdown-wrap { position: relative; }

    .mega-menu {
      position: absolute;
      left: 50%;
      top: calc(100% + 10px);
      transform: translateX(-50%) translateY(-6px);
      width: 680px;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
      opacity: 0;
      visibility: hidden;
      transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      z-index: 200;
    }

    .dropdown-wrap:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-wrap:hover .nav-link i {
      transform: rotate(180deg);
    }

    .nav-link i { transition: transform 0.2s; }

    /* 3-column grid */
    .mega-top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-bottom: 1px solid #f1f5f9;
    }

    .mega-col { padding: 20px 18px; }
    .mega-col + .mega-col { border-left: 1px solid #f1f5f9; }

    .mega-col-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #94a3b8;
      margin-bottom: 10px;
      padding-bottom: 8px;
      border-bottom: 1px solid #f1f5f9;
    }

    /* Menu items */
    .mega-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 10px;
      border-radius: 10px;
      text-decoration: none;
      color: #334155;
      font-size: 13.5px;
      font-weight: 500;
      transition: background 0.15s, color 0.15s;
      margin-bottom: 2px;
    }

    .mega-item:hover { background: #0f4c8169; color: #0a3559; }
    .mega-item:hover .mi-icon { background: #0f4c8169; color: #0a3559; }

    .mi-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: #f1f5f9;
      color: #64748b;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
      transition: background 0.15s, color 0.15s;
    }

    .mi-name { font-size: 13px; font-weight: 600; display: block; }
    .mi-sub  { font-size: 11.5px; color: #6b78a5; display: block; margin-top: 1px; }

    /* Bottom bar */
    .mega-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 20px;
      background: #f8fafc;
    }

    .mega-bottom .mb-note { font-size: 12px; color: #94a3b8; }

    .mega-bottom .mb-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 8px;
      background: linear-gradient(135deg, #0f4c81, #0a3559);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      transition: opacity 0.15s;
    }

    .mega-bottom .mb-cta:hover { opacity: 0.9; }

    /* Badge */
    .badge-new {
      font-size: 10px; font-weight: 700;
      padding: 2px 6px; border-radius: 4px;
      background: #fef3c7; color: #d97706;
      margin-left: auto; flex-shrink: 0;
    }




    .header-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /*.header-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
      text-decoration: none;
      background: var(--surface);
      padding: 9px 16px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: all 0.2s;
      white-space: nowrap;
    }
    .header-phone:hover { background: #fff5ee; color: var(--accent); border-color: var(--accent); }
    .header-phone i { color: var(--accent); font-size: 13px; }*/

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: var(--primary-dark);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 14px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(4,132,232,0.38);
    }

    .btn-primary:hover {
      background: #cf4e00;
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(4,124,232,0.38);
    }

    /*old css*/
    .mobile-menu-btn {
      display: none;
      background: none;
      border: 1px solid var(--border);
      width: 42px; height: 42px;
      border-radius: 10px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--text);
    }
    .mobile-nav {
      display: none;
      position: fixed;
      top: 76px; left: 0; right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 1.5rem;
      z-index: 99;
      box-shadow: var(--shadow-md);
      flex-direction: column;
      gap: 6px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      padding: 12px 16px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 15px;
      color: var(--text);
      text-decoration: none;
      transition: background 0.15s;
    }
    .mobile-nav a:hover { background: var(--surface); color: var(--primary-dark); }



    *{box-sizing:border-box;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;}
    .phone-frame{width:320px;margin:0 auto;background:#f0f2f5;border-radius:28px;border:6px solid #1e293b;overflow:hidden;min-height:560px}
    .phone-header{background:#fff;border-bottom:1px solid #e2e8f0;padding:0 14px;height:52px;display:flex;align-items:center;justify-content:space-between}
    .ph-logo{font-size:15px;font-weight:700;color:#1e293b}.ph-logo span{color:#105c66}
    .ph-hamburger{background:none;border:1px solid #e2e8f0;border-radius:7px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#475569;font-size:14px;transition:background .15s}
    .ph-hamburger.open{background:#fff7ed;border-color:#fdba74;color:#105c66}

    .mobile-nav{background:#fff;border-bottom:1px solid #e2e8f0;overflow:hidden;max-height:0;transition:max-height .35s cubic-bezier(.4,0,.2,1)}
    .mobile-nav.open{max-height:800px}

    .mn-link{display:flex;align-items:center;padding:12px 16px;text-decoration:none;color:#334155;font-size:13.5px;font-weight:600;border-bottom:1px solid #f1f5f9;transition:background .12s}
    .mn-link:hover{background:#f8fafc}
    .mn-link i.lead{width:20px;text-align:center;color:#105c66;font-size:13px;margin-right:10px}

    .mn-accordion-trigger{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;color:#334155;font-size:13.5px;font-weight:700;border-bottom:1px solid #f1f5f9;cursor:pointer;user-select:none;background:#fff;transition:background .12s}
    .mn-accordion-trigger:hover{background:#f8fafc}
    .mn-accordion-trigger .trigger-left{display:flex;align-items:center;gap:10px}
    .trigger-icon{width:28px;height:28px;border-radius:7px;background:#fff7ed;color:#105c66;display:flex;align-items:center;justify-content:center;font-size:12px;flex-shrink:0}
    .mn-accordion-trigger .chevron{font-size:10px;color:#105c66;transition:transform .2s}
    .mn-accordion-trigger.open .chevron{transform:rotate(180deg)}
    .mn-accordion-trigger.open{background:#fffbf7}

    .mn-sub{overflow:hidden;max-height:0;transition:max-height .28s ease;background:#fafafa}
    .mn-sub.open{max-height:600px}

    .mn-sub-header{padding:8px 16px 4px;font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#105c66}

    .mn-sub-item{display:flex;align-items:center;gap:10px;padding:9px 16px 9px 20px;text-decoration:none;color:#475569;font-size:13px;border-bottom:1px solid #f1f5f9;transition:background .12s,color .12s}
    .mn-sub-item:last-child{border-bottom:none}
    .mn-sub-item:hover{background:#fff7ed;color:#ea6c00}
    .mn-sub-item:hover .si-icon{background:#fdba74;color:#c2410c}
    .si-icon{width:28px;height:28px;border-radius:7px;background:#f1f5f9;color:#64748b;display:flex;align-items:center;justify-content:center;font-size:12px;flex-shrink:0;transition:background .12s,color .12s}
    .si-text .si-name{font-size:13px;font-weight:600;color:#334155;display:block}
    .si-text .si-sub{font-size:11px;color:#105c66;display:block;margin-top:1px}
    .mn-sub-item:hover .si-text .si-name{color:#ea6c00}

    .badge-new{font-size:9px;font-weight:700;padding:2px 5px;border-radius:4px;background:#fef3c7;color:#d97706;margin-left:auto;flex-shrink:0}

    .mn-cta{display:flex;align-items:center;justify-content:center;gap:8px;margin:10px 14px;padding:12px;border-radius:10px;background:#f97316;color:#fff;font-size:13px;font-weight:700;text-decoration:none}

    .page-body{padding:16px;background:#f0f2f5}
    .page-placeholder{background:#fff;border-radius:12px;padding:20px;text-align:center;color:#94a3b8;font-size:12px}



/* ── HERO ── */
    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(to bottom, rgba(26,26,46,0.78) 0%, rgba(26,26,46,0.65) 100%),
        url('https://paintinggta.com/gta_assets/images/paintinggta-banner.jpg') center/cover no-repeat;
    }

    .hero-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 2rem;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 4rem;
      align-items: center;
      width: 100%;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232,93,4,0.2);
      border: 1px solid rgba(232,93,4,0.4);
      color: #ffc49b;
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 1.25rem;
    }

    .hero h1 span { color: var(--accent-light); }

    .hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 2rem;
      /*max-width: 520px;*/
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border-radius: var(--radius);
      border: 1.5px solid rgba(255,255,255,0.35);
      text-decoration: none;
      transition: all 0.2s;
      backdrop-filter: blur(8px);
    }

    .btn-outline-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }

    .btn-cta-hero {
      padding: 13px 28px;
      font-size: 15px;
      box-shadow: 0 6px 28px rgba(1,132,232,0.38);
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }

    .hero-stat { text-align: left; }
    .hero-stat .num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
    .hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }

    /* Hero Quote Card */
    .hero-card {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow-lg);
    }

    .hero-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      color: var(--text);
    }

    .hero-card .form-group { margin-bottom: 14px; }

    .hero-card input, .hero-card textarea, .hero-card select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: var(--off-white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .hero-card input:focus, .hero-card textarea:focus {
      border-color: var(--primary-dark);
      box-shadow: 0 0 0 4px rgba(232,93,4,0.1);
      background: #fff;
    }

    .hero-card textarea { min-height: 90px; resize: vertical; }

    .hero-card .submit-btn {
      width: 100%;
      padding: 13px;
      background: var(--primary-dark);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(232,93,4,0.3);
    }

    .hero-card .submit-btn:hover { background: #cf4e00; transform: translateY(-1px); }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--primary);
      padding: 1rem 2rem;
    }

    .trust-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 14px;
      font-weight: 500;
    }

    .trust-item i { color: var(--accent-light); font-size: 18px; }


/* ── SECTION STYLES ── */
    .section { padding: 6rem 2rem; }
    .section-inner { max-width: 1280px; margin: 0 auto; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff5ee;
      color: var(--primary-dark);
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 540px;
    }

    .section-header { margin-bottom: 3.5rem; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }


/* ── TESTIMONIALS ── */
    .testimonials-bg { background: var(--primary); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .testi-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      transition: all 0.3s;
    }

    .testi-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }

    .stars { color: var(--accent-light); font-size: 15px; margin-bottom: 1rem; letter-spacing: 2px; }

    .testi-text {
      font-size: 15px;
      color: rgba(255,255,255,0.85);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testi-author { display: flex; align-items: center; gap: 12px; }

    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--primary-dark);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: #fff;
      flex-shrink: 0;
    }

    .testi-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; color: #fff; }
    .testi-loc { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

    /* ── FAQ ── */
    .faqs-bg { background: var(--off-white); }

    .faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow 0.2s;
    }

    .faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(232,93,4,0.3); }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      gap: 1rem;
    }

    .faq-q span {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: var(--text);
    }

    .faq-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--surface);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      color: var(--primary-dark);
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s;
    }

    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary-dark); color: #fff; }

    .faq-a {
      display: none;
      padding: 0 1.5rem 1.25rem;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-a { display: block; }

     /* ── FOOTER ── */
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      margin: 1rem 0 1.5rem;
      color: rgba(255,255,255,0.6);
    }

    .footer-brand img { 
        height: 77px;
        width: auto;
        opacity: 0.9; 
    }

    .social-links { display: flex; gap: 10px; }

    .social-link {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 16px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .social-link:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-2px); }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: #fff;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

    .footer-links a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 13.5px;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links a:hover { color: #fff; padding-left: 4px; }
    .footer-links a i { font-size: 12px; color: darkgrey; }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 10px;
    }

    .footer-contact-item i { color: var(--bg); margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
    .footer-contact-item a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.85); }

    .footer-disclaimer {
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.07);
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      line-height: 1.6;
    }



/* =========================================================
   Booking Form — ADD these to painting_style.css
   These are ONLY the rules not already in painting_style.css
   ========================================================= */


/* ─────────────────────────────────────
   PAGE HEADER (booking page top banner)
───────────────────────────────────── */
.page-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 5.5rem 0rem 1rem 0rem;
  text-align: center;
  margin-bottom: 2rem;
}

.page-header img {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto 0.75rem;
}

.page-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.page-header p {
  font-size: 14px;
  color: var(--text-light);
}

/* ─────────────────────────────────────
   BOOKING WRAPPER
───────────────────────────────────── */
.booking-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

/* ─────────────────────────────────────
   STEP CARDS
───────────────────────────────────── */
.step-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.step-card.active {
  border-color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(34,197,94,0.12);
}

.step-card.completed {
  border-color: var(--primary-dark);
}

.step-card.locked {
  opacity: 0.6;
  pointer-events: none;
}

/* Step header */
.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  user-select: none;
  background: #fff;
  transition: background 0.15s;
}

.step-card.active .step-header  { background: #f0f4fd; }
.step-card.completed .step-header { cursor: default; }

.step-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Step number circle */
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.25s;
}

.step-card.active .step-num,
.step-card.completed .step-num {
  background: var(--primary-dark);
  color: #fff;
}

.step-card.completed .step-num::before { content: '✓'; }
.step-card.completed .step-num span    { display: none; }

/* Step title & subtitle */
.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.step-card.active .step-title { color: var(--primary); }

.step-subtitle {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Completed summary pill */
.step-summary {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  flex-wrap: wrap;
}

.step-card.completed .step-summary { display: flex; }
.step-summary i { color: var(--primary-dark); font-size: 11px; }

/* Edit button inside summary pill */
.step-edit-btn {
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 13px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.step-edit-btn:hover { background: var(--accent-light); }

/* Green icon badge (right side, visible when completed) */
.step-icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.step-card.completed .step-icon-badge { opacity: 1; }

/* Collapsible step body */
.step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card.active .step-body { max-height: 1200px; }

.step-body-inner { padding: 0 1.5rem 1.5rem; }

/* ─────────────────────────────────────
   BOOKING FORM ELEMENTS
   (scoped so they don't override global
    input/textarea/select in painting_style.css)
───────────────────────────────────── */

/* Labels */
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-label .req { color: var(--red); margin-left: 2px; }

/* Text inputs — scoped to .step-body to avoid global override */
.step-body .form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}
.step-body .form-input:focus {
  border-color: var(--primary-dark) !important;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12) !important;
}
.step-body .form-input::placeholder { color: #9ca3af; }

/* Select — scoped */
.step-body .form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.step-body .form-select:focus {
  border-color: var(--primary-dark) !important;
  outline: none;
}

/* Textarea — scoped */
.step-body .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
}
.step-body .form-textarea:focus {
  border-color: var(--primary-dark) !important;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12) !important;
}

/* Read-only postal field */
.form-input-readonly {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-light);
  background: #f9fafb;
  font-family: inherit;
}

/* Layout helpers */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.form-group { margin-bottom: 14px; }
.form-group:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────
   POSTAL CODE HINTS & ERRORS
───────────────────────────────────── */
.postal-hint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.postal-hint i { color: var(--primary-dark); }

.postal-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
  display: none;
  align-items: center;
  gap: 5px;
}

/* ─────────────────────────────────────
   STEP 2 — TOGGLE BUTTONS & CHECKBOXES
───────────────────────────────────── */
.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}
.toggle-btn:hover {
  border-color: var(--primary-dark);
  background: var(--accent-light);
}
.toggle-btn.selected {
  border-color: var(--primary-dark);
  background: var(--accent-light);
  color: var(--primary);
}
.toggle-btn.selected i { color: var(--primary-dark); }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s;
  user-select: none;
}
.checkbox-item:hover { border-color: var(--primary-dark); background: var(--accent-light); }
.checkbox-item.checked { border-color: var(--primary-dark); background: var(--accent-light); }
.checkbox-item input[type="checkbox"] { display: none; }

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.18s;
  background: #fff;
}
.checkbox-item.checked .custom-checkbox {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.custom-checkbox i { font-size: 11px; color: #fff; display: none; }
.checkbox-item.checked .custom-checkbox i { display: block; }

.checkbox-label { font-size: 14px; font-weight: 500; color: var(--text); }

/* ─────────────────────────────────────
   STEP 3 — CALENDAR
───────────────────────────────────── */
.calendar-wrap { margin-bottom: 14px; }

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-month {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-light);
  transition: all 0.15s;
}
.cal-nav-btn:hover    { border-color: var(--primary-dark); color: var(--primary-dark); }
.cal-nav-btn.disabled { opacity: 0.3; cursor: not-allowed; }

.cal-prev-next { display: flex; align-items: center; gap: 8px; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  padding: 6px 0;
}

.cal-day {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.15s;
  border: 1.5px solid transparent;
  background: none;
  outline: none;
  font-family: inherit;
}

.cal-day.available {
  color: var(--accent-dark);
  font-weight: 700;
}
.cal-day.available:hover {
  background: var(--accent-light);
  border-color: var(--primary-dark);
}
.cal-day.selected {
  background: var(--primary-dark);
  color: #fff !important;
  border-color: var(--primary-dark);
  font-weight: 700;
}
.cal-day.today {
  border-color: var(--border);
  background: #f9fafb;
}
.cal-day.past  { color: #d1d5db; cursor: not-allowed; pointer-events: none; }
.cal-day.empty { cursor: default; pointer-events: none; }

/* Time slots */
.time-slots-wrap { margin-top: 16px; }

.time-slots-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.time-slots-title i { color: var(--primary-dark); }

.no-slots-msg {
  padding: 12px 14px;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.no-slots-msg i { color: var(--text-light); margin-top: 1px; flex-shrink: 0; }

.time-slots { display: flex; flex-wrap: wrap; gap: 8px; }

.time-slot {
  padding: 8px 16px;
  border: 1.5px solid var(--primary-dark);
  border-radius: 8px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.time-slot:hover    { background: var(--primary-dark); color: #fff; }
.time-slot.selected { background: var(--primary-dark); color: #fff; }

/* ─────────────────────────────────────
   STEP 4 — CONSENT + DISCLAIMER
───────────────────────────────────── */
.checkbox-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  cursor: pointer;
}
.checkbox-consent input { margin-top: 3px; accent-color: var(--primary-dark); }
.checkbox-consent span  { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.checkbox-consent span strong { color: var(--primary); }

.form-disclaimer {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────
   BOOKING BUTTONS
   (new names — won't conflict with
    existing .btn-primary in painting_style.css)
───────────────────────────────────── */
.btn-continue {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.btn-continue:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-submit-two {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-check {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.btn-check:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ─────────────────────────────────────
   SUCCESS CARD
───────────────────────────────────── */
.success-card {
  display: none;
  background: #fff;
  border: 1.5px solid var(--primary-dark);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(34,197,94,0.12);
}
.success-card.show { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.success-card h2 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.success-card p  { font-size: 14px; color: var(--text-light); line-height: 1.7; }


/* Prevent global input rule from affecting booking checkboxes */
.checkbox-item .custom-checkbox {
  border: 2px solid var(--border) !important;
  border-radius: 5px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.checkbox-item.checked .custom-checkbox {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

#loader {background:rgba(240,240,240,0.7);position:fixed;top:0;left:0;width:100%;height:100vh;z-index:99999;margin:0 auto;text-align:center;}
#loader p {position:fixed;top:44.7%;width:100%;margin:0 auto;font-size:18px;color:#000;text-align:center;text-transform:capitalize;}
ul.loader{ z-index: 3; width: 150px;height: 60px;list-style: none;position: fixed; left: -3%; right: 0; margin: 0 auto; top: 50%; padding: 0; text-align: center;}
ul.loader li{background-color: #ca0302;width: 10px;height: 10px;float: right;margin-right: 5px;box-shadow: 0px 28px 9px rgba(202,3,2,0.4);}
ul.loader li:first-child{-webkit-animation: loadbars 0.9s cubic-bezier(0.645,0.045,0.355,1) infinite 0s;-moz-animation: loadbars 0.9s cubic-bezier(0.645,0.045,0.355,1) infinite 0s;-ms-animation: loadbars 0.9s cubic-bezier(0.645,0.045,0.355,1) infinite 0s;-o-animation: loadbars 0.9s cubic-bezier(0.645,0.045,0.355,1) infinite 0s;animation: loadbars 0.9s cubic-bezier(0.645,0.045,0.355,1) infinite 0s;}
ul.loader li:nth-child(2){-webkit-animation: loadbars 0.9s ease-in-out infinite -0.2s;-moz-animation: loadbars 0.9s ease-in-out infinite -0.2s;-ms-animation: loadbars 0.9s ease-in-out infinite -0.2s;-o-animation: loadbars 0.9s ease-in-out infinite -0.2s;animation: loadbars 0.9s ease-in-out infinite -0.2s;}
ul.loader li:nth-child(3){-webkit-animation: loadbars 0.9s ease-in-out infinite -0.4s;-moz-animation: loadbars 0.9s ease-in-out infinite -0.4s;-ms-animation: loadbars 0.9s ease-in-out infinite -0.4s;-o-animation: loadbars 0.9s ease-in-out infinite -0.4s;animation: loadbars 0.9s ease-in-out infinite -0.4s;}
ul.loader li:nth-child(4){-webkit-animation: loadbars 0.9s ease-in-out infinite -0.6s;-moz-animation: loadbars 0.9s ease-in-out infinite -0.6s;-ms-animation: loadbars 0.9s ease-in-out infinite -0.6s;-o-animation: loadbars 0.9s ease-in-out infinite -0.6s;animation: loadbars 0.9s ease-in-out infinite -0.6s;}
ul.loader li:nth-child(5){-webkit-animation: loadbars 0.9s ease-in-out infinite -0.8s;-moz-animation: loadbars 0.9s ease-in-out infinite -0.8s;-ms-animation: loadbars 0.9s ease-in-out infinite -0.8s;-o-animation: loadbars 0.9s ease-in-out infinite -0.8s;animation: loadbars 0.9s ease-in-out infinite -0.8s;}
ul.loader li:nth-child(6){-webkit-animation: loadbars 0.9s ease-in-out infinite -1.0s;-moz-animation: loadbars 0.9s ease-in-out infinite -1.0s;-ms-animation: loadbars 0.9s ease-in-out infinite -1.0s;-o-animation: loadbars 0.9s ease-in-out infinite -1.0s;animation: loadbars 0.9s ease-in-out infinite -1.0s;}
@keyframes 'loadbars' {0%{height: 10px;margin-top: 25px;}
    50%{height:50px;margin-top: 0px;}
    100%{height: 10px;margin-top: 25px;}
}
@-webkit-keyframes 'loadbars' {0%{height: 10px;margin-top: 25px;}
    50%{height:50px;margin-top: 0px;}
    100%{height: 10px;margin-top: 25px;}
}
@-moz-keyframes 'loadbars' {0%{height: 10px;margin-top: 25px;}
    50%{height:50px;margin-top: 0px;}
    100%{height: 10px;margin-top: 25px;}
}


/* ─────────────────────────────────────
   RESPONSIVE — booking form only
───────────────────────────────────── */
@media (max-width: 520px) {
  .booking-wrap   { padding: 0 0.75rem 3rem; }
  .step-header    { padding: 1rem; }
  .step-body-inner { padding: 0 1rem 1.25rem; }
  .form-row       { grid-template-columns: 1fr; }
  .toggle-group   { grid-template-columns: 1fr 1fr; }
}




/* ==========================
   BOOKING FORM V2
   ========================== */

.booking-form-v2{
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 30px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.booking-form-v2 .form-row{
    display:flex;
    gap:24px;
    margin-bottom:20px;
}

.booking-form-v2 .form-group{
    flex:1;
}

.booking-form-v2 label{
    display:block;
    font-size:15px;
    font-weight:600;
    color:#1f2937;
    margin-bottom:8px;
}

.booking-form-v2 input,
.booking-form-v2 select,
.booking-form-v2 textarea{
    width:100%;
    height:52px;
    padding:0 16px;
    border:1px solid #d1d5db;
    border-radius:12px;
    background:#fff;
    font-size:15px;
}

.booking-form-v2 textarea{
    height:140px;
    padding:15px;
}

.booking-form-v2 .property-type{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:25px;
}

.booking-form-v2 .property-btn{
    height:58px;
    border:2px solid #e5e7eb;
    border-radius:12px;
    background:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.booking-form-v2 .property-btn:hover{
    border-color:#0f4c81;
}

.booking-form-v2 .property-btn.active{
    background:#0f4c81;
    color:#fff;
    border-color:#0f4c81;
}

.booking-form-v2 .service-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:25px;
}

.booking-form-v2 .service-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    background:#fff;
}

.booking-form-v2 .service-item:hover{
    border-color:#0f4c81;
}

.booking-form-v2 .submit-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:12px;
    background:#0f4c81;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.booking-form-v2 .submit-btn:hover{
    background:#0a3559;
}

.booking-section-title{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}
.booking-consent{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:20px 0;
}

.booking-consent input[type="checkbox"]{
    width:12px !important;
    height:12px !important;
    min-width:12px;
    margin-top:2px;
    flex-shrink:0;
}

.booking-consent span{
    line-height:1.5;
    font-size:12px;
    color:#64748b;
}

@media(max-width:768px){

    .booking-form-v2{
        padding:20px;
    }

    .booking-form-v2 .form-row{
        flex-direction:column;
        gap:15px;
    }

    .booking-form-v2 .property-type{
        grid-template-columns:1fr;
    }
}


/*CTA all all the pages*/
.service-page-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  background:var(--bg-soft, #f8fafc);
  border:1px solid var(--border, #e5e7eb);
  border-radius:var(--radius, 16px);
  padding:18px 22px;
  margin:24px 0;
}
.service-page-cta-text strong{
  display:block;
  font-size:16px;
  color:var(--text, #1f2937);
  margin-bottom:2px;
}
.service-page-cta-text span{
  font-size:13.5px;
  color:var(--text-light, #6b7280);
}
.service-page-cta-btn{
  flex-shrink:0;
  padding:12px 24px;
  background:var(--primary-dark, #0a3559);
  color:#fff;
  font-weight:700;
  font-size:14px;
  border-radius:100px;
  text-decoration:none;
  white-space:nowrap;
  transition:transform 0.2s;
}
.service-page-cta-btn:hover{ transform:translateY(-1px); }

@media (max-width:768px){
  .service-page-cta{ flex-direction:column; align-items:stretch; text-align:center; }
  .service-page-cta-btn{ text-align:center; }
}


/*.mobile-sticky-cta{ display:none; }

@media (max-width:768px){
  .mobile-sticky-cta{
    display:block;
    position:fixed;
    bottom:0; left:0; right:0;
    z-index:9999;
    background:#fff;
    border-top:1px solid var(--border, #e5e7eb);
    padding:0px 16px;
    box-shadow:0 -4px 16px rgba(0,0,0,0.08);
  }
  .mobile-sticky-cta a{
    display:block;
    text-align:center;
    padding:13px;
    background:var(--primary-dark, #0a3559);
    color:#fff;
    font-weight:700;
    font-size:14.5px;
    border-radius:12px;
    text-decoration:none;
  }
  /* push your WhatsApp button up so it doesn't overlap this bar 
  .whats-btn{ bottom:76px !important; }
}*/

