/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* ===== CSS VARIABLES (REVISED: EMERALD & GOLD) ===== */
:root {
  --primary: #0F5132;        /* Emerald Green */
  --primary-dark: #0A3D26;
  --secondary: #D4AF37;      /* Royal Gold */
  --secondary-light: #F1D279;
  --dark: #0F172A;           /* Slate Dark */
  --light-bg: #F8FAFC;       /* Off White / Cyan Tint */
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --accent-green: #10B981;   /* Emerald Accent */
  --accent-purple: #8B5CF6;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --whatsapp: #25D366;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-card: 12px;
  --radius-btn: 12px;
  --radius-badge: 4px;
  --container: 1200px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== NEW ANIMATIONS ===== */
@keyframes glint {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

.stagger-item { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.stagger-item.appear { 
  opacity: 1; 
  transform: translateY(0); 
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; background: var(--white); }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }

/* ===== UTILITY ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--light { background: var(--light-bg); }
.section-label { font-family: var(--font-heading); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 12px; }
.section-heading { font-family: var(--font-heading); font-weight: 800; font-size: 40px; line-height: 1.2; margin-bottom: 20px; }
.section-heading--white { color: var(--white); }
.section-sub { color: var(--text-muted); font-size: 17px; max-width: 600px; margin-bottom: 48px; }
.section-sub--white { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  padding: 14px 32px; 
  border-radius: var(--radius-btn); 
  font-family: var(--font-heading); 
  font-weight: 600; 
  font-size: 15px; 
  cursor: pointer; 
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 40px; height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-100%) skewX(-15deg);
}

.btn:hover { transform: translateY(-3px); }
.btn:hover::after { animation: glint 0.8s ease-in-out; }

.btn--primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 14px rgba(15, 81, 50, 0.3); }
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 8px 24px rgba(15, 81, 50, 0.4); }

.btn--secondary { background: var(--secondary); color: var(--primary); box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3); }
.btn--secondary:hover { background: var(--secondary-light); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4); }

.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--primary); }

.btn--outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--primary); }
.btn--outline-dark:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.btn--white { background: var(--white); color: var(--primary); }
.btn--white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.btn--green { background: var(--whatsapp); color: var(--white); }
.btn--green:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.btn--sm { padding: 10px 20px; font-size: 14px; }

/* ===== CARDS ===== */
.card { 
  background: var(--white); 
  border-radius: var(--radius-card); 
  padding: 32px; 
  border: 1px solid var(--border); 
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition); 
  position: relative;
  overflow: hidden;
}
.card:hover { 
  transform: translateY(-8px); 
  border-top: 4px solid var(--secondary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12); 
}

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 16px 0; transition: background var(--transition), box-shadow var(--transition), padding var(--transition); }
.header.scrolled { background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.06); padding: 10px 0; }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-weight: 800; font-size: 24px; color: var(--white); }
.logo span { color: var(--primary); }
.header.scrolled .logo { color: var(--dark); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); position: relative; transition: color var(--transition); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.header.scrolled .nav-links a { color: var(--text-dark); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-whatsapp { width: 40px; height: 40px; border-radius: 50%; background: var(--whatsapp); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: transform var(--transition); }
.nav-whatsapp:hover { transform: scale(1.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.header.scrolled .hamburger span { background: var(--dark); }

/* Mobile Nav */
.mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--dark); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--white); }
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .close-btn { position: absolute; top: 20px; right: 24px; font-size: 32px; color: var(--white); background: none; cursor: pointer; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); border-top: 3px solid var(--primary); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-col h4 { font-family: var(--font-heading); font-weight: 700; color: var(--white); font-size: 17px; margin-bottom: 20px; }
.footer-col p, .footer-col a { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.footer-col a:hover { color: var(--primary); }
.footer-col ul li { margin-bottom: 8px; }
.footer-logo { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--primary); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; transition: background var(--transition); }
.social-icons a:hover { background: var(--primary); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
.footer-contact-item i { color: var(--primary); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--primary); }

/* ===== FLOATING ELEMENTS ===== */
.float-whatsapp { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 900; box-shadow: 0 4px 16px rgba(37,211,102,0.4); cursor: pointer; transition: transform var(--transition); animation: pulse-green 2s infinite; }
.float-whatsapp:hover { transform: scale(1.1); }
.back-to-top { position: fixed; bottom: 90px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 900; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform var(--transition); }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-2px); background: var(--primary); }

/* ===== HERO ===== */
.hero { position: relative; background: var(--dark); padding: 160px 0 100px; overflow: hidden; }
.hero-bg-pattern { position: absolute; top: 0; right: 0; width: 50%; height: 100%; opacity: 0.05; background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px); background-size: 24px 24px; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero h1 { font-family: var(--font-heading); font-weight: 800; font-size: 60px; line-height: 1.1; color: var(--white); margin-bottom: 8px; }
.hero .hero-sub { color: var(--primary); font-family: var(--font-heading); font-weight: 700; font-size: 22px; margin-bottom: 16px; }
.hero .hero-body { color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.7; margin-bottom: 32px; max-width: 540px; }
.hero-btns { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.trust-badges { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; }
.trust-badge-icon { font-size: 22px; }

/* ===== SERVICE PILLARS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { position: relative; overflow: hidden; padding: 36px 28px; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.service-card.construction::before { background: var(--primary); }
.service-card.interiors::before { background: var(--secondary); }
.service-card.painting::before { background: var(--accent-purple); }
.service-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.service-card.construction .service-icon { background: rgba(255,107,43,0.1); color: var(--primary); }
.service-card.interiors .service-icon { background: rgba(14,165,233,0.1); color: var(--secondary); }
.service-card.painting .service-icon { background: rgba(124,58,237,0.1); color: var(--accent-purple); }
.service-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 22px; margin-bottom: 4px; }
.service-card .service-sub { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 12px; font-weight: 600; }
.service-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.service-card .cta-link { font-weight: 600; font-size: 15px; color: var(--primary); transition: gap var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .cta-link { gap: 10px; }

/* ===== STATS BAR ===== */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 48px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-weight: 800; font-size: 48px; color: var(--primary); }
.stat-label { color: rgba(255,255,255,0.6); font-size: 15px; margin-top: 4px; }

/* ===== PROCESS / TIMELINE ===== */
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 44px; left: 10%; right: 10%; height: 2px; border-top: 2px dashed var(--primary); opacity: 0.4; }
.step { flex: 1; text-align: center; position: relative; padding: 0 12px; }
.step-number { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin: 0 auto 16px; position: relative; z-index: 2; }
.step-icon { font-size: 28px; margin-bottom: 10px; }
.step h4 { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== PROJECTS ===== */
.filter-tabs { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-tab { padding: 8px 20px; border-radius: 100px; border: 1px solid var(--border); background: var(--white); font-size: 14px; font-weight: 500; cursor: pointer; transition: all var(--transition); }
.filter-tab.active, .filter-tab:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { border-radius: var(--radius-card); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.project-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-overlay { position: absolute; inset: 0; background: rgba(26,26,46,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay span { color: var(--white); font-weight: 600; font-size: 15px; }
.project-badge { position: absolute; top: 12px; left: 12px; padding: 4px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--white); }
.project-badge.construction { background: var(--primary); }
.project-badge.interiors { background: var(--secondary); }
.project-badge.painting { background: var(--accent-purple); }
.project-badge.luxury { background: #D4AF37; }
.project-info { padding: 20px; }
.project-info h3 { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.project-details { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); }

/* ===== USP ===== */
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.usp-image { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/3; }
.usp-image img { width: 100%; height: 100%; object-fit: cover; }
.usp-list { display: flex; flex-direction: column; gap: 24px; }
.usp-item { display: flex; gap: 16px; }
.usp-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,107,43,0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.usp-item h4 { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.usp-item p { font-size: 14px; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testimonial-card { min-width: calc(33.333% - 16px); background: var(--white); border-radius: var(--radius-card); padding: 32px; border: 1px solid var(--border); flex-shrink: 0; }
.testimonial-stars { color: var(--primary); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--text-dark); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 16px; }
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-location { font-size: 13px; color: var(--text-muted); }
.slider-arrows { display: flex; gap: 12px; margin-top: 32px; justify-content: center; }
.slider-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); font-size: 18px; }
.slider-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== COST ESTIMATOR ===== */
.estimator-form { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; max-width: 900px; margin: 0 auto 24px; }
.estimator-form .form-group { flex: 1; min-width: 200px; }
.estimator-form label { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.estimator-form select, .estimator-form input { width: 100%; padding: 14px 16px; border-radius: var(--radius-card); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 15px; }
.estimator-form select option { background: var(--dark); color: var(--white); }
.estimator-result { text-align: center; font-family: var(--font-heading); font-weight: 700; font-size: 28px; color: var(--primary); margin-top: 24px; min-height: 40px; }
.estimator-note { text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ===== BRAND PARTNERS ===== */
.marquee { overflow: hidden; position: relative; padding: 20px 0; }
.marquee-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; }
.marquee-item { flex-shrink: 0; padding: 12px 24px; background: var(--light-bg); border-radius: var(--radius-card); font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--text-muted); white-space: nowrap; border: 1px solid var(--border); }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--primary); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-heading); font-weight: 800; font-size: 40px; color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 32px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== INNER PAGE HERO ===== */
.page-hero { background: var(--dark); padding: 140px 0 60px; text-align: center; }
.page-hero h1 { font-family: var(--font-heading); font-weight: 800; font-size: 44px; color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 14px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--text-dark); }
.form-input { width: 100%; padding: 14px 16px; border-radius: var(--radius-card); border: 1px solid var(--border); font-size: 15px; transition: border-color var(--transition); background: var(--white); }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,43,0.1); }
textarea.form-input { min-height: 120px; resize: vertical; }

/* ===== ACCORDION ===== */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-card); margin-bottom: 12px; overflow: hidden; }
.accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 16px; background: var(--white); transition: background var(--transition); }
.accordion-header:hover { background: var(--light-bg); }
.accordion-icon { font-size: 20px; transition: transform 0.3s ease; color: var(--primary); }
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.accordion-item.active .accordion-body { padding: 0 24px 20px; max-height: 500px; }
.accordion-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-toggle { display: flex; justify-content: center; gap: 0; margin-bottom: 48px; background: var(--light-bg); border-radius: 100px; padding: 4px; width: fit-content; margin-left: auto; margin-right: auto; }
.pricing-toggle button { padding: 12px 32px; border-radius: 100px; font-weight: 600; font-size: 15px; cursor: pointer; background: transparent; color: var(--text-muted); transition: all var(--transition); }
.pricing-toggle button.active { background: var(--primary); color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pricing-card { border-radius: var(--radius-card); border: 1px solid var(--border); background: var(--white); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.pricing-card.popular { border-color: var(--primary); position: relative; }
.pricing-card.recommended { border-color: var(--accent-purple); position: relative; }
.pricing-badge { position: absolute; top: 0; right: 20px; padding: 4px 16px; border-radius: 0 0 8px 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); }
.pricing-badge.popular { background: var(--primary); }
.pricing-badge.recommended { background: var(--accent-purple); }
.pricing-header { padding: 32px 24px 20px; text-align: center; }
.pricing-header h3 { font-family: var(--font-heading); font-weight: 700; font-size: 22px; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-heading); font-weight: 800; font-size: 32px; color: var(--primary); }
.pricing-price span { font-size: 15px; font-weight: 500; color: var(--text-muted); }
.pricing-features { padding: 0 24px 24px; }
.pricing-features li { padding: 8px 0; font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid var(--light-bg); }
.pricing-features li:last-child { border: none; }
.pricing-features .check { color: var(--accent-green); font-weight: 700; }
.pricing-card .btn { margin: 0 24px 24px; width: calc(100% - 48px); justify-content: center; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border-radius: var(--radius-card); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; background: rgba(255,107,43,0.1); color: var(--primary); margin-bottom: 12px; }
.blog-body h3 { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.blog-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; }
.contact-info-card { padding: 20px; border-radius: var(--radius-card); background: var(--light-bg); margin-bottom: 16px; display: flex; align-items: flex-start; gap: 14px; }
.contact-info-card i { font-size: 20px; color: var(--primary); margin-top: 2px; }
.contact-info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--text-muted); }
.map-placeholder { width: 100%; height: 240px; border-radius: var(--radius-card); background: var(--light-bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); margin-top: 16px; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; padding: 32px 20px; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 32px; color: var(--white); }
.team-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.team-card .role { font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--text-muted); }

/* ===== TOOLS ===== */
.tool-card { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border); background: var(--white); margin-bottom: 32px; }
.tool-header { padding: 24px 32px; color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 20px; }
.tool-header.orange { background: var(--primary); }
.tool-header.blue { background: var(--secondary); }
.tool-header.purple { background: var(--accent-purple); }
.tool-header.green { background: var(--accent-green); }
.tool-body { padding: 32px; }
.tool-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tool-result { margin-top: 24px; padding: 24px; border-radius: var(--radius-card); background: var(--light-bg); text-align: center; display: none; }
.tool-result.visible { display: block; }
.tool-result .result-value { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: var(--primary); }

/* ===== MULTI-STEP FORM ===== */
.form-steps { display: flex; gap: 0; margin-bottom: 32px; }
.form-step-indicator { flex: 1; text-align: center; padding: 12px; position: relative; font-size: 14px; font-weight: 600; color: var(--text-muted); }
.form-step-indicator.active { color: var(--primary); }
.form-step-indicator.completed { color: var(--accent-green); }
.form-step-indicator::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--border); }
.form-step-indicator.active::after { background: var(--primary); }
.form-step-indicator.completed::after { background: var(--accent-green); }
.form-panel { display: none; }
.form-panel.active { display: block; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot { position: absolute; left: -33px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--primary); }
.timeline-year { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 18px; margin-bottom: 4px; }
.timeline-text { font-size: 15px; color: var(--text-muted); }

/* ===== VALUE CARDS ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { text-align: center; padding: 40px 28px; }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-muted); }

/* ===== ABOUT PROCESS ===== */
.about-process-item { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.about-process-item:nth-child(even) { direction: rtl; }
.about-process-item:nth-child(even) > * { direction: ltr; }
.about-process-number { font-family: var(--font-heading); font-weight: 800; font-size: 64px; color: rgba(255,107,43,0.15); margin-bottom: 8px; }
.about-process-item h3 { font-family: var(--font-heading); font-weight: 700; font-size: 24px; margin-bottom: 12px; }
.about-process-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.about-process-img { border-radius: var(--radius-card); background: var(--light-bg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; border: 1px solid var(--border); }

/* ===== REFER ===== */
.refer-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
.refer-step { text-align: center; padding: 36px 24px; }
.refer-step-number { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 20px; margin: 0 auto 16px; }

/* ===== SIDEBAR ===== */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px; margin-bottom: 24px; }
.sidebar-card h4 { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin-bottom: 16px; }

/* ===== ANIMATIONS ===== */
@keyframes pulse-green { 0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes countUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-hero { animation: fadeInUp 0.8s ease 0.2s both; }
.animate-hero-delay { animation: fadeInUp 0.8s ease 0.4s both; }
.animate-hero-delay2 { animation: fadeInUp 0.8s ease 0.6s both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== SKIP LINK ===== */
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--primary); color: var(--white); padding: 12px 24px; border-radius: var(--radius-btn); z-index: 10000; font-weight: 600; }
.skip-link:focus { top: 16px; }

/* ===== 404 ===== */
.page-404 { text-align: center; padding: 160px 0 80px; }
.page-404 h1 { font-family: var(--font-heading); font-weight: 800; font-size: 120px; color: var(--primary); line-height: 1; }
.page-404 h2 { font-family: var(--font-heading); font-weight: 700; font-size: 28px; margin-bottom: 16px; }
.page-404 p { color: var(--text-muted); margin-bottom: 32px; }

/* ===== ADD-ONS TABLE ===== */
.addon-table { width: 100%; border-collapse: collapse; margin-bottom: 48px; }
.addon-table th, .addon-table td { text-align: left; padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 15px; }
.addon-table th { background: var(--light-bg); font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.addon-table td:nth-child(2) { font-weight: 700; color: var(--primary); }

/* ===== BUNDLE BOX ===== */
.bundle-box { background: rgba(255,107,43,0.08); border: 2px solid var(--primary); border-radius: var(--radius-card); padding: 32px; text-align: center; margin-bottom: 48px; }
.bundle-box h3 { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: var(--primary); margin-bottom: 8px; }

/* ===== SERVICE PAGE ===== */
.service-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.service-overview-img { border-radius: var(--radius-card); background: var(--light-bg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); overflow: hidden; }
.service-overview-img img { width: 100%; height: 100%; object-fit: cover; }
.inclusion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.inclusion-item { text-align: center; padding: 24px 16px; background: var(--white); border-radius: var(--radius-card); border: 1px solid var(--border); }
.inclusion-item i { font-size: 28px; color: var(--primary); margin-bottom: 10px; display: block; }
.inclusion-item span { font-size: 14px; font-weight: 600; }
.service-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-gallery-item { aspect-ratio: 4/3; border-radius: var(--radius-card); background: var(--light-bg); border: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; }

/* ===== THANK YOU ===== */
.thank-you { text-align: center; padding: 160px 0 80px; }
.thank-you-icon { font-size: 72px; margin-bottom: 24px; }
.thank-you h1 { font-family: var(--font-heading); font-weight: 800; font-size: 44px; margin-bottom: 16px; }
.thank-you p { color: var(--text-muted); font-size: 18px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .services-grid, .projects-grid, .blog-grid, .team-grid, .values-grid, .refer-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .inclusion-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .testimonial-card { min-width: calc(50% - 12px); }
}

@media (max-width: 767px) {
  .section { padding: 48px 0; }
  .section-heading { font-size: 28px; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 36px; }
  .hero .hero-sub { font-size: 18px; }
  .hero .hero-body { font-size: 16px; }
  .hero-btns { flex-direction: column; }
  .trust-badges { flex-direction: column; gap: 16px; }
  .services-grid, .projects-grid, .blog-grid, .team-grid, .values-grid, .refer-steps, .pricing-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 28px 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-number { font-size: 36px; }
  .process-steps { flex-direction: column; gap: 24px; }
  .process-steps::before { display: none; }
  .step { text-align: left; display: flex; gap: 16px; padding: 0; }
  .step-number { margin: 0; flex-shrink: 0; }
  .step-text { flex: 1; }
  .step-icon { display: none; }
  .usp-grid, .contact-grid, .service-overview-grid, .about-process-item { grid-template-columns: 1fr; }
  .about-process-item:nth-child(even) { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .estimator-form { flex-direction: column; }
  .tool-form { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 28px; }
  .page-hero h1 { font-size: 32px; }
  .testimonial-card { min-width: 100%; }
  .filter-tabs { justify-content: center; }
  .page-404 h1 { font-size: 80px; }
  .inclusion-grid { grid-template-columns: 1fr 1fr; }
  .service-gallery { grid-template-columns: 1fr 1fr; }
}
