/* ===== DETECTIVE INTERNATIONAL - EXACT REPLICA ===== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Rubik:wght@400;500;600;700&family=Roboto+Slab:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --gold: #e59a1d;
  --gold-hover: #d48b15;
  --gold-light: #f5aa2f;
  --dark: #1e293b;
  --dark-deep: #0f172a;
  --text: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --off-white: #F0F5FA;
  --cream: #fefaef;
  --gray: #D1D5DB;
  --gray-light: #f3f4f6;
  --border: #e5e7eb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  background: var(--white);
}

a { color: var(--gold); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Rubik', sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 70px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logo-text span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 0; list-style: none; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 24px 18px;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li:hover > a,
.main-nav > li > a.active-link { color: var(--gold); }

.main-nav > li > a .fa-chevron-down { font-size: 10px; margin-left: 4px; }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  min-width: 250px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-radius: 0 0 6px 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s;
  z-index: 100; list-style: none; padding: 6px 0;
}
.main-nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 22px;
  color: var(--text); font-size: 13px; transition: 0.2s;
}
.dropdown li a:hover { background: var(--off-white); color: var(--gold); padding-left: 28px; }

/* Header CTA */
.header-cta-wrap {
  background: var(--gold);
  transform: skewX(-12deg);
  padding: 0;
  margin-left: 15px;
}
.header-cta {
  display: flex; align-items: center; gap: 8px;
  color: var(--white) !important;
  padding: 14px 28px;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px;
  transform: skewX(12deg);
  white-space: nowrap;
}
.header-cta:hover { color: var(--white) !important; }
.header-cta-wrap:hover { background: var(--gold-hover); }

/* Mobile Toggle */
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1001;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); margin: 6px 0; border-radius: 2px; transition: 0.3s;
}

/* ===== HERO SLIDER ===== */
.hero-section { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 700px;
  display: none;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide.active { display: flex; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.25));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 100px 80px; color: var(--white);
}
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 600;
  margin-bottom: 18px; color: rgba(255,255,255,0.9);
  text-transform: uppercase; letter-spacing: 2px;
}
.hero-title {
  font-size: 52px; font-weight: 800;
  color: var(--white); margin-bottom: 30px; line-height: 1.15;
  font-family: 'Montserrat', sans-serif;
}
.hero-desc {
  color: rgba(255,255,255,0.85); margin-bottom: 35px; font-size: 18px; line-height: 1.7;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--white);
  padding: 20px 44px; border-radius: 4px;
  font-weight: 700; font-size: 17px; text-transform: uppercase;
  letter-spacing: 1.5px; transition: 0.3s; border: none; cursor: pointer;
}
.hero-btn:hover { background: var(--gold-hover); color: var(--white); transform: translateX(3px); }

.slider-dots {
  position: absolute; bottom: 25px; left: 80px;
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none;
  cursor: pointer; transition: 0.3s;
}
.slider-dot.active { background: var(--gold); }

.slider-controls {
  position: absolute; bottom: 20px; right: 30px;
  display: flex; gap: 0; z-index: 10;
}
.slider-btn {
  width: 55px; height: 55px;
  background: rgba(255,255,255,0.15); border: none;
  color: white; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.slider-btn:hover { background: rgba(255,255,255,0.3); }

/* ===== SECTION COMMON ===== */
.section { padding: 85px 0; }
.section-label { width: 60px; height: 4px; background: var(--gold); margin-bottom: 18px; border-radius: 2px; }
.section-label-center { margin-left: auto; margin-right: auto; }
.section-title {
  font-size: 34px; font-weight: 800; color: var(--dark);
  margin-bottom: 28px; text-transform: uppercase; letter-spacing: 0.5px;
  line-height: 1.2;
}
.section-center .section-title { text-align: center; }
.section-center { text-align: center; }

/* ===== AS FEATURED IN ===== */
.featured-section { padding: 35px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.featured-title {
  text-align: center; font-size: 17px; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 25px; font-weight: 700;
}
.logo-track { display: flex; overflow: hidden; padding: 10px 0; }
.logo-track-inner {
  display: flex; gap: 30px; animation: scrollLogos 25s linear infinite;
}
.logo-item {
  flex-shrink: 0; background: var(--white); padding: 12px 25px;
  border-radius: 10px; box-shadow: 0 2px 8px rgba(99,99,99,0.12);
  display: flex; align-items: center; justify-content: center;
  min-width: 150px; height: 80px;
}
.logo-item img { max-height: 50px; max-width: 180px; object-fit: contain; }
.logo-item span { font-weight: 700; font-size: 13px; color: var(--text-light); text-align: center; }
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== INVESTIGATION BOXES (Pre/Post Matrimonial) ===== */
.inv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.inv-box {
  background: var(--white); padding: 30px; border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07); transition: transform 0.3s;
}
.inv-box:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.inv-box-img { border-radius: 10px; overflow: hidden; margin-bottom: 22px; }
.inv-box-img img { width: 100%; height: 240px; object-fit: cover; }
.inv-box h3 {
  font-size: 13px; color: var(--gold); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700;
}
.inv-box h4 {
  font-size: 22px; margin-bottom: 12px; color: var(--dark); font-weight: 800;
  position: relative; padding-bottom: 18px;
}
.inv-box h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 44px; height: 3px; background: var(--gold); border-radius: 2px;
}
.inv-box p { color: var(--text); margin-bottom: 22px; font-size: 14px; line-height: 1.75; min-height: 50px; margin-top: 12px; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--white);
  padding: 16px 36px; border-radius: 4px;
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: 1.5px; transition: 0.3s; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-hover); color: var(--white); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--dark); color: var(--white);
  padding: 16px 36px; border-radius: 4px;
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: 1.5px; transition: 0.3s; border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--dark-deep); color: var(--white); }

/* ===== CORPORATE SECTION ===== */
.corporate-banner {
  background: var(--dark); padding: 85px 0;
  position: relative; overflow: hidden;
}
.corporate-banner .container {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.corporate-text { color: var(--white); max-width: 560px; }
.corporate-text h3 { color: var(--white); font-size: 36px; margin-bottom: 14px; font-weight: 800; line-height: 1.2; }
.corporate-text p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 16px; line-height: 1.7; }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-img img { border-radius: 12px; width: 100%; }
.about-text p { line-height: 1.8; margin-bottom: 22px; font-size: 16px; }

/* ===== SERVICES CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08); transition: 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.13); }
.service-card-img { position: relative; overflow: hidden; }
.service-card-img img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.3));
  padding: 28px 22px 16px;
}
.service-card-img-label h3 {
  color: var(--white); font-size: 20px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px; margin: 0;
}
.service-card-body { padding: 20px 22px; }
.service-card-body p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 15px; min-height: 50px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px;
}
.service-link:hover { gap: 14px; color: var(--gold-hover); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.why-item { display: flex; gap: 18px; margin-bottom: 28px; }
.why-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
}
.why-item-text h4 { font-size: 17px; margin-bottom: 6px; font-weight: 700; }
.why-item-text p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: var(--white); padding: 30px; border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-left: 4px solid var(--gold); transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card p { font-size: 14px; line-height: 1.85; color: var(--text); margin-bottom: 18px; min-height: 160px; }
.testi-name { font-weight: 700; color: var(--dark); font-size: 15px; padding-top: 14px; border-top: 1px solid var(--border); }

/* ===== CASE STUDIES ===== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07); transition: 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.case-card-img { height: 220px; overflow: hidden; }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.case-card:hover .case-card-img img { transform: scale(1.04); }
.case-card-body { padding: 26px; }
.case-card-body h3 { font-size: 17px; margin-bottom: 12px; line-height: 1.4; min-height: 60px; font-weight: 700; }
.case-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item { border-radius: 8px; overflow: hidden; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 85px 0; text-align: center; background: var(--dark-deep); }
.cta-banner h2 { color: var(--white); font-size: 38px; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; line-height: 1.2; }
.cta-banner .btn-dark { background: #1e293b; border: 1px solid rgba(255,255,255,0.15); }
.cta-banner .btn-dark:hover { background: var(--gold); border-color: var(--gold); }

/* ===== CORPORATE SERVICE PAGE ===== */
.corp-hero {
  background: var(--dark-deep); padding: 80px 0 60px;
  color: var(--white);
  position: relative; overflow: hidden;
}
.corp-hero .container { position: relative; z-index: 2; }
.corp-hero h1 {
  color: var(--white); font-size: 42px; font-weight: 800;
  margin-bottom: 16px; line-height: 1.2; max-width: 650px;
}
.corp-hero .page-banner-title { color: var(--gold); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; }
.corp-hero p:not(.page-banner-title) { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 30px; max-width: 560px; line-height: 1.75; }

.corp-section { padding: 85px 0; background: var(--white); }
.corp-section-alt { background: #faf5ec; }
.corp-section h2 {
  font-size: 34px; margin-bottom: 8px; font-weight: 800;
  position: relative; padding-bottom: 20px;
}
.corp-section h2::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 52px; height: 4px; background: var(--gold); border-radius: 2px;
}
.corp-section > .container > p { max-width: 720px; color: var(--text); font-size: 15px; line-height: 1.8; margin-bottom: 44px; margin-top: 16px; }

.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.icon-card {
  background: transparent; padding: 10px 0; border-radius: 0;
  box-shadow: none; transition: 0.3s;
}
.icon-card:hover { transform: translateY(-3px); }
.icon-card-icon {
  width: 58px; height: 58px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(229,154,29,0.15), 0 0 28px rgba(229,154,29,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--white); font-size: 22px;
  transition: box-shadow 0.3s;
}
.icon-card:hover .icon-card-icon {
  box-shadow: 0 0 0 10px rgba(229,154,29,0.2), 0 0 40px rgba(229,154,29,0.5);
}
.icon-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.icon-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--dark); padding: 110px 0 75px;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.97), rgba(30,41,59,0.85));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner-title { color: var(--gold); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.page-banner h1 { color: var(--white); font-size: 48px; margin-bottom: 20px; font-weight: 800; line-height: 1.15; max-width: 700px; }
.page-banner-desc { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.7; max-width: 580px; margin-bottom: 30px; }

/* ===== ABOUT PAGE ===== */
.about-founder-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: start;
}
.about-founder-imgs { display: flex; gap: 18px; flex-shrink: 0; }
.about-founder-imgs img { object-fit: cover; border-radius: 10px; }

.about-excellence {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

/* About/inner page section headings with gold underline */
.about-section-heading {
  font-size: 32px; font-weight: 800; color: var(--dark);
  margin-bottom: 8px; line-height: 1.25;
  position: relative; padding-bottom: 20px;
}
.about-section-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 52px; height: 4px; background: var(--gold); border-radius: 2px;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start;
}
.contact-form { width: 100%; }
.contact-form-section { padding: 60px 0; }
.contact-form h2 { font-size: 28px; margin-bottom: 25px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; padding-top: 70px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--white); padding: 28px 24px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-info-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
  box-shadow: 0 0 0 6px rgba(229,154,29,0.15), 0 0 20px rgba(229,154,29,0.3);
}
.contact-info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.contact-info-card p a { color: var(--text-light); }
.contact-info-card p a:hover { color: var(--gold); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: 3px; font-size: 15px; font-family: inherit; transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  background: var(--gold); color: var(--white); border: none;
  padding: 12px 40px; border-radius: 4px; font-weight: 600;
  font-size: 15px; cursor: pointer; transition: 0.3s;
}
.btn-submit:hover { background: var(--gold-hover); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding-top: 50px; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 35px; padding-bottom: 35px;
}
.footer-col h3 {
  color: var(--gold); font-size: 13px; margin-bottom: 15px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.footer-col p, .footer-col a { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.8; }
.footer-col a:hover { color: var(--gold); }
.footer-links { list-style: none; }
.footer-links li a { display: block; padding: 3px 0; font-size: 13px; }
.footer-links li a:hover { padding-left: 5px; color: var(--gold); }

.footer-contact { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: 4px; font-size: 13px; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 35px; height: 35px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: 0.3s;
}
.footer-social a.fb { background: #1877f2; color: #fff; }
.footer-social a.tw { background: #1da1f2; color: #fff; }
.footer-social a.li { background: #0077b5; color: #fff; }
.footer-social a.ig { background: #e4405f; color: #fff; }
.footer-social a:hover { transform: translateY(-3px); opacity: 0.85; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-bottom-cta {
  background: var(--gold); transform: skewX(-12deg);
}
.footer-bottom-cta a {
  display: flex; align-items: center; gap: 8px;
  color: var(--white) !important; padding: 14px 28px;
  font-weight: 700; font-size: 12px; text-transform: uppercase;
  letter-spacing: 1px; transform: skewX(12deg);
}

/* ===== WHATSAPP & SCROLL TOP ===== */
.whatsapp-btn {
  position: fixed; bottom: 25px; right: 25px;
  width: 50px; height: 50px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(37,211,102,0.4);
  z-index: 999; color: white; font-size: 26px;
}
.whatsapp-btn:hover { transform: scale(1.08); color: white; }

.scroll-top {
  position: fixed; bottom: 85px; right: 28px;
  width: 36px; height: 36px; background: var(--gold); color: var(--white);
  border: none; border-radius: 4px; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 16px; z-index: 999;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--gold-hover); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-wrapper {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 15px 20px;
  }
  .nav-wrapper.active { display: block; }
  .main-nav { flex-direction: column; gap: 0; }
  .main-nav > li > a { padding: 12px 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 15px; display: none; }
  .main-nav > li.open .dropdown { display: block; }
  .header-cta-wrap { transform: none; margin: 10px 0; }
  .header-cta { transform: none; }

  .hero-slide { min-height: 480px; }
  .hero-content { padding: 50px 25px; }
  .hero-subtitle { font-size: 13px; }
  .hero-title { font-size: 28px; }
  .hero-btn { padding: 16px 30px; font-size: 14px; }

  .inv-grid, .services-grid, .testi-grid, .cases-grid, .gallery-grid,
  .about-grid, .why-grid, .about-founder-grid, .about-excellence,
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-cards { padding-top: 0; }
  .icon-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .section { padding: 55px 0; }
  .section-title { font-size: 26px; }
  .corp-hero h1 { font-size: 28px; }
  .page-banner h1 { font-size: 28px; }
  .corporate-text h3 { font-size: 26px; }
  .cta-banner h2 { font-size: 26px; }
  .corp-section h2 { font-size: 26px; }
  .about-section-heading { font-size: 24px; }
  .inv-box h4 { font-size: 18px; }
  .btn-gold, .btn-dark { padding: 14px 28px; font-size: 13px; }
  .icon-grid { grid-template-columns: 1fr 1fr; }
  .corp-section { padding: 55px 0; }
}
