/* ===== Dulhan Beauty Parlour — WordPress Plugin Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --dbp-bg:        #FFF5F7;
  --dbp-primary:   #A0204C;
  --dbp-primary-light: #C9748A;
  --dbp-secondary: #F9A8C9;
  --dbp-accent:    #D4AF37;
  --dbp-lavender:  #E8D5F5;
  --dbp-peach:     #FFD6CC;
  --dbp-white:     #FFFFFF;
  --dbp-dark:      #3B1220;
  --dbp-muted:     #9B5A72;
  --dbp-serif:     'Playfair Display', Georgia, serif;
  --dbp-sans:      'Poppins', sans-serif;
  --dbp-radius:    12px;
  --dbp-shadow:    0 8px 32px rgba(160,32,76,0.12);
  --dbp-shadow-lg: 0 20px 60px rgba(160,32,76,0.18);
}

/* ── Reset inside plugin scope ── */
.dbp-site * { box-sizing: border-box; margin: 0; padding: 0; }
.dbp-site { font-family: var(--dbp-sans); background: var(--dbp-bg); color: var(--dbp-dark); line-height: 1.6; overflow-x: hidden; }
.dbp-site h1,.dbp-site h2,.dbp-site h3,.dbp-site h4 { font-family: var(--dbp-serif); }
.dbp-site img { max-width: 100%; display: block; }
.dbp-site a { text-decoration: none; color: inherit; }
.dbp-site button { cursor: pointer; border: none; background: none; font-family: var(--dbp-sans); }

/* ── Utility ── */
.dbp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.dbp-section { padding: 96px 0; }
.dbp-section-title { font-size: clamp(32px,5vw,52px); font-weight: 700; color: var(--dbp-dark); margin-bottom: 16px; }
.dbp-section-subtitle { font-size: 16px; color: var(--dbp-muted); max-width: 560px; margin: 0 auto 60px; }
.dbp-text-center { text-align: center; }
.dbp-tag { display: inline-block; background: var(--dbp-secondary); color: var(--dbp-primary); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; }
.dbp-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--dbp-primary), var(--dbp-accent)); border-radius: 2px; margin: 16px auto 0; }

/* ── Buttons ── */
.dbp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--dbp-sans); font-weight: 600; font-size: 15px; padding: 14px 32px; border-radius: 50px; transition: all 0.3s ease; cursor: pointer; }
.dbp-btn-primary { background: var(--dbp-primary); color: #fff; box-shadow: 0 6px 24px rgba(160,32,76,0.3); }
.dbp-btn-primary:hover { background: #8a1a40; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(160,32,76,0.4); color: #fff; }
.dbp-btn-outline { background: transparent; color: var(--dbp-primary); border: 2px solid rgba(160,32,76,0.3); }
.dbp-btn-outline:hover { background: var(--dbp-secondary); border-color: var(--dbp-secondary); transform: translateY(-2px); color: var(--dbp-primary); }
.dbp-btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.dbp-btn-whatsapp:hover { background: #1da853; transform: translateY(-2px); color: #fff; }

/* ── Navbar ── */
.dbp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: all 0.3s ease; }
.dbp-nav.scrolled { background: rgba(255,245,247,0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 12px 0; box-shadow: 0 2px 24px rgba(160,32,76,0.08); }
.dbp-nav-inner { display: flex; justify-content: space-between; align-items: center; }
.dbp-nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--dbp-serif); font-size: 22px; font-weight: 700; color: var(--dbp-primary); }
.dbp-nav-logo svg { width: 24px; height: 24px; }
.dbp-nav-links { display: flex; align-items: center; gap: 32px; }
.dbp-nav-links a { font-size: 14px; font-weight: 500; color: rgba(59,18,32,0.75); transition: color 0.2s; }
.dbp-nav-links a:hover { color: var(--dbp-primary); }
.dbp-nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.dbp-nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dbp-primary); border-radius: 2px; transition: all 0.3s; }
.dbp-mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(255,245,247,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: flex-start; padding: 48px 32px; gap: 24px; }
.dbp-mobile-menu.open { display: flex; }
.dbp-mobile-menu a { font-family: var(--dbp-serif); font-size: 28px; color: var(--dbp-dark); transition: color 0.2s; }
.dbp-mobile-menu a:hover { color: var(--dbp-primary); }
.dbp-mobile-close { position: absolute; top: 24px; right: 24px; font-size: 28px; color: var(--dbp-primary); background: none; border: none; cursor: pointer; font-family: var(--dbp-sans); }

/* ── Hero ── */
.dbp-hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--dbp-bg) 0%, #fce8f0 50%, var(--dbp-lavender) 100%); }
.dbp-hero-blob1 { position: absolute; top: 15%; left: 5%; width: 280px; height: 280px; background: rgba(249,168,201,0.35); border-radius: 50%; filter: blur(60px); pointer-events: none; animation: dbp-float 6s ease-in-out infinite; }
.dbp-hero-blob2 { position: absolute; bottom: 15%; right: 5%; width: 380px; height: 380px; background: rgba(232,213,245,0.4); border-radius: 50%; filter: blur(80px); pointer-events: none; animation: dbp-float 8s ease-in-out infinite reverse; }
@keyframes dbp-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-24px)} }
.dbp-hero-inner { text-align: center; max-width: 780px; margin: 0 auto; position: relative; z-index: 1; animation: dbp-fadeup 0.9s ease both; }
@keyframes dbp-fadeup { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
.dbp-hero h1 { font-size: clamp(42px,8vw,80px); font-weight: 900; color: var(--dbp-dark); line-height: 1.1; margin-bottom: 24px; }
.dbp-hero h1 em { color: var(--dbp-primary); font-style: italic; }
.dbp-hero-sub { font-size: clamp(16px,2vw,20px); color: var(--dbp-muted); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.dbp-hero-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.dbp-hero-rating { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 48px; font-size: 14px; color: var(--dbp-muted); }
.dbp-stars { display: flex; gap: 3px; color: var(--dbp-accent); font-size: 18px; }

/* ── About ── */
.dbp-about { background: #fff; }
.dbp-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.dbp-about-img-wrap { position: relative; }
.dbp-about-img { aspect-ratio: 4/5; border-radius: 50% 50% 24px 24px; overflow: hidden; box-shadow: var(--dbp-shadow-lg); }
.dbp-about-img img { width: 100%; height: 100%; object-fit: cover; }
.dbp-about-badge { position: absolute; bottom: -28px; right: -24px; background: #fff; padding: 20px 24px; border-radius: 16px; box-shadow: var(--dbp-shadow); display: flex; align-items: center; gap: 16px; }
.dbp-about-badge-icon { background: rgba(160,32,76,0.1); padding: 16px; border-radius: 50%; }
.dbp-about-badge-icon svg { color: var(--dbp-accent); fill: var(--dbp-accent); width: 28px; height: 28px; }
.dbp-about-badge-num { font-family: var(--dbp-serif); font-size: 32px; font-weight: 700; color: var(--dbp-dark); line-height: 1; }
.dbp-about-badge-label { font-size: 12px; color: var(--dbp-muted); font-weight: 500; }
.dbp-about-content h2 { font-size: clamp(32px,4vw,48px); margin-bottom: 20px; }
.dbp-about-content p { color: var(--dbp-muted); margin-bottom: 20px; font-size: 16px; }
.dbp-about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.dbp-stat-card { background: var(--dbp-bg); border-radius: var(--dbp-radius); padding: 20px; border: 1px solid rgba(249,168,201,0.4); }
.dbp-stat-num { font-family: var(--dbp-serif); font-size: 28px; font-weight: 700; color: var(--dbp-primary); }
.dbp-stat-label { font-size: 13px; color: var(--dbp-muted); margin-top: 4px; }

/* ── Services ── */
.dbp-services { background: var(--dbp-bg); }
.dbp-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.dbp-service-card { background: #fff; border-radius: 20px; padding: 32px 28px; border: 1px solid rgba(249,168,201,0.3); box-shadow: 0 4px 16px rgba(160,32,76,0.06); transition: all 0.35s ease; position: relative; overflow: hidden; }
.dbp-service-card::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(160,32,76,0.03), rgba(212,175,55,0.03)); opacity: 0; transition: opacity 0.35s; border-radius: 20px; }
.dbp-service-card:hover { transform: translateY(-8px); box-shadow: var(--dbp-shadow-lg); border-color: rgba(160,32,76,0.2); }
.dbp-service-card:hover::before { opacity: 1; }
.dbp-service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(160,32,76,0.1), rgba(249,168,201,0.2)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 28px; transition: transform 0.3s; }
.dbp-service-card:hover .dbp-service-icon { transform: scale(1.1) rotate(5deg); }
.dbp-service-card h3 { font-size: 18px; font-weight: 700; color: var(--dbp-dark); margin-bottom: 10px; }
.dbp-service-card p { font-size: 14px; color: var(--dbp-muted); line-height: 1.7; }
.dbp-service-line { width: 32px; height: 2px; background: linear-gradient(90deg,var(--dbp-primary),var(--dbp-accent)); border-radius: 1px; margin-top: 16px; transition: width 0.3s; }
.dbp-service-card:hover .dbp-service-line { width: 56px; }

/* ── Why Choose Us ── */
.dbp-why { background: #fff; }
.dbp-why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.dbp-why-card { background: var(--dbp-bg); border-radius: 20px; padding: 32px; border: 1px solid rgba(249,168,201,0.3); transition: all 0.35s ease; display: flex; gap: 20px; }
.dbp-why-card:hover { transform: translateY(-6px); box-shadow: var(--dbp-shadow); background: #fff; }
.dbp-why-icon { width: 56px; height: 56px; flex-shrink: 0; background: linear-gradient(135deg, var(--dbp-primary), #c9748a); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; }
.dbp-why-card h3 { font-size: 17px; font-weight: 600; color: var(--dbp-dark); margin-bottom: 8px; }
.dbp-why-card p { font-size: 14px; color: var(--dbp-muted); line-height: 1.7; }

/* ── Testimonials ── */
.dbp-testimonials { background: linear-gradient(135deg, rgba(160,32,76,0.04) 0%, rgba(232,213,245,0.3) 100%); }
.dbp-rating-banner { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 56px; }
.dbp-rating-big { font-family: var(--dbp-serif); font-size: 72px; font-weight: 900; color: var(--dbp-primary); line-height: 1; }
.dbp-rating-info p { font-size: 13px; color: var(--dbp-muted); margin-top: 4px; }
.dbp-testimonial-track { overflow: hidden; }
.dbp-testimonial-inner { display: flex; transition: transform 0.5s cubic-bezier(.25,.46,.45,.94); }
.dbp-testimonial-slide { min-width: 100%; padding: 0 8px; }
.dbp-testimonial-card { background: #fff; border-radius: 20px; padding: 40px; border: 1px solid rgba(249,168,201,0.3); box-shadow: 0 8px 32px rgba(160,32,76,0.08); max-width: 640px; margin: 0 auto; text-align: center; }
.dbp-testimonial-quote { font-size: 48px; color: var(--dbp-secondary); line-height: 1; font-family: Georgia, serif; margin-bottom: 16px; }
.dbp-testimonial-text { font-size: 17px; color: var(--dbp-dark); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.dbp-testimonial-author { font-weight: 600; color: var(--dbp-primary); font-size: 15px; }
.dbp-testimonial-stars { color: var(--dbp-accent); font-size: 16px; margin-bottom: 8px; }
.dbp-carousel-nav { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.dbp-carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(160,32,76,0.2); cursor: pointer; transition: all 0.3s; border: none; }
.dbp-carousel-dot.active { background: var(--dbp-primary); width: 28px; border-radius: 5px; }
.dbp-carousel-arrows { display: flex; justify-content: center; gap: 16px; margin-top: 16px; }
.dbp-carousel-arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(160,32,76,0.2); background: #fff; color: var(--dbp-primary); font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
.dbp-carousel-arrow:hover { background: var(--dbp-primary); color: #fff; border-color: var(--dbp-primary); }

/* ── Gallery ── */
.dbp-gallery { background: var(--dbp-bg); }
.dbp-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }
.dbp-gallery-item { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; }
.dbp-gallery-item:nth-child(1),.dbp-gallery-item:nth-child(5) { grid-row: span 2; }
.dbp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dbp-gallery-item:hover img { transform: scale(1.08); }
.dbp-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(160,32,76,0.5) 0%, transparent 60%); opacity: 0; transition: opacity 0.35s; display: flex; align-items: flex-end; padding: 20px; }
.dbp-gallery-item:hover .dbp-gallery-overlay { opacity: 1; }
.dbp-gallery-overlay span { color: #fff; font-weight: 600; font-size: 14px; font-family: var(--dbp-serif); }

/* Lightbox */
.dbp-lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(20,4,10,0.95); align-items: center; justify-content: center; }
.dbp-lightbox.open { display: flex; }
.dbp-lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 32px 80px rgba(0,0,0,0.6); }
.dbp-lightbox-close { position: absolute; top: 24px; right: 32px; color: #fff; font-size: 36px; cursor: pointer; background: none; border: none; line-height: 1; }

/* ── Booking ── */
.dbp-booking { background: linear-gradient(135deg, var(--dbp-primary) 0%, #c9748a 100%); }
.dbp-booking-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.dbp-booking-info h2 { color: #fff; font-size: clamp(32px,4vw,48px); margin-bottom: 16px; }
.dbp-booking-info p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 16px; }
.dbp-booking-info-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.dbp-booking-info-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); font-size: 15px; }
.dbp-booking-info-list li::before { content:'✓'; background: rgba(255,255,255,0.2); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-size: 12px; }
.dbp-form { background: rgba(255,255,255,0.12); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 24px; padding: 40px; border: 1px solid rgba(255,255,255,0.2); }
.dbp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dbp-form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.dbp-form-group label { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; }
.dbp-form-group input,
.dbp-form-group select,
.dbp-form-group textarea { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 12px; padding: 14px 16px; color: #fff; font-family: var(--dbp-sans); font-size: 14px; outline: none; transition: border-color 0.2s, background 0.2s; width: 100%; }
.dbp-form-group input::placeholder,
.dbp-form-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.dbp-form-group input:focus,
.dbp-form-group select:focus,
.dbp-form-group textarea:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.22); }
.dbp-form-group select option { background: var(--dbp-primary); color: #fff; }
.dbp-form-group textarea { resize: vertical; min-height: 100px; }
.dbp-form-submit { width: 100%; background: #fff; color: var(--dbp-primary); font-weight: 700; font-size: 15px; padding: 16px; border-radius: 50px; cursor: pointer; border: none; font-family: var(--dbp-sans); transition: all 0.3s; margin-top: 8px; }
.dbp-form-submit:hover { background: var(--dbp-bg); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.dbp-form-success { display: none; text-align: center; padding: 32px; }
.dbp-form-success .dbp-success-icon { font-size: 48px; margin-bottom: 16px; }
.dbp-form-success h3 { color: #fff; font-size: 24px; margin-bottom: 8px; }
.dbp-form-success p { color: rgba(255,255,255,0.8); }

/* ── Contact ── */
.dbp-contact { background: #fff; }
.dbp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.dbp-contact-info h2 { font-size: clamp(32px,4vw,48px); margin-bottom: 32px; }
.dbp-contact-items { display: flex; flex-direction: column; gap: 24px; }
.dbp-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.dbp-contact-icon { width: 48px; height: 48px; background: rgba(160,32,76,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; color: var(--dbp-primary); }
.dbp-contact-item h4 { font-size: 14px; font-weight: 600; color: var(--dbp-primary); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.dbp-contact-item p { font-size: 15px; color: var(--dbp-dark); }
.dbp-contact-item a { color: var(--dbp-primary); }
.dbp-contact-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.dbp-map-wrap { border-radius: 20px; overflow: hidden; height: 360px; box-shadow: var(--dbp-shadow); }
.dbp-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Footer ── */
.dbp-footer { background: linear-gradient(135deg, var(--dbp-dark) 0%, #5a1a2e 100%); color: #fff; padding: 72px 0 0; }
.dbp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dbp-footer-brand-name { font-family: var(--dbp-serif); font-size: 22px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.dbp-footer-brand-name svg { color: var(--dbp-primary-light); }
.dbp-footer p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.dbp-footer-social { display: flex; gap: 12px; }
.dbp-footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background 0.2s; }
.dbp-footer-social a:hover { background: var(--dbp-primary); }
.dbp-footer h4 { font-family: var(--dbp-serif); font-size: 16px; margin-bottom: 20px; color: #fff; }
.dbp-footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.dbp-footer-links li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.dbp-footer-links li a:hover { color: var(--dbp-secondary); }
.dbp-footer-bottom { text-align: center; padding: 24px; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── Floating WhatsApp ── */
.dbp-whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 500; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: transform 0.3s; font-size: 28px; text-decoration: none; }
.dbp-whatsapp-float:hover { transform: scale(1.12); }

/* ── Scroll-to-top ── */
.dbp-scroll-top { position: fixed; bottom: 96px; right: 32px; z-index: 500; width: 44px; height: 44px; background: var(--dbp-primary); color: #fff; border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--dbp-shadow); border: none; font-size: 18px; transition: all 0.3s; }
.dbp-scroll-top.visible { display: flex; }
.dbp-scroll-top:hover { transform: translateY(-3px); background: #8a1a40; }

/* ── Scroll reveal animation ── */
.dbp-reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.dbp-reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .dbp-about-grid,.dbp-booking-wrap,.dbp-contact-grid { grid-template-columns: 1fr; }
  .dbp-footer-grid { grid-template-columns: 1fr 1fr; }
  .dbp-about-badge { right: 8px; }
  .dbp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .dbp-gallery-item:nth-child(1),.dbp-gallery-item:nth-child(5) { grid-row: span 1; }
  .dbp-nav-links { display: none; }
  .dbp-nav-hamburger { display: flex; }
  .dbp-booking-wrap { gap: 40px; }
}
@media (max-width: 600px) {
  .dbp-section { padding: 64px 0; }
  .dbp-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .dbp-footer-grid { grid-template-columns: 1fr; }
  .dbp-hero-btns { flex-direction: column; align-items: center; }
  .dbp-about-stats { grid-template-columns: 1fr 1fr; }
  .dbp-form-row { grid-template-columns: 1fr; }
  .dbp-rating-banner { flex-direction: column; text-align: center; gap: 12px; }
  .dbp-why-grid,.dbp-services-grid { grid-template-columns: 1fr; }
}
