@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --orange:   #ff6a00;
  --orange2:  #ee0979;
  --pink:     #ff4d9e;
  --purple:   #7c3aed;
  --teal:     #0ea5e9;
  --gold:     #f59e0b;
  --green:    #10b981;
  --white:    #ffffff;
  --bg:       #ffffff;
  --bg-soft:  #f8f9ff;
  --bg-card:  #ffffff;
  --text:     #1a1a2e;
  --text-mid: #4b5563;
  --text-light: #9ca3af;
  --border:   rgba(0,0,0,0.08);
  --shadow:   0 10px 30px rgba(0,0,0,0.1);
  --primary:   #ff6a00;
  --secondary: #ee0979;
  --accent:    #7c3aed;
  --radius: 14px;
  --t: all 0.3s ease;
  --grad-fire:   linear-gradient(135deg, #ff6a00, #ee0979);
  --grad-sky:    linear-gradient(135deg, #0ea5e9, #7c3aed);
  --grad-gold:   linear-gradient(135deg, #f59e0b, #ff6a00);
  --grad-fresh:  linear-gradient(135deg, #10b981, #0ea5e9);
  --card-bg: #ffffff;
  --gray: #9ca3af;
  --navy: #1a1a2e;
  --navy-mid: #16213e;
  --navy-light: #f8f9ff;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { background: var(--white); color: var(--text); font-family: 'Poppins', sans-serif; }

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius:3px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(255,106,0,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px; margin-top: 38px;
}
.nav-logo { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; background: transparent !important; }
.nav-logo .brand-name { background: var(--grad-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: 0.875rem; font-weight: 600; padding: 8px 14px; border-radius: 10px; transition: all 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--grad-fire); }
.nav-estimate { background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(255,106,0,0.12)) !important; border: 1.5px solid rgba(245,158,11,0.5) !important; color: #d97706 !important; }
.nav-estimate:hover { background: var(--grad-gold) !important; color: var(--white) !important; border-color: transparent !important; }
.nav-cta { color: var(--text-mid) !important; border-radius: 10px; padding: 9px 20px !important; background: transparent !important; box-shadow: none; }
.nav-cta:hover { color: var(--white) !important; background: var(--grad-fire) !important; transform: translateY(-1px); }
.nav-cta.active { background: var(--grad-fire) !important; color: var(--white) !important; box-shadow: 0 4px 16px rgba(255,106,0,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 3px; background: var(--text); border-radius: 3px; transition: all 0.3s; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 12px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s; }
.btn-primary { background: var(--grad-fire); color: #fff; padding: 11px 22px; border-radius: 10px; text-decoration: none; box-shadow: 0 4px 14px rgba(255,106,0,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,106,0,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-gold { background: var(--grad-gold); color: var(--white); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }

/* SECTIONS */
section { padding: 80px 6%; }
.section-label { font-size: 0.78rem; font-weight: 700; background: var(--grad-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: 14px; color: var(--text); }
.section-title span { background: var(--grad-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { color: var(--text-mid); font-size: 1rem; max-width: 600px; margin-bottom: 50px; line-height: 1.8; }
.divider { width: 60px; height: 4px; background: var(--grad-fire); border-radius: 2px; margin-bottom: 16px; }
.text-center { text-align: center; }
.text-center .divider { margin: 0 auto 16px; }
.text-center .section-sub { margin: 0 auto 50px; }

/* PAGE HERO */
.page-hero { margin-top: 108px; padding: 80px 6%; background: linear-gradient(135deg, #fff5f0 0%, #fdf2ff 50%, #f0f9ff 100%); border-bottom: 2px solid var(--border); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,106,0,0.06) 0%, transparent 70%); }
.page-hero h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 14px; position: relative; color: var(--text); }
.page-hero h1 span { background: var(--grad-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { color: var(--text-mid); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.8; position: relative; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-light); position: relative; }
.breadcrumb a { color: var(--orange); text-decoration: none; }

/* HERO SLIDER */
.slider-section { position: relative; height: 100vh; min-height: 600px; overflow: hidden; margin-top: 108px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover !important; background-position: center !important; transform: scale(1.05); transition: transform 8s ease; }
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.10) 100%); }
.slide-content { position: relative; padding: 0 8%; max-width: 700px; }
.slide-tag { display: inline-block; background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.55); color: #fff; padding: 6px 18px; border-radius: 30px; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 22px; backdrop-filter: blur(4px); }
.slide-content h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 18px; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.45); }
.slide-content h1 span { background: linear-gradient(135deg,#ffd700,#ff9a00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.slide-content p { color: rgba(255,255,255,0.92); font-size: 1.08rem; line-height: 1.8; margin-bottom: 32px; text-shadow: 0 1px 8px rgba(0,0,0,0.4); font-weight: 500; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.2); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--orange); width: 30px; border-radius: 5px; }
.slider-arrows { position: absolute; bottom: 30px; right: 8%; display: flex; gap: 10px; z-index: 10; }
.arrow { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 1.5px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; color: var(--text); transition: all 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.arrow:hover { background: var(--grad-fire); color: white; border-color: transparent; }

/* STATS */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--grad-fire); }
.stats-bar > div { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stats-bar > div:last-child { border-right: none; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: 1px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); display: block; }
.about-badge { position: absolute; bottom: 24px; right: 24px; background: var(--grad-fire); color: var(--white); font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; width: 90px; height: 90px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; box-shadow: 0 8px 24px rgba(255,106,0,0.4); }
.about-badge small { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; }
.about-text h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 20px; color: var(--text); }
.about-text h2 span { background: var(--grad-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-text p { color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; font-size: 0.95rem; }
.about-list { list-style: none; margin: 24px 0 32px; }
.about-list li { padding: 8px 0; color: var(--text-mid); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.about-list li::before { content: '✓'; width: 22px; height: 22px; background: var(--grad-fire); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: white; flex-shrink: 0; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.35s; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: 0 20px 50px rgba(255,106,0,0.15); }
.card-img-wrap { position: relative; overflow: hidden; height: 200px; }
.card-img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img { transform: scale(1.08); }
.card-badge { position: absolute; top: 12px; left: 12px; background: var(--grad-fire); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 1px; }
.card-body { padding: 20px; }
.card-title { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.card-desc { color: var(--text-mid); font-size: 0.85rem; line-height: 1.7; margin-bottom: 14px; }
.card-price { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; background: var(--grad-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px; }
.card-price small { font-size: 0.85rem; color: var(--text-light); -webkit-text-fill-color: var(--text-light); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.feature-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all 0.35s; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.feature-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(255,106,0,0.12); }
.feature-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.feature-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.8; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px); gap: 16px; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(255,106,0,0); transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { background: rgba(255,106,0,0.3); }
.gallery-overlay span { color: var(--white); font-size: 2rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay span { opacity: 1; }

/* VIDEOS */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.video-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.35s; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.video-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(255,106,0,0.15); }
.video-card iframe { width: 100%; height: 210px; display: block; border: none; }
.video-info { padding: 16px 20px; }
.video-info h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.video-info p { color: var(--text-mid); font-size: 0.82rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.contact-info-card { background: linear-gradient(135deg, #fff5f0, #fdf2ff); border: 1.5px solid rgba(255,106,0,0.15); border-radius: var(--radius); padding: 36px 32px; }
.contact-info-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; color: var(--text); }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.info-icon { width: 46px; height: 46px; background: var(--grad-fire); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.info-text strong { display: block; font-size: 0.82rem; background: var(--grad-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.info-text span { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }
.contact-form-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.contact-form-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: #f8f9ff; border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 13px 16px; color: var(--text); font-family: 'Poppins', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.3s; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); background: #fff5f0; }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: #fff; color: var(--text); }
.map-wrap { margin-top: 50px; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.info-card { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border: 1.5px solid var(--border); display: flex; flex-direction: column; transition: var(--t); }
.info-card:hover { transform: translateY(-8px); }
.card-icon { width: 55px; height: 55px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--grad-fire); color: #fff; font-size: 24px; margin-bottom: 20px; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 20px; backdrop-filter: blur(6px); }
.modal-overlay.show { display: flex; }
.modal { background: var(--white); border: 1.5px solid rgba(255,106,0,0.2); border-radius: 20px; padding: 40px; max-width: 480px; width: 100%; position: relative; animation: slideUp 0.3s ease; box-shadow: 0 24px 60px rgba(0,0,0,0.15); }
@keyframes slideUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.modal-close { position: absolute; top: 16px; right: 16px; background: #f3f4f6; border: none; color: var(--text-mid); width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: all 0.3s; }
.modal-close:hover { background: var(--grad-fire); color: white; }
.modal h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.modal-product-name { background: var(--grad-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 0.9rem; font-weight: 600; margin-bottom: 24px; }
.modal-box { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; max-width: 480px; width: 90%; position: relative; }
.modal-box h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.4rem; margin-bottom: 6px; color: var(--text); }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.2rem; color: var(--text-light); cursor: pointer; }
.success-msg { text-align: center; padding: 20px 0; }
.success-msg .check { font-size: 2.5rem; }
.success-msg h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; color: #25D366; margin: 10px 0 6px; }
.success-msg p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.7; }

/* FOOTER */
footer { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 60px 6% 28px; color: white; border-top: 4px solid; border-image: linear-gradient(90deg,#ff6a00,#ee0979,#7c3aed,#0ea5e9) 1; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 40px; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; text-decoration: none; transition: all 0.3s; color: white; }
.social-btn:hover { background: var(--grad-fire); border-color: transparent; transform: translateY(-3px); }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; color: white; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 30px; height: 3px; background: var(--grad-fire); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a::before { content: '→'; font-size: 0.7rem; color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom a { color: var(--orange); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }

/* WHATSAPP & CALL FLOAT — defined in canonical block below */
@keyframes pulse-green { 0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); } 50% { box-shadow: 0 12px 36px rgba(37,211,102,0.75); } }
@keyframes pulse-call  { 0%,100% { box-shadow: 0 8px 28px rgba(255,80,80,0.45);   } 50% { box-shadow: 0 12px 36px rgba(255,80,80,0.75);   } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* CTA */
.cta-banner { padding: 70px 8%; background: var(--grad-fire); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%); }
.cta-banner h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; max-width: 550px; margin-left: auto; margin-right: auto; position: relative; }

/* Social icon colors */
.footer-socials a:nth-child(1) i { color: #1877F2; }
.footer-socials a:nth-child(2) i { color: #E1306C; }
.footer-socials a:nth-child(3) i { color: #25D366; }
.footer-socials a:nth-child(4) i { color: #ff6a00; }

/* BEGGAR BOMB - no image, color on hover */
.est-card-no-img { width: 100%; height: 130px; background: linear-gradient(135deg, #f3f4f6, #e5e7eb); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; transition: all 0.4s ease; border: 2px dashed #d1d5db; }
.est-product-card:hover .est-card-no-img { background: var(--grad-fire); border-color: transparent; }

/* RESPONSIVE */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } .about-grid { gap: 40px; } }
@media (max-width: 768px) {
  /* ── Global mobile overflow prevention ── */
  html, body { overflow-x: hidden; max-width: 100%; }
  *, *::before, *::after { box-sizing: border-box; max-width: 100%; }
  img, video, iframe { max-width: 100%; height: auto; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    padding: 20px; border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 999; overflow-y: auto; max-height: calc(100vh - 70px);
  }
  .nav-links.open li a { display: block; padding: 12px 16px; font-size: 1rem; }

  /* Contact link must never be hidden */
  .nav-links.open .nav-cta { display: block !important; }

  .slider-section { height: 85vh; }
  .slide-content { padding: 0 5%; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stats-bar > div:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: auto; max-height: 340px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: auto; grid-row: auto; }
  .gallery-item img { height: 160px; width: 100%; object-fit: cover; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Cards — ensure no overflow */
  .card, .feature-card, .video-card { width: 100%; max-width: 100%; }
  .card-img, .card-img-wrap { width: 100%; max-width: 100%; }
  .cards-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

  /* Padding/margin safety */
  section { padding: 60px 4%; }
}
@media (max-width: 480px) {
  section { padding: 60px 5%; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   SPARKKING UPDATES — Header, Footer, Videos, Contact, Colors
   ============================================================ */

/* NAV — make text more visible on white */
.nav-links a { color: #374151 !important; }
.nav-links a:hover, .nav-links a.active { color: var(--white) !important; }

/* COLORFUL HEADER TOP BAR — already gradient in header.js, ensure visibility */
.top-marquee-bar { box-shadow: 0 2px 14px rgba(255,106,0,0.35); }

/* COLORFUL FOOTER — more vibrant */
footer {
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a2e 35%, #16213e 65%, #0f3460 100%) !important;
  border-top: 5px solid transparent !important;
  border-image: linear-gradient(90deg, #ff6a00, #ee0979, #ffd700, #7c3aed, #0ea5e9, #10b981, #ff6a00) 1 !important;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,106,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Footer headings more colorful */
.footer-col h4 {
  background: linear-gradient(135deg, #ff6a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15rem !important;
}
.footer-col h4::after { background: linear-gradient(90deg,#ff6a00,#ffd700) !important; width:40px !important; }

/* Footer description text more visible */
footer p { color: rgba(255,255,255,0.88) !important; }
.footer-desc { color: rgba(255,255,255,0.92) !important; font-size: 0.88rem !important; line-height: 1.9 !important; }
.footer-col ul li a { color: rgba(255,255,255,0.80) !important; }
.footer-col ul li a:hover { color: #ffd700 !important; }
.footer-brand-name { color: #fff !important; }
.footer-bottom p { color: rgba(255,255,255,0.70) !important; }

/* Footer bottom */
.footer-bottom { border-top-color: rgba(255,255,255,0.15) !important; }
.footer-bottom p { color: rgba(255,255,255,0.6) !important; }

/* Social buttons more colorful */
.social-btn { transition: all 0.3s !important; }
.social-btn:hover { transform: translateY(-4px) scale(1.1) !important; }

/* VIDEOS PAGE — text visibility fix */
.video-info h4 { color: #1a1a2e !important; font-size: 1.05rem; }
.video-info p { color: #4b5563 !important; font-size: 0.84rem; }
.video-card { background: #fff !important; border: 1.5px solid #e5e7eb !important; }
.video-card .video-info { background: #fff; padding: 18px 20px 20px; }
.video-featured .video-info h3 { color: #1a1a2e !important; }
.video-featured .video-info p { color: #4b5563 !important; }

/* CONTACT PAGE — reduce excessive whitespace */
.contact-grid { gap: 32px !important; }
.contact-info-card { padding: 26px 24px !important; }
.contact-form-card { padding: 26px 24px !important; }
.info-item { margin-bottom: 16px !important; }
.info-text span { color: #4b5563 !important; }
.info-text strong { color: #ff6a00 !important; -webkit-text-fill-color: unset !important; background: none !important; }
.quick-contact { margin-bottom: 32px !important; gap: 12px !important; }
.quick-item h4 { color: #1a1a2e !important; }
.quick-item span { color: #4b5563 !important; }
.quick-item { background: #fff8f5 !important; border: 1.5px solid rgba(255,106,0,0.18) !important; }
.map-wrap { margin-top: 30px !important; height: 300px !important; }

/* Page hero default — better text contrast */
.page-hero { margin-top: 108px; }
.page-hero h1 { color: #1a1a2e; }
.page-hero h1 span { background: var(--grad-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { color: #4b5563; }
.breadcrumb { color: #6b7280 !important; }

/* Feature cards text */
.feature-card h3 { color: #1a1a2e !important; }
.feature-card p { color: #4b5563 !important; }

/* Cards on dark bg (home featured section) */
section[style*="navy"] .card-title { color: #fff !important; }
section[style*="navy"] .card-desc { color: rgba(255,255,255,0.75) !important; }
section[style*="navy"] .section-title { color: #fff !important; }
section[style*="navy"] .section-sub { color: rgba(255,255,255,0.8) !important; }
section[style*="navy"] .section-label { -webkit-text-fill-color: #ff6a00 !important; color: #ff6a00 !important; background: none !important; }

/* Contact FAQ on dark bg */
section[style*="navy"] h4 { color: #ff6a00 !important; }
section[style*="navy"] p { color: rgba(255,255,255,0.75) !important; }
section[style*="navy"] .section-title { color: #fff !important; }

/* ══ FIXES: no marquee → nav margin-top:0 ══ */
nav { margin-top: 0 !important; top: 0 !important; }
.page-hero { margin-top: 70px !important; }
.slider-section { margin-top: 70px !important; }
/* hero-section for index with craker.png */
.hero-section { margin-top: 70px !important; }

/* ══ SLIDE: crystal clear, no blur, sharp images ══ */
.slide-bg {
  filter: none !important;
  image-rendering: auto;
  background-attachment: fixed;
}
/* Dark overlay — text reads clearly */
.slide-overlay {
  background: linear-gradient(100deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.30) 60%,
    rgba(0,0,0,0.08) 100%
  ) !important;
}
/* Plain white text, no design, no gradient */
.slide-content h1 { color: #fff !important; text-shadow: none !important; }
.slide-content p { color: rgba(255,255,255,0.90) !important; text-shadow: none !important; font-weight: 400 !important; }
.slide-tag { background: transparent !important; color: #fff !important; border: 1.5px solid rgba(255,255,255,0.5) !important; }

/* ══ NAV TEXT — ensure always visible ══ */
.nav-links a { color: #1a1a2e !important; }
.nav-links a:hover, .nav-links a.active { color: #fff !important; }
.nav-estimate { color: #d97706 !important; }
.nav-cta { color: #374151 !important; }
.nav-cta.active, .nav-cta:hover { color: #fff !important; }
.brand-name { background: linear-gradient(135deg,#e91e8c,#ff6a00) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; }

/* ══ FOOTER LOGO — proper display, no invert ══ */
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  padding: 4px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg,#ff6a00,#ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-desc {
  color: rgba(255,255,255,0.90) !important;
  font-size: 0.85rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.footer-socials { margin-bottom: 0; }
.social-btn { color: white; }
.footer-brand-col { display: flex; flex-direction: column; }

/* ══ BLANK SPACE — logo as bg watermark in empty areas ══ */
section:empty, .bg-logo-fill {
  background-image: url('images/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 180px auto;
  opacity: 0.04;
}

/* ══ FOOTER — remove blue, keep dark elegant ══ */
footer {
  background: linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 60%, #0f1a2e 100%) !important;
  border-top: 4px solid transparent !important;
  border-image: linear-gradient(90deg,#e91e8c,#ff6a00,#007bff,#10b981) 1 !important;
}

/* ══ CTA button fallback (navy refs) ══ */
.btn[style*="navy"] {
  background: linear-gradient(135deg,#e91e8c,#ff6a00) !important;
  color: #fff !important;
}
.btn-outline[style*="navy"] {
  border-color: #e91e8c !important;
  color: #e91e8c !important;
}

/* ══ ABOUT / other sections — force white bg ══ */
section { background: #fff; }
section.bg-soft { background: #f8f9ff; }

/* ══ PAGE-HERO text contrast ══ */
.page-hero h1 { color: #fff !important; text-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.page-hero h1 span { color: #fff9c4 !important; -webkit-text-fill-color: #fff9c4 !important; }
.page-hero p { color: rgba(255,255,255,0.95) !important; }
.breadcrumb a { color: #fff9c4 !important; }
.breadcrumb span { color: rgba(255,255,255,0.7) !important; }

/* ══════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS — Call (top) & WhatsApp (bottom)
   Fixed bottom-right corner, circular, premium design
   ══════════════════════════════════════════════════════ */

/* Legacy class — hidden globally */
.call-float { display: none !important; }

/* ── Shared base ── */
.call-float-btn,
.whatsapp-float {
  position: fixed;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 9990;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s ease,
              filter 0.28s ease;
  outline: none;
}

/* ── Call button (TOP position) ── */
.call-float-btn {
  bottom: 104px;
  background: linear-gradient(135deg, #ff4e50, #fc4a1a);
  box-shadow: 0 8px 24px rgba(255,78,80,0.50),
              0 2px 6px rgba(0,0,0,0.18);
  animation: pulse-call 2.4s ease-in-out infinite;
}
.call-float-btn i {
  font-size: 1.45rem;
  color: #ffffff;
  line-height: 1;
}
.call-float-btn:hover {
  transform: scale(1.13) translateY(-3px);
  box-shadow: 0 14px 36px rgba(255,78,80,0.65),
              0 4px 10px rgba(0,0,0,0.22);
  filter: brightness(1.08);
  animation-play-state: paused;
}

/* ── WhatsApp button (BOTTOM position) ── */
.whatsapp-float {
  bottom: 28px;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37,211,102,0.50),
              0 2px 6px rgba(0,0,0,0.15);
  animation: pulse-green 2.4s ease-in-out infinite;
}
.whatsapp-float i {
  font-size: 1.55rem;
  color: #ffffff;
  line-height: 1;
}
.whatsapp-float:hover {
  transform: scale(1.13) translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.65),
              0 4px 10px rgba(0,0,0,0.18);
  filter: brightness(1.06);
  animation-play-state: paused;
}

/* ── Hide BOTH on estimate page ── */
body.estimate-page .call-float-btn,
body.estimate-page .whatsapp-float {
  display: none !important;
}

/* ── Mobile responsive ── */
@media (max-width: 480px) {
  .call-float-btn,
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
  }
  .call-float-btn { bottom: 88px; }
  .whatsapp-float { bottom: 22px; }
  .call-float-btn i { font-size: 1.25rem; }
  .whatsapp-float i { font-size: 1.35rem; }
}

/* ══ FOOTER — logo theme color fix ══ */
.footer-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6a00, #ee0979) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.footer-logo-img {
  height: 56px; width: auto; object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  padding: 4px;
}

/* ══ ABOUT, GALLERY, VIDEOS page-hero — navy theme ══ */
/* (applied via inline style on page-hero div per page)  */

/* ══ CTA BANNER — fix btn-outline visibility on fire bg ══ */
.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.9) !important;
  color: #fff !important;
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.18) !important;
}


/* ══════════════════════════════════════════
   GLOBAL PAGE-HERO — pink orange blue (ALL pages)
   ══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #e91e8c 0%, #ff6a00 50%, #007bff 100%) !important;
}
.page-hero h1 { color: #fff !important; }
.page-hero h1 span { color: #fff9c4 !important; -webkit-text-fill-color: #fff9c4 !important; background: none !important; }
.page-hero p { color: rgba(255,255,255,0.92) !important; }
.breadcrumb a { color: #fff9c4 !important; }
.breadcrumb span, .breadcrumb { color: rgba(255,255,255,0.75) !important; }

/* ══ CTA BANNER — buttons always visible ══ */
.cta-banner a.btn,
.cta-banner .btn {
  background: #fff !important;
  color: #e91e8c !important;
  font-weight: 700 !important;
  border: none !important;
  -webkit-text-fill-color: #e91e8c !important;
}
.cta-banner a.btn:hover,
.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
  background: #fff9f9 !important;
}
/* Outline variant inside cta-banner */
.cta-banner a[style*="transparent"],
.cta-banner .btn-outline {
  background: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 2px solid rgba(255,255,255,0.85) !important;
}
.cta-banner a[style*="transparent"]:hover,
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.15) !important;
}
footer {
  background: #ffffff !important;
  color: #1a1a2e !important;
  position: relative;
  overflow: hidden;
  border-top: 2px solid #eee;
}

/* subtle colorful background effect */
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(233,30,140,0.08), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(0,123,255,0.08), transparent 50%),
              radial-gradient(circle at 50% 100%, rgba(255,106,0,0.06), transparent 50%);
  pointer-events: none;
}

/* text style */
.footer-col ul li a {
  color: #555 !important;
}

.footer-col ul li a:hover {
  color: #e91e8c !important;
}


/* ══ Why Buy From Us — 3+3 layout ══ */
.features-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr !important; }
}

/* ══ LOGO: Remove black background ══ */
.nav-logo img {
  background: transparent !important;
  mix-blend-mode: multiply !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.footer-logo-img {
  background: transparent !important;
  mix-blend-mode: multiply !important;
  padding: 0 !important;
}
.cta-banner {
  position: relative;
  z-index: 1;
}

/* If you used overlay like ::before */
.cta-banner::before {
  pointer-events: none; /* IMPORTANT FIX */
}

/* Make buttons clickable */
.cta-banner a {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.line {
  width: 60px;
  height: 3px;
  background: yellow;
  margin-top: 5px;
}
.footer-desc {
  color: #6b7280;   /* pure white */
  font-size: 14px;
  line-height: 1.8;
}
footer {
  background: #000000;  /* dark background */
}
footer {
  background: #000000;
  color: #ffffff;
}
.footer-desc {
  color:#6b7280 !important;
  font-size: 14px;
  line-height: 1.8;
  display: block;
}
.btn-primary {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ══════════════════════════════════════
   SLIDE BUTTONS — FULL RESPONSIVE FIX
══════════════════════════════════════ */

/* Ensure slide content is above bg */
.slide-content {
  position: relative;
  z-index: 2;
}

/* Mobile: stack buttons vertically */
@media (max-width: 768px) {
  .slide-btns {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .slide-btns a {
    font-size: 14px !important;
    padding: 11px 22px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    width: fit-content !important;
  }
  .slide-content {
    padding: 0 6% !important;
  }
  .slide-content h1 {
    font-size: clamp(1.7rem, 7vw, 2.5rem) !important;
    margin-bottom: 12px !important;
  }
  .slide-content p {
    font-size: 0.92rem !important;
    margin-bottom: 22px !important;
  }
  .slider-section {
    height: 100svh !important;
    min-height: 520px !important;
  }
}

@media (max-width: 480px) {
  .slide-btns {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .slide-btns a {
    font-size: 13px !important;
    padding: 10px 18px !important;
  }
  .slide-content h1 {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
  }
}

@media (max-width: 360px) {
  .slide-btns a {
    font-size: 12px !important;
    padding: 9px 15px !important;
  }
}

/* ══════════════════════════════════════
   CONTACT PAGE — MOBILE FIXES
══════════════════════════════════════ */
@media (max-width: 600px) {
  .quick-contact { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px !important; }
  .quick-item { width: calc(50% - 10px) !important; min-width: 130px; padding: 18px 12px !important; }
  .quick-item .qi-icon { font-size: 1.5rem !important; margin-bottom: 6px !important; }
  .contact-info-card { padding: 18px 14px !important; }
  .contact-form-card { padding: 18px 14px !important; }
  .map-wrap { height: 220px !important; }
  .wa-btn { font-size: 0.9rem !important; padding: 12px 18px !important; }
}

/* ══════════════════════════════════════
   GLOBAL MOBILE — prevent button/content overlay
══════════════════════════════════════ */
@media (max-width: 600px) {
  .slide-content { padding: 0 4% !important; max-width: 100% !important; }
  .slide-content h1 { font-size: clamp(1.4rem, 6.5vw, 2rem) !important; word-break: break-word; }
  .slide-content p { font-size: 0.85rem !important; }
  .btn { font-size: 0.82rem !important; padding: 10px 16px !important; white-space: nowrap; }
  .slide-btns { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; width: 100%; }
  .slide-btns a { display: inline-flex !important; width: auto !important; }
  /* Our Products 2-column on phone */
  .op-grid-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .cta-banner { padding: 40px 5% !important; }
  .cta-banner h2 { font-size: 1.3rem !important; }
  .cta-banner p { font-size: 0.85rem !important; }
  .cta-banner a.btn { font-size: 0.88rem !important; padding: 12px 20px !important; }
}

/* float btn image centering handled in canonical block above */

/* ══════════════════════════════════════════════════
   MOBILE COMPREHENSIVE FIX — Overlay & Overlap Fix
   ══════════════════════════════════════════════════ */

/* ── Prevent ALL fixed elements from overlapping content ── */
@media (max-width: 768px) {
  /* Push page content above fixed bottom buttons */
  body { padding-bottom: 80px; }

  /* Nav: don't overlap content */
  nav { height: 60px; padding: 0 4%; }
  .page-hero { margin-top: 60px !important; }
  .slider-section { margin-top: 60px !important; }
  .hero-section { margin-top: 60px !important; }

  /* Float buttons — mobile sizes handled in canonical float block */

  /* Cards — no overflow, proper sizing */
  .card-img-wrap { height: 180px !important; }
  .card-img { height: 100% !important; width: 100% !important; }
  .est-products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .est-card-img { height: 110px !important; }

  /* Contact grid: single column, no overlap */
  .contact-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .contact-info-card, .contact-form-card { padding: 20px 16px !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .map-wrap { height: 240px !important; margin-top: 20px !important; }

  /* About grid */
  .about-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .about-img { height: 260px !important; }
  .about-badge { width: 70px; height: 70px; font-size: 1.5rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr !important; }
  .gallery-item { height: 200px !important; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-num { font-size: 1.8rem; }

  /* CTA Banner */
  .cta-banner { padding: 40px 4% !important; }
  .slide-btns { flex-wrap: wrap; gap: 10px !important; }
}

/* ── Contact page: ensure all items visible ── */
@media (max-width: 600px) {
  /* Contact must be accessible — override any display:none */
  .contact-grid, .contact-info-card, .contact-form-card,
  .contact-section, .map-wrap { display: block !important; visibility: visible !important; overflow: visible !important; }
  .info-item { flex-direction: row; align-items: flex-start; }
  .quick-contact { flex-wrap: wrap; }
  .quick-item { width: calc(50% - 8px) !important; min-width: 120px; }
}

/* ── Estimate page: layout on mobile ── */
@media (max-width: 768px) {
  .estimate-layout {
    grid-template-columns: 1fr !important;
    padding: 16px 4% 100px !important;
    gap: 20px !important;
  }
  .estimate-sidebar { position: static !important; top: auto !important; }
  .sticky-order-bar { z-index: 900; }
}
.footer-desc {
  color: #8b7d7d;
  font-size: 15px;
  line-height: 1.6;
}

.footer-bottom p {
  color: #8b7d7d;
  font-size: 14px;
  margin: 0;
}
.footer-desc {
  color: #8b7d7d !important;
}

.footer-bottom p {
  color: #8b7d7d !important;
}
/* Float button styles defined in canonical section above */
}