/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100vw; }
body { font-family: 'Inter', sans-serif; background: #F5F5F5; color: #333; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --teal: #2e5252;
  --gold: #C8A96A;
  --bg: #F5F5F5;
  --white: #ffffff;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
  --green: #25D366;
  --green-dk: #128C7E;
  --container: 1200px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.3; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 9999px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; border: none; white-space: nowrap; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #1e3a3a; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b5964d; }
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: var(--green-dk); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: #f0f0f0; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ===== HEADER ===== */
header { background: var(--teal); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem; flex-shrink: 0; }
.logo-icon { width: 22px; height: 22px; color: var(--gold); fill: var(--gold); }

/* Desktop Nav */
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a, .nav-dropdown > button { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.75rem; border-radius: 6px; transition: all 0.2s; background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.nav a:hover, .nav-dropdown > button:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > button .chevron { transition: transform 0.2s; font-size: 0.7rem; }
.nav-dropdown.open > button .chevron { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); border: 1px solid var(--border); padding: 0.5rem 0; z-index: 100; display: none; margin-top: 4px; }
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 0.6rem 1rem; font-size: 0.875rem; color: var(--teal); transition: background 0.15s; }
.dropdown-menu a:hover { background: #f8f8f8; }
.dropdown-menu .all-services { font-weight: 600; border-bottom: 1px solid var(--border); margin-bottom: 0.25rem; padding-bottom: 0.6rem; }

/* Header CTA buttons */
.header-ctas { display: flex; gap: 0.5rem; flex-shrink: 0; }
.header-ctas .btn { padding: 0.45rem 1rem; font-size: 0.8rem; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: #fff; }
.hamburger svg { width: 24px; height: 24px; }

/* Mobile Menu */
.mobile-menu { display: none; position: absolute; top: 64px; left: 0; width: 100%; background: #fff; border-bottom: 2px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.1); z-index: 999; animation: slideDown 0.2s ease; }
.mobile-menu.open { display: block; }
.mobile-menu a, .mobile-menu-services-toggle { display: block; padding: 0.875rem 1.25rem; color: var(--teal); font-weight: 500; border-bottom: 1px solid var(--border); transition: background 0.15s; width: 100%; text-align: left; background: none; border-right: none; border-left: none; border-top: none; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.95rem; }
.mobile-menu a:hover, .mobile-menu-services-toggle:hover { background: var(--light-gray); }
.mobile-menu-services-toggle { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.mobile-sub-menu { display: none; background: var(--light-gray); }
.mobile-sub-menu.open { display: block; }
.mobile-sub-menu a { padding-left: 2rem; font-size: 0.875rem; color: #555; }
.mobile-ctas { padding: 1rem 1.25rem; display: flex; gap: 0.75rem; }
.mobile-ctas .btn { flex: 1; justify-content: center; }

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

/* ===== PAGE HERO BANNER ===== */
.page-hero { background: var(--teal); padding: 4rem 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.page-hero .urdu { color: var(--gold); font-size: 1.75rem; font-family: 'Playfair Display', serif; margin: 0.5rem 0; direction: rtl; }
.badge { display: inline-block; padding: 0.3rem 0.85rem; border-radius: 9999px; background: rgba(200,169,106,0.2); border: 1px solid rgba(200,169,106,0.4); color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }

/* ===== SECTION UTILITIES ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-label { color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.75rem; }
.section-title { color: var(--teal); font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-desc { color: var(--gray); max-width: 600px; margin: 0 auto; }
.text-center { text-align: center; }
.divider { width: 4rem; height: 4px; background: var(--gold); border-radius: 9999px; margin: 1rem 0; }
.bg-white { background: #fff; }
.bg-light { background: var(--bg); }
.bg-teal { background: var(--teal); }

/* ===== HERO (HOME) ===== */
.hero-image { width: 100%; line-height: 0; overflow: hidden; }
.hero-image img { width: 100%; height: auto; display: block; max-height: 680px; object-fit: cover; object-position: center top; }
.hero-text { background: #fff; text-align: center; padding: 3.5rem 1.25rem; border-bottom: 1px solid var(--border); }
.hero-text h1 { color: var(--teal); font-size: clamp(1.75rem, 4vw, 3.25rem); margin-bottom: 0.75rem; }
.hero-text .phone { color: var(--teal); font-size: 1.15rem; margin-bottom: 0.5rem; }
.hero-text .phone a { font-weight: 700; color: var(--teal); }
.hero-text .sub { color: var(--gray); margin-bottom: 2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== ABOUT SECTION (HOME) ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-text .section-title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.25; }
.about-text p { color: var(--gray); margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.stat-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.stat-icon { background: rgba(46,82,82,0.1); color: var(--teal); border-radius: 8px; padding: 0.5rem; flex-shrink: 0; }
.stat-icon svg { width: 22px; height: 22px; }
.stat-item h4 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--teal); font-size: 0.95rem; }
.stat-item p { font-size: 0.8rem; color: var(--gray); }
.video-frame { border-radius: 16px; overflow: hidden; border: 4px solid #fff; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.video-frame .ratio { position: relative; padding-bottom: 56.25%; }
.video-frame .ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.read-more { color: var(--teal); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; transition: color 0.2s; }
.read-more:hover { color: var(--gold); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card { background: #fff; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: var(--gold); transform: translateY(-3px); }
.service-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.service-card:hover img { transform: scale(1.04); }
.service-card-img { overflow: hidden; }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-title { color: var(--teal); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.service-card-urdu { color: rgba(46,82,82,0.45); font-size: 1rem; font-family: 'Playfair Display', serif; direction: rtl; margin-bottom: 0.75rem; }
.service-card-desc { color: var(--gray); font-size: 0.875rem; line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.service-card-footer { border-top: 1px solid var(--border); padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.learn-more { color: var(--teal); font-weight: 600; font-size: 0.875rem; display: flex; align-items: center; gap: 0.3rem; transition: color 0.2s; }
.learn-more:hover { color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; }
.stars { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.88); font-style: italic; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; font-size: 0.9rem; }
.testimonial-author strong { color: #fff; display: block; font-family: 'Inter', sans-serif; }
.testimonial-author span { color: var(--gold); font-size: 0.8rem; }

/* ===== CITIES SECTION ===== */
.cities-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem; max-width: 800px; margin: 0 auto; }
.city-tag { padding: 0.45rem 1rem; border: 1px solid var(--border); border-radius: 9999px; font-size: 0.875rem; color: var(--gray); background: var(--bg); transition: all 0.2s; }
.city-tag:hover { border-color: var(--gold); color: var(--teal); }

/* ===== CTA BLOCK ===== */
.cta-block { background: #fff; border-radius: 24px; padding: 3.5rem; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.07); border: 1px solid var(--border); max-width: 700px; margin: 0 auto; }
.cta-icon { width: 56px; height: 56px; background: rgba(46,82,82,0.1); border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.cta-icon svg { width: 28px; height: 28px; color: var(--teal); }
.cta-block h2 { color: var(--teal); font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.cta-block p { color: var(--gray); margin-bottom: 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== DISCLAIMER ===== */
.disclaimer { background: #fff; border-top: 1px solid var(--border); padding: 2rem 0; text-align: center; }
.disclaimer p { font-size: 0.75rem; color: #9ca3af; max-width: 720px; margin: 0 auto; }

/* ===== FULL WIDTH IMAGE ===== */
.full-img { width: 100%; line-height: 0; margin: 0; overflow: hidden; }
.full-img img { width: 100%; height: auto; display: block; max-width: 100%; }

/* ===== VIDEOS PAGE ===== */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.video-card { background: #fff; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s; }
.video-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.video-card .ratio { position: relative; padding-bottom: 56.25%; background: #000; }
.video-card .ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-card-body { padding: 1rem; flex: 1; }
.video-card-body h3 { color: var(--teal); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; line-height: 1.4; }
.video-card-body p { color: var(--gray); font-size: 0.8rem; }
.video-card-btns { padding: 0.875rem 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.video-card-btns a { display: flex; align-items: center; justify-content: center; gap: 0.375rem; padding: 0.5rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; transition: all 0.2s; min-width: 0; overflow: hidden; }
.video-card-btns .btn-call { background: var(--teal); color: #fff; }
.video-card-btns .btn-call:hover { background: #1e3a3a; }
.video-card-btns .btn-wa { background: var(--green); color: #fff; }
.video-card-btns .btn-wa:hover { background: var(--green-dk); }
.video-card-btns svg { width: 13px; height: 13px; flex-shrink: 0; }
.video-card-btns span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ===== SERVICE DETAIL PAGE ===== */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.service-content-card { background: #fff; border-radius: 16px; border: 1px solid var(--border); padding: 2rem; margin-bottom: 1.5rem; }
.service-content-card h2 { color: var(--teal); font-size: 1.5rem; margin-bottom: 1.25rem; }
.service-content-card p { color: var(--gray); line-height: 1.75; margin-bottom: 1rem; font-size: 0.95rem; }
.article-img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin: 1.25rem 0; border: 1px solid var(--border); }
.benefits-list { list-style: none; padding: 0; }
.benefits-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.875rem; color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.benefits-list li::before { content: ''; display: block; width: 20px; height: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8A96A'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-.997-6l7.07-7.071-1.414-1.414-5.656 5.657-2.829-2.829-1.414 1.414L11.003 16z'/%3E%3C/svg%3E"); background-size: contain; flex-shrink: 0; margin-top: 2px; }
.disclaimer-note { font-size: 0.75rem; color: #9ca3af; font-style: italic; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1.5rem; }
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.process-step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num { width: 36px; height: 36px; border-radius: 9999px; background: var(--teal); color: #fff; font-weight: 700; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h4 { color: var(--teal); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.step-body p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }
/* Near CTA image block */
.near-cta { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 1.5rem; }
.near-cta img { width: 100%; height: 230px; object-fit: cover; }
.near-cta-inner { background: #fff; padding: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.near-cta-inner h4 { color: var(--teal); font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.near-cta-inner p { color: var(--gray); font-size: 0.8rem; }

/* Sidebar */
.sidebar-sticky { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card { background: var(--teal); border-radius: 20px; padding: 2rem; border-top: 4px solid var(--gold); }
.contact-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.75rem; }
.contact-card p { color: rgba(255,255,255,0.75); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.contact-card-btns { display: flex; flex-direction: column; gap: 0.625rem; }
.contact-card-btns .btn { width: 100%; justify-content: center; }
.related-card { background: #fff; border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); }
.related-card h3 { color: var(--teal); font-size: 1rem; margin-bottom: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.related-links { display: flex; flex-direction: column; gap: 0.5rem; }
.related-link { display: block; padding: 0.75rem; border: 1px solid var(--border); border-radius: 10px; transition: all 0.2s; }
.related-link:hover { border-color: var(--gold); background: rgba(200,169,106,0.05); }
.related-link h4 { color: var(--teal); font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600; }
.related-link span { color: var(--gray); font-size: 0.75rem; }

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; background: #fff; border: none; text-align: left; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; transition: background 0.15s; }
.faq-question:hover { background: var(--light-gray); }
.faq-question span { color: var(--teal); font-weight: 600; font-size: 0.875rem; line-height: 1.4; }
.faq-chevron { color: var(--gold); flex-shrink: 0; transition: transform 0.25s; font-size: 0.875rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1rem; background: var(--light-gray); font-size: 0.875rem; color: var(--gray); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 0.875rem; }
.faq-item.open .faq-answer { display: block; }

/* ===== ABOUT PAGE ===== */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-media { position: sticky; top: 84px; }
.about-text-content h2 { color: var(--teal); font-size: 2rem; margin-bottom: 1.5rem; }
.about-text-content p { color: var(--gray); line-height: 1.75; margin-bottom: 1.25rem; }
.values-card { background: #fff; border-radius: 16px; padding: 2rem; border: 1px solid var(--border); margin-top: 2rem; }
.values-card h3 { color: var(--teal); font-size: 1.25rem; margin-bottom: 1.25rem; }
.value-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.value-icon { background: rgba(46,82,82,0.1); color: var(--teal); width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 18px; height: 18px; }
.value-body strong { display: block; color: #333; font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 0.2rem; }
.value-body span { color: var(--gray); font-size: 0.85rem; }
.about-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.location-badge { display: flex; gap: 1rem; align-items: flex-start; background: rgba(200,169,106,0.1); border: 1px solid rgba(200,169,106,0.25); border-radius: 16px; padding: 1.25rem; margin-top: 1.25rem; }
.location-badge svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
.location-badge h4 { color: #333; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 0.2rem; }
.location-badge p { color: var(--gray); font-size: 0.875rem; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-card { background: var(--teal); border-radius: 20px; padding: 2.5rem; }
.contact-info-card h2 { color: #fff; font-size: 1.75rem; margin-bottom: 0.5rem; }
.contact-info-card > p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.contact-item-icon { background: rgba(255,255,255,0.12); width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-item strong { display: block; color: #fff; font-family: 'Inter', sans-serif; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-item span, .contact-item a { color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.contact-form-card { background: #fff; border-radius: 20px; padding: 2.5rem; border: 1px solid var(--border); }
.contact-form-card h2 { color: var(--teal); font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; color: var(--teal); font-weight: 600; font-size: 0.875rem; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #333; transition: border 0.2s; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 0.875rem; border: none; border-radius: 10px; background: var(--teal); color: #fff; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.2s; font-family: 'Inter', sans-serif; }
.form-submit:hover { background: #1e3a3a; }

/* ===== ISTIKHARA ONLINE PAGE ===== */
.how-it-works { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.how-card { text-align: center; padding: 2rem 1.5rem; background: #fff; border-radius: 16px; border: 1px solid var(--border); transition: all 0.3s; }
.how-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); border-color: var(--gold); }
.how-num { width: 48px; height: 48px; border-radius: 9999px; background: var(--teal); color: #fff; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.how-card h3 { color: var(--teal); font-size: 1rem; margin-bottom: 0.5rem; }
.how-card p { color: var(--gray); font-size: 0.85rem; }
.benefits-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 1.5rem; text-align: center; }
.benefit-box h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.benefit-box p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ===== FOOTER ===== */
footer { background: var(--teal); color: #fff; padding: 4rem 0 2rem; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.625rem; }
.social-link { width: 36px; height: 36px; border-radius: 9999px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.social-link:hover { background: var(--gold); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h3 { color: var(--gold); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item strong { display: block; color: #fff; font-size: 0.875rem; margin-bottom: 0.15rem; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.65); font-size: 0.8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.75rem; max-width: 680px; }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; bottom: 1.25rem; right: 1rem; z-index: 999; display: flex; flex-direction: column; gap: 0.75rem; }
.float-btn { width: 52px; height: 52px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s; }
.float-btn:hover { transform: scale(1.1); }
.float-call { background: var(--teal); }
.float-wa { background: var(--green); }
.float-btn svg { width: 22px; height: 22px; color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
  .about-layout { grid-template-columns: 1fr; }
  .about-media { position: static; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav, .header-ctas { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .benefits-boxes { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { margin-bottom: 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .section { padding: 3rem 0; }
  .cta-block { padding: 2rem 1.25rem; }
  .about-stats { grid-template-columns: 1fr; }
  .about-ctas { flex-direction: column; }
  .mobile-ctas .btn { font-size: 0.85rem; padding: 0.6rem 0.75rem; }
}
@media (max-width: 480px) {
  .how-it-works { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; }
  .near-cta-inner { flex-direction: column; }
}
