/* =====================================================
   SEOSPIDY - Website Designer Noida
   Shared Stylesheet v2.0 (SEO Optimised, 2026)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --brand-deep:   #0A1628;
  --brand-blue:   #1357BE;
  --brand-accent: #0FC6B4;
  --brand-light:  #E8F1FF;
  --white:        #FFFFFF;
  --gray-50:      #F7F9FC;
  --gray-100:     #EEF2F7;
  --gray-500:     #6B7A99;
  --gray-700:     #3A4560;
  --text-main:    #1A2540;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(13,40,90,.07);
  --shadow-md:    0 8px 30px rgba(13,40,90,.12);
  --shadow-lg:    0 20px 60px rgba(13,40,90,.16);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-accent); }
h1,h2,h3,h4,h5,h6 { font-family: 'Syne', sans-serif; line-height: 1.2; color: var(--brand-deep); }
ul { list-style: none; padding: 0; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -50px; left: 16px;
  background: var(--brand-blue); color: #fff;
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  font-weight: 600; z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--alt { background: var(--gray-50); }
.text-center { text-align: center; }

.badge-pill {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-blue);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px;
}

.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; max-width: 600px; }
.section-header.text-center p { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 100px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary {
  background: var(--brand-blue); color: #fff; border-color: var(--brand-blue);
}
.btn-primary:hover {
  background: #0e47a1; border-color: #0e47a1; color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(19,87,190,.35);
}
.btn-accent {
  background: var(--brand-accent); color: var(--brand-deep); border-color: var(--brand-accent);
}
.btn-accent:hover {
  background: #0aad9c; border-color: #0aad9c; color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,198,180,.35);
}
.btn-outline {
  background: transparent; color: var(--brand-blue); border-color: var(--brand-blue);
}
.btn-outline:hover {
  background: var(--brand-blue); color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff; color: var(--brand-deep); border-color: #fff;
}
.btn-white:hover {
  background: var(--brand-accent); border-color: var(--brand-accent); color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15); border-color: #fff; color: #fff;
}

/* ---- Header / Navbar ---- */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 42px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: .93rem; color: var(--gray-700);
  transition: all var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--brand-blue); background: var(--brand-light); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  min-width: 260px; padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-dropdown a {
  display: block; padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--gray-700);
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--brand-light); color: var(--brand-blue); padding-left: 18px; }
.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }

.nav-cta { margin-left: 12px; }

/* Mobile Toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--brand-deep); margin: 5px 0;
  transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--brand-deep) 0%, #1357BE 60%, #0a3d8f 100%);
  position: relative; overflow: hidden;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--brand-accent); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.82); margin-bottom: 36px; max-width: 580px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 56px; position: relative; z-index: 1; }
.hero-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stat span { font-size: .88rem; color: rgba(255,255,255,.65); }

/* Page Hero (inner pages) */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-blue) 100%);
  color: #fff; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 20px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--brand-accent); }
.breadcrumb span { color: rgba(255,255,255,.45); }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--brand-accent); color: var(--brand-deep);
  border-radius: var(--radius-md); padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; }
.about-badge span { font-size: .82rem; font-weight: 600; }
.about-text p { color: var(--gray-700); margin-bottom: 18px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.about-feature {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-50); border-radius: var(--radius-sm); padding: 12px 16px;
}
.about-feature i { color: var(--brand-accent); font-size: 1.1rem; flex-shrink: 0; }
.about-feature span { font-size: .9rem; font-weight: 500; color: var(--gray-700); }

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 32px 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all var(--transition);
}
.service-icon i { font-size: 1.4rem; color: var(--brand-blue); }
.service-card:hover .service-icon { background: var(--brand-blue); }
.service-card:hover .service-icon i { color: #fff; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.65; }
.service-card ul { margin-bottom: 20px; }
.service-card ul li {
  font-size: .87rem; color: var(--gray-700); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.service-card ul li::before { content: '✓'; color: var(--brand-accent); font-weight: 700; }
.service-link {
  font-size: .88rem; font-weight: 600; color: var(--brand-blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-link:hover { color: var(--brand-accent); gap: 10px; }

/* ---- Why Choose ---- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 28px;
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: var(--radius-sm); background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
}
.why-icon i { font-size: 1.3rem; color: var(--brand-blue); }
.why-card h4 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ---- Process ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { text-align: center; position: relative; }
.process-step::after {
  content: '→';
  position: absolute; top: 28px; right: -14px;
  font-size: 1.4rem; color: var(--gray-100);
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-accent));
  color: #fff; font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: .88rem; color: var(--gray-500); }

/* ---- Stats Bar ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-blue));
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item strong { display: block; font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--brand-accent); }
.stat-item span { font-size: .9rem; color: rgba(255,255,255,.72); margin-top: 4px; display: block; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 32px;
  transition: all var(--transition); position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.quote-icon { color: var(--brand-accent); font-size: 1.8rem; margin-bottom: 16px; opacity: .7; }
.testimonial-card p { font-size: .93rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.client-row { display: flex; align-items: center; gap: 14px; }
.client-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
}
.client-avatar i { color: var(--brand-blue); font-size: 1.2rem; }
.client-name { font-weight: 600; font-size: .93rem; margin-bottom: 2px; }
.client-role { font-size: .82rem; color: var(--gray-500); }
.stars { color: #F59E0B; font-size: .85rem; margin-top: 4px; }

/* ---- Awards ---- */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.award-card {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-100); background: var(--white);
  transition: all var(--transition);
}
.award-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.award-img { position: relative; height: 200px; overflow: hidden; }
.award-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.award-card:hover .award-img img { transform: scale(1.06); }
.award-year-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--brand-blue); color: #fff;
  font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}
.award-body { padding: 18px 20px; }
.award-body h4 { font-size: .95rem; margin-bottom: 6px; }
.award-body p { font-size: .82rem; color: var(--gray-500); line-height: 1.55; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; height: 220px; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,40,90,.75);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition); color: #fff; text-align: center; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay i { font-size: 1.6rem; margin-bottom: 10px; color: var(--brand-accent); }
.gallery-overlay p { font-size: .88rem; }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.faq-item { border-bottom: 1px solid var(--gray-100); padding: 20px 0; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; font-weight: 600; font-size: .95rem;
  color: var(--brand-deep); user-select: none;
}
.faq-question i { color: var(--brand-blue); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { display: none; padding-top: 12px; font-size: .9rem; color: var(--gray-500); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-blue));
  border-radius: var(--radius-lg); padding: 44px 40px; color: #fff;
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.5rem; }
.contact-info-card > p { color: rgba(255,255,255,.72); margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.12); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.c-icon i { color: var(--brand-accent); }
.contact-detail h5 { color: rgba(255,255,255,.5); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-detail a, .contact-detail p { color: #fff; font-size: .95rem; }
.social-row { display: flex; gap: 12px; margin-top: 36px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--transition);
}
.social-btn:hover { background: var(--brand-accent); color: var(--brand-deep); transform: translateY(-3px); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-blue));
  padding: 88px 0; text-align: center;
}
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer {
  background: var(--brand-deep); color: rgba(255,255,255,.72);
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-about p { font-size: .9rem; line-height: 1.75; margin: 16px 0; }
.footer-logo img { height: 40px; }
.footer-widget h4 {
  font-family: 'Syne', sans-serif; font-size: 1rem; color: #fff;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-accent); display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.65); transition: all var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--brand-accent); }
.footer-links a:hover { color: var(--brand-accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; margin-top: 56px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--brand-accent); }

/* ---- Sticky Floating Buttons ---- */
.sticky-btns {
  position: fixed; left: 20px; top: 50%; transform: translateY(-50%);
  z-index: 900; display: flex; flex-direction: column; gap: 12px;
}
.sticky-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; box-shadow: var(--shadow-md);
  transition: all var(--transition); position: relative;
}
.sticky-btn:hover { transform: scale(1.15); color: #fff; }
.sticky-btn.whatsapp { background: #25D366; }
.sticky-btn.call { background: var(--brand-blue); }
.sticky-tip {
  position: absolute; left: 58px; white-space: nowrap;
  background: var(--brand-deep); color: #fff;
  padding: 5px 10px; border-radius: var(--radius-sm); font-size: .8rem;
  opacity: 0; pointer-events: none; transition: all var(--transition);
}
.sticky-btn:hover .sticky-tip { opacity: 1; }

/* ---- Schema hidden ---- */
[data-schema] { display: none; }

/* ---- Inner Page Content ---- */
.page-content { padding: 72px 0; }
.content-article { max-width: 820px; }
.content-article h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--brand-deep); }
.content-article h3 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--brand-blue); }
.content-article p { color: var(--gray-700); margin-bottom: 18px; }
.content-article ul { margin: 16px 0 22px 20px; }
.content-article ul li { color: var(--gray-700); margin-bottom: 8px; position: relative; padding-left: 18px; }
.content-article ul li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-accent); font-weight: 700; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fadeInUp .6s ease forwards; }
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .2s; }
.anim-d3 { animation-delay: .3s; }
.anim-d4 { animation-delay: .4s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 16px; border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open .nav-cta { display: block; padding: 12px 14px; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; box-shadow: none; transform: none; display: none; }
  .nav-menu.open .has-dropdown.dd-open .nav-dropdown { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .awards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
