﻿/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary:      #3d1f8e;
  --primary-dark: #2a1260;
  --primary-mid:  #5a35b8;
  --primary-soft: #ece6ff;
  --accent:       #f5a623;
  --accent-dark:  #d4880e;
  --dark:         #1a1428;
  --text:         #2e2640;
  --light-bg:     #faf8ff;
  --white:        #ffffff;
  --border:       #e8e2f5;
  --shadow:       0 4px 24px rgba(61,31,142,0.12);
  --radius:       12px;
  --transition:   0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-mid); border-radius: 4px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(61,31,142,0.15);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

/* .nav-container used by inner pages */
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }

.logo-img { height: 52px; width: auto; object-fit: contain; display: block; }

.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .logo-text span:first-child { font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 1px; }
.nav-logo .logo-text span:last-child  { font-size: 18px; font-weight: 800; color: var(--primary); letter-spacing: 2px; }

.nav-links { display: flex; align-items: center; gap: 6px; }

.nav-links a {
  padding: 8px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

/* Contact Us CTA button in nav */
.nav-links a.btn-nav-cta {
  background: var(--primary); color: var(--white) !important;
  border-radius: 50px; padding: 10px 22px;
}
.nav-links a.btn-nav-cta::after { display: none; }
.nav-links a.btn-nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }

.section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  color: var(--primary); text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before { content: '•'; font-size: 20px; }

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; color: var(--dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }

.section-desc { font-size: 15px; line-height: 1.8; color: #666; max-width: 600px; }

.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; margin: 16px 0 32px;
}

/* ===== FLOATING BADGES ===== */
.float-badge {
  position: fixed; right: 16px; z-index: 999;
  display: flex; flex-direction: column; gap: 10px;
  bottom: 80px;
}

.badge-google {
  width: 56px; height: 56px; background: var(--white);
  border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); overflow: hidden;
}
.badge-google:hover { transform: scale(1.1); }

.badge-whatsapp {
  width: 56px; height: 56px; background: #25d366;
  border-radius: 50%; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  font-size: 28px; color: var(--white);
}
.badge-whatsapp:hover { transform: scale(1.1); }

.call-btn {
  position: fixed; left: 16px; bottom: 30px; z-index: 999;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95);
  border: 2px solid var(--primary);
  border-radius: 30px; padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  box-shadow: 0 4px 16px rgba(61,31,142,0.15);
  cursor: pointer; transition: var(--transition);
  backdrop-filter: blur(8px);
}
.call-btn:hover { background: var(--primary); color: var(--white); }
.call-btn .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); animation: pulse 1.5s infinite; }

/* ===== ABOUT SECTION ===== */
#about { background: var(--white); }

.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }

.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); width: 100%; }

.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: var(--white);
  border-radius: 12px; padding: 20px 24px; text-align: center;
  box-shadow: 0 8px 24px rgba(61,31,142,0.35);
}
.about-img-badge .big   { font-size: 36px; font-weight: 800; display: block; }
.about-img-badge .small { font-size: 12px; font-weight: 500; opacity: 0.9; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }

.about-feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--radius);
  background: var(--light-bg); transition: var(--transition);
}
.about-feat:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); }
.about-feat:hover .feat-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.about-feat:hover p { color: rgba(255,255,255,0.85); }

.feat-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary);
  flex-shrink: 0; transition: var(--transition);
}
.about-feat h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.about-feat p  { font-size: 12px; color: #888; transition: var(--transition); }

/* ===== STATS ===== */
#stats {
  background: linear-gradient(135deg, #0f0820 0%, #1a1428 100%);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item  { color: var(--white); }
.stat-num {
  font-size: 48px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary-mid), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; font-weight: 500; }

/* ===== SERVICES ===== */
#services { background: var(--light-bg); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }

.service-card {
  background: var(--white); border-radius: 20px; padding: 36px 28px 28px;
  text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: var(--transition); position: relative; overflow: hidden;
  border: 1.5px solid var(--border);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(61,31,142,0.14); border-color: var(--primary); }

.service-icon-wrap {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; transition: transform 0.35s ease;
}
.service-icon-wrap svg { width: 38px; height: 38px; color: var(--primary); }
.service-card:hover .service-icon-wrap { transform: scale(1.12) rotate(-4deg); background: var(--primary); }
.service-card:hover .service-icon-wrap svg { color: var(--white); }

.service-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 20px; transition: var(--transition);
  color: var(--primary);
}
.service-icon svg { width: 36px; height: 36px; color: var(--primary); }
.service-card:hover .service-icon { background: var(--primary); transform: scale(1.1) rotate(5deg); color: var(--white); }
.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.service-card p  { font-size: 14px; color: #888; line-height: 1.75; margin-bottom: 20px; }

.sc-line {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; margin: 0 auto; transition: width 0.4s ease;
}
.service-card:hover .sc-line { width: 72px; }

/* ===== PROJECTS ===== */
#projects { background: var(--white); }

.projects-tabs { display: flex; gap: 12px; margin-bottom: 40px; }

.tab-btn {
  padding: 10px 28px; border: 2px solid var(--border);
  border-radius: 50px; background: transparent;
  font-size: 14px; font-weight: 600; color: #888;
  cursor: pointer; transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.project-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition); background: var(--white);
  border: 1px solid var(--border);
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(61,31,142,0.18); border-color: transparent; }

.project-img { position: relative; overflow: hidden; height: 240px; background: #f0eff7; }
.project-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s ease; background: #f0eff7; }
.project-card:hover .project-img img { transform: scale(1.04); }

.project-status {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
}
.status-ongoing   { background: var(--accent); color: var(--dark); }
.status-completed { background: #22c55e; color: var(--white); }

.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,31,142,0.75) 0%, transparent 55%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay a {
  color: var(--white); font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--white); padding: 8px 20px;
  border-radius: 20px; transition: var(--transition);
}
.project-overlay a:hover { background: var(--white); color: var(--primary); }

.project-info { padding: 20px; }
.project-info h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.project-info p  { font-size: 13px; color: #888; line-height: 1.6; }

.project-meta { display: flex; gap: 16px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.project-meta span { font-size: 12px; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ===== GALLERY ===== */
#gallery { background: var(--light-bg); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 16px; margin-top: 48px;
}
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.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(61,31,142,0.70);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  font-size: 32px; color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--white); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }

.testimonial-card {
  background: var(--light-bg); border-radius: 16px; padding: 32px;
  position: relative; transition: var(--transition);
  border: 1.5px solid var(--border);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,31,142,0.12); background: var(--white); border-color: var(--primary); }

.quote-icon { font-size: 48px; color: var(--primary); opacity: 0.2; line-height: 1; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; line-height: 1.8; color: #666; margin-bottom: 20px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--white);
}
.author-info h4  { font-size: 14px; font-weight: 700; color: var(--dark); }
.author-info span{ font-size: 12px; color: #888; }
.stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; }

/* ===== CONTACT ===== */
#contact { background: var(--light-bg); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; margin-top: 48px; }
.contact-info h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white); flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-item p  { font-size: 14px; color: #888; line-height: 1.6; }

.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: inherit; color: var(--dark);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(61,31,142,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); border: none; border-radius: 10px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,31,142,0.35); }

/* ===== FOOTER ===== */
#footer { background: #0d0820; color: #ccc; padding: 60px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; align-items: start; }

.footer-brand p { font-size: 14px; line-height: 1.8; margin: 16px 0 24px; color: rgba(255,255,255,0.65); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12); transition: var(--transition); text-decoration: none;
}
.social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }

.footer-col h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; }

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); display: flex; align-items: center; gap: 6px; text-decoration: none; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--accent); font-size: 16px; }

.footer-bottom { background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom span { color: var(--accent); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight{ from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px);}to { opacity: 1; transform: translateX(0); } }
@keyframes pulse      { 0%,100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(1.4); opacity: 0.6; } }
@keyframes float      { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, #1a1428 0%, #2a1260 60%, #3d1f8e 100%);
  padding: 80px 0;
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}

/* Isometric grid overlay on page-hero */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg,  rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 50px),
    repeating-linear-gradient(60deg,  rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 50px),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 50px);
  pointer-events: none;
}

.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 12px; position: relative; }
.page-hero h1 span { color: var(--accent); }

.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.6); position: relative; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== NAV-CONTAINER (matches home page navbar) ===== */
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--primary-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== FOOTER GRID (matches home page footer) ===== */
.footer-top { padding-bottom: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px; padding: 56px 0 48px;
  align-items: start;
}

.fg-brand p { font-size: 14px; line-height: 1.8; margin: 16px 0 24px; color: rgba(255,255,255,0.65); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12); transition: var(--transition);
  text-decoration: none;
}
.footer-socials a:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); transform: translateY(-3px); }

.fg-col h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.fg-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; }
.fg-col ul { list-style: none; padding: 0; margin: 0; }
.fg-col ul li { margin-bottom: 10px; }
.fg-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); display: flex; align-items: center; gap: 6px; text-decoration: none; }
.fg-col ul li a:hover { color: var(--accent); padding-left: 4px; }

/* ===== FLOATING WIDGETS ===== */
.float-widgets {
  position: fixed; right: 16px; bottom: 80px; z-index: 999;
  display: flex; flex-direction: column; gap: 10px;
}
.fw-google {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.fw-google:hover { transform: scale(1.1); }

.fw-whatsapp {
  width: 52px; height: 52px; background: #25d366; border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition);
}
.fw-whatsapp:hover { transform: scale(1.1); }

/* ===== CALL FLOAT ===== */
.call-float {
  position: fixed; left: 16px; bottom: 28px; z-index: 999;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95);
  border: 2px solid var(--primary);
  border-radius: 30px; padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  box-shadow: 0 4px 16px rgba(61,31,142,0.15);
  text-decoration: none; transition: var(--transition);
  backdrop-filter: blur(8px);
}
.call-float:hover { background: var(--primary); color: var(--white); }
.cf-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); animation: pulse 1.5s infinite; display: inline-block;
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999; transition: width 0.1s linear; pointer-events: none;
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 4px;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(14px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 32px rgba(0,0,0,0.10); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; border-radius: 10px; }
  .nav-links .nav-cta { margin-top: 8px; justify-content: center; display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════ */

/* ── Intro split grid ── */
.abt-intro { padding: 96px 0; background: var(--white); }

.abt-intro-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}

/* Image side */
.abt-img-side { position: relative; }

.abt-img-main {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(61,31,142,0.15);
}
.abt-img-main img { width: 100%; height: 460px; object-fit: cover; display: block; }

.abt-img-thumb {
  position: absolute; bottom: -28px; right: -28px;
  width: 160px; height: 140px;
  border-radius: 16px; overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.abt-img-thumb img { width: 100%; height: 100%; object-fit: cover; }

.abt-exp-badge {
  position: absolute; top: 28px; left: -24px;
  background: var(--primary);
  color: var(--white); border-radius: 16px;
  padding: 18px 22px; text-align: center;
  box-shadow: 0 8px 28px rgba(61,31,142,0.4);
}
.abt-exp-num { display: block; font-size: 34px; font-weight: 800; font-family: 'Playfair Display', serif; line-height: 1; }
.abt-exp-num sup { font-size: 16px; }
.abt-exp-txt { display: block; font-size: 11px; font-weight: 600; opacity: 0.85; margin-top: 4px; line-height: 1.3; }

/* Content side */
.abt-para { font-size: 15px; line-height: 1.85; color: #666; margin-bottom: 16px; }

.abt-quote {
  border-left: 4px solid var(--accent);
  padding: 14px 20px; margin: 24px 0 28px;
  background: var(--light-bg); border-radius: 0 10px 10px 0;
  font-style: italic; font-size: 15px; color: var(--text); font-weight: 500;
}

.abt-feat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 32px;
}
.abt-feat-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: 12px;
  background: var(--light-bg); border: 1.5px solid var(--border);
  transition: var(--transition);
}
.abt-feat-item:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.abt-feat-icon { font-size: 24px; flex-shrink: 0; }
.abt-feat-item h5 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.abt-feat-item p  { font-size: 12px; color: #888; }

.abt-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.abt-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: 13px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(61,31,142,0.30);
  text-decoration: none;
}
.abt-btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.abt-btn-outline {
  display: inline-flex; align-items: center;
  border: 2px solid var(--border); color: var(--text);
  padding: 11px 26px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: var(--transition); text-decoration: none;
}
.abt-btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ── Vision & Mission ── */
.vm-section { padding: 96px 0; background: var(--light-bg); }
.section-head-center { margin-bottom: 52px; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.vm-card {
  background: var(--white); border-radius: 20px; padding: 40px 36px;
  border: 1.5px solid var(--border); transition: var(--transition);
  text-align: center;
}
.vm-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(61,31,142,0.12); }
.vm-icon { font-size: 44px; margin-bottom: 18px; }
.vm-card h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.vm-card p  { font-size: 15px; color: #666; line-height: 1.8; }

/* ── Why Choose Us ── */
.why-section { padding: 96px 0; background: var(--white); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.why-card {
  padding: 36px 28px; border-radius: 18px;
  border: 1.5px solid var(--border); background: var(--white);
  position: relative; overflow: hidden; transition: var(--transition);
}
.why-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(61,31,142,0.12); }
.why-card:hover .why-num { color: var(--border); }

.why-num {
  position: absolute; top: 16px; right: 20px;
  font-size: 48px; font-weight: 900; color: var(--light-bg);
  font-family: 'Playfair Display', serif; line-height: 1;
  transition: var(--transition); user-select: none;
}
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p  { font-size: 13px; color: #888; line-height: 1.7; }

/* ── Recent Projects ── */
.recent-section { padding: 96px 0; background: var(--light-bg); }

.recent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }

.recent-card {
  border-radius: 16px; overflow: hidden; background: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border: 1px solid var(--border); transition: var(--transition);
}
.recent-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,31,142,0.14); border-color: var(--primary); }

.recent-img { position: relative; overflow: hidden; height: 200px; }
.recent-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.recent-card:hover .recent-img img { transform: scale(1.08); }

.recent-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--dark);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px;
}

.recent-info { padding: 16px 18px; }
.recent-info h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.recent-info p  { font-size: 13px; color: #888; }

/* Responsive */
@media (max-width: 1024px) {
  .abt-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .abt-img-side   { max-width: 560px; margin: 0 auto; }
  .recent-grid    { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .abt-feat-grid  { grid-template-columns: 1fr; }
  .vm-grid        { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .recent-grid    { grid-template-columns: 1fr; }
  .abt-img-thumb  { width: 110px; height: 95px; right: -10px; bottom: -14px; }
  .abt-exp-badge  { left: -10px; }
}

/* ── Why Choose Us ── */
.why-section { padding: 96px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 36px 28px; border-radius: 18px;
  border: 1.5px solid var(--border); background: var(--white);
  position: relative; overflow: hidden; transition: var(--transition);
}
.why-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(61,31,142,0.12); }
.why-num {
  position: absolute; top: 16px; right: 20px;
  font-size: 48px; font-weight: 900; color: var(--light-bg);
  font-family: 'Playfair Display', serif; line-height: 1;
  transition: var(--transition); user-select: none;
}
.why-card:hover .why-num { color: var(--border); }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p  { font-size: 13px; color: #888; line-height: 1.7; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== FLOOR PLAN SECTIONS ===== */
.pp-floor-section { margin-bottom:32px; }
.pp-floor-section:last-child { margin-bottom:0; }
.pp-floor-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  color:var(--primary); background:#f0eeff;
  border-left:4px solid var(--primary);
  padding:7px 18px; border-radius:0 8px 8px 0;
  margin-bottom:16px;
}
.pp-floor-label::before { content:''; width:8px; height:8px; border-radius:50%; background:var(--primary); flex-shrink:0; }
.pp-section-divider {
  border:none; border-top:2px dashed #e0daf5;
  margin:28px 0;
}
