/* ============================================
   Shree Ganesh Dry Cleaners - Kota
   Complete Stylesheet
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- Root Variables --- */
:root {
  --primary: #0A192F;
  --primary-light: #0F3460;
  --gold: #D4AF37;
  --gold-light: #E5C354;
  --gold-dark: #B8941F;
  --text: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --bg: #F8F9FA;
  --bg-dark: #060e1a;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --whatsapp: #25D366;
}

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter',-apple-system,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* --- Container --- */
.container { width:100%; max-width:1200px; margin:0 auto; padding:0 20px; }

/* --- Buttons --- */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 28px; border-radius:50px;
  font-weight:600; font-size:0.95rem;
  cursor:pointer; border:none; text-decoration:none;
  transition:var(--transition); white-space:nowrap;
}
.btn-primary {
  background:var(--gold); color:var(--primary);
  box-shadow:0 4px 15px rgba(212,175,55,0.3);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(212,175,55,0.4); }
.btn-whatsapp {
  background:var(--whatsapp); color:var(--white);
  box-shadow:0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background:#1ebe57; transform:translateY(-2px); }
.btn-outline {
  background:transparent; color:var(--primary);
  border:2px solid var(--primary);
}
.btn-outline:hover { background:var(--primary); color:var(--white); }
.btn-white {
  background:var(--white); color:var(--primary);
}
.btn-white:hover { background:var(--gold); color:var(--primary); }
.btn-white-outline {
  background:transparent; color:var(--white);
  border:2px solid var(--white);
}
.btn-white-outline:hover { background:var(--white); color:var(--primary); }
.btn-sm { padding:8px 18px; font-size:0.85rem; }
.btn-lg { padding:16px 40px; font-size:1.1rem; }
.btn-block { width:100%; justify-content:center; }

/* --- Section Styles --- */
.section { padding:80px 0; }
.section-dark { background:var(--primary); color:var(--white); }
.section-light { background:var(--bg); }
.section-white { background:var(--white); }

.section-title {
  text-align:center; font-size:2.2rem;
  color:var(--primary); margin-bottom:12px;
  font-weight:700;
}
.section-title::after {
  content:''; display:block; width:50px; height:3px;
  background:var(--gold); margin:12px auto 0;
}
.section-dark .section-title { color:var(--white); }
.section-dark .section-title::after { background:var(--gold); }
.section-subtitle {
  text-align:center; color:var(--text-light);
  font-size:1.05rem; margin-bottom:40px;
  max-width:650px; margin-left:auto; margin-right:auto;
}
.section-dark .section-subtitle { color:rgba(255,255,255,0.8); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  position:fixed; top:0; left:0; width:100%;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  z-index:1000; box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
header.scrolled { box-shadow:var(--shadow-md); }

.nav-wrapper {
  display:flex; justify-content:space-between;
  align-items:center; height:90px;
}
.nav-wrapper nav {
  display:flex; justify-content:space-between;
  align-items:center; width:100%; gap:30px;
}
.logo { flex-shrink:0; }
.logo img { height:80px; width:auto; }

.nav-links { display:flex; gap:24px; align-items:center; }
.nav-links a {
  font-weight:500; font-size:0.95rem;
  color:var(--text); transition:var(--transition);
  position:relative;
}
.nav-links a:hover { color:var(--gold); }
.nav-links a.btn { color:var(--primary); }

.mobile-menu-btn {
  display:none; font-size:1.5rem;
  color:var(--primary); cursor:pointer;
  background:none; border:none; padding:8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height:85vh; display:flex; align-items:center;
  position:relative; overflow:hidden; margin-top:90px;
}
.hero-bg {
  position:absolute; inset:0; z-index:-2;
  background:url('../images/hero-bg.webp') center/cover no-repeat;
}
.hero-overlay {
  position:absolute; inset:0; z-index:-1;
  background:linear-gradient(135deg,rgba(10,25,47,0.92) 0%,rgba(10,25,47,0.6) 70%,rgba(10,25,47,0.3) 100%);
}
.hero-content { color:var(--white); max-width:680px; padding:40px 0; }
.hero-content h1 {
  font-size:3.5rem; font-weight:800; line-height:1.1;
  margin-bottom:16px;
}
.hero-content h1 span { color:var(--gold); }
.hero-content p {
  font-size:1.15rem; margin-bottom:28px;
  opacity:0.92; line-height:1.8;
}
.hero-buttons { display:flex; gap:12px; flex-wrap:wrap; }

/* Hero Small (inner pages) */
.hero-small {
  min-height:35vh; display:flex; align-items:center;
  position:relative; overflow:hidden; margin-top:90px;
}
.hero-small .hero-content { text-align:center; max-width:800px; margin:0 auto; }
.hero-small .hero-content h1 { font-size:2.8rem; }
.hero-small .hero-content p { font-size:1.1rem; }

/* ============================================
   FEATURES / WHY US
   ============================================ */
.features-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px; margin-top:40px;
}
.feature-card {
  text-align:center; padding:36px 28px;
  background:var(--white); border-radius:var(--radius);
  box-shadow:var(--shadow-sm); transition:var(--transition);
  border:1px solid rgba(0,0,0,0.04);
}
.feature-card:hover {
  transform:translateY(-6px); box-shadow:var(--shadow-md);
}
.feature-icon { font-size:2.5rem; color:var(--gold); margin-bottom:16px; }
.feature-card h3 { font-size:1.25rem; color:var(--primary); margin-bottom:10px; }
.feature-card p { color:var(--text-light); font-size:0.95rem; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
}
.service-card {
  background:var(--white); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.service-img-wrap { overflow:hidden; }
.service-img-wrap img {
  width:100%; height:220px; object-fit:cover;
  transition:transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform:scale(1.06); }
.service-content { padding:24px; }
.service-content h3 { font-size:1.2rem; color:var(--primary); margin-bottom:8px; }
.service-content p { color:var(--text-light); font-size:0.92rem; margin-bottom:12px; }
.service-meta {
  display:flex; justify-content:space-between;
  align-items:center; margin-bottom:16px;
}
.service-price { font-weight:700; color:var(--gold); font-size:1.1rem; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:24px; margin-top:40px;
}
.pricing-card {
  background:var(--white); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm); overflow:hidden;
  display:flex; flex-direction:column; position:relative;
  transition:var(--transition); border:1px solid rgba(0,0,0,0.04);
}
.pricing-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.pricing-featured {
  border:2px solid var(--gold); transform:scale(1.02);
}
.pricing-featured:hover { transform:scale(1.02) translateY(-6px); }
.pricing-badge {
  position:absolute; top:12px; right:12px;
  background:var(--gold); color:var(--primary);
  padding:5px 14px; border-radius:50px;
  font-size:0.75rem; font-weight:700; text-transform:uppercase;
  letter-spacing:0.5px; z-index:2;
}
.pricing-card-header {
  padding:30px 24px 20px; text-align:center;
  border-bottom:1px solid rgba(0,0,0,0.05);
}
.pricing-card-header h3 { font-size:1.35rem; color:var(--primary); margin-bottom:12px; }
.pricing-amount { margin-bottom:4px; }
.pricing-price { font-size:2.8rem; font-weight:700; color:var(--primary); line-height:1; }
.pricing-suffix { font-size:0.95rem; color:var(--text-light); }
.pricing-unit { font-size:0.9rem; color:var(--text-light); }
.pricing-card-body { padding:20px 24px; flex:1; }
.pricing-features { list-style:none; }
.pricing-features li {
  display:flex; align-items:center; gap:10px;
  padding:7px 0; font-size:0.92rem; color:var(--text);
}
.pricing-features li i { color:var(--gold); flex-shrink:0; }
.pricing-card-footer { padding:0 24px 24px; text-align:center; }
.pricing-btn { width:100%; justify-content:center; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}
.review-card {
  background:var(--bg); padding:28px;
  border-radius:var(--radius); box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.review-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.review-stars { color:#FFD700; margin-bottom:12px; font-size:1.05rem; }
.review-text { font-style:italic; margin-bottom:16px; color:var(--text); font-size:0.95rem; }
.review-author { font-weight:600; color:var(--primary); font-size:0.9rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-container { max-width:800px; margin:0 auto; }
.faq-item {
  background:var(--white); border-radius:var(--radius);
  margin-bottom:12px; box-shadow:var(--shadow-sm);
  overflow:hidden; border:1px solid rgba(0,0,0,0.04);
}
.faq-question {
  padding:18px 22px; display:flex;
  justify-content:space-between; align-items:center;
  cursor:pointer; font-weight:600; color:var(--primary);
  transition:var(--transition); font-size:1rem;
}
.faq-question:hover { color:var(--gold); }
.faq-question i { transition:transform 0.3s; color:var(--gold); }
.faq-question.active i { transform:rotate(45deg); }
.faq-answer {
  padding:0 22px; max-height:0; overflow:hidden;
  transition:max-height 0.3s,padding 0.3s;
  color:var(--text-light); font-size:0.95rem;
}
.faq-item.active .faq-answer {
  padding:0 22px 18px; max-height:300px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding:80px 0; background:var(--primary);
  text-align:center; position:relative; color:var(--white);
}
.cta::before {
  content:''; position:absolute; inset:0;
  background:url('../images/cta-bg.jpg') center/cover no-repeat;
  opacity:0.08; z-index:0;
}
.cta-content { position:relative; z-index:1; }
.cta h2 { font-size:2.2rem; margin-bottom:12px; }
.cta p { font-size:1.1rem; margin-bottom:28px; opacity:0.9; }
.cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background:var(--bg-dark); color:var(--white);
  padding:60px 0 0;
}
.footer-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:36px; margin-bottom:32px;
}
.footer-col h3 {
  color:var(--gold); margin-bottom:18px;
  font-size:1.2rem;
}
.footer-col p, .footer-col li { color:rgba(255,255,255,0.65); font-size:0.92rem; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a {
  color:rgba(255,255,255,0.65); transition:var(--transition);
}
.footer-col ul li a:hover { color:var(--gold); padding-left:4px; }
.contact-info li {
  display:flex; align-items:flex-start; gap:10px; margin-bottom:12px;
}
.contact-info i { color:var(--gold); margin-top:3px; flex-shrink:0; }
.social-links { display:flex; gap:12px; margin-top:16px; }
.social-links a {
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px;
  background:rgba(255,255,255,0.08); color:var(--white);
  border-radius:50%; transition:var(--transition); font-size:1.1rem;
}
.social-links a:hover { background:var(--gold); color:var(--primary); transform:translateY(-3px); }
.footer-bottom {
  text-align:center; padding:18px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  color:rgba(255,255,255,0.5); font-size:0.85rem;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
  position:fixed; bottom:24px; right:24px;
  background:var(--whatsapp); color:var(--white);
  display:flex; align-items:center; gap:8px;
  padding:10px 18px; border-radius:50px;
  font-size:1rem; font-weight:600; text-decoration:none;
  box-shadow:0 6px 20px rgba(37,211,102,0.35);
  z-index:999; transition:var(--transition);
  animation:whatsappBounce 2.5s infinite;
}
.floating-whatsapp:hover {
  background:#1ebe57; transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(37,211,102,0.45);
  animation:none;
}
.floating-whatsapp i { font-size:1.4rem; }
@keyframes whatsappBounce {
  0%,20%,50%,80%,100% { transform:translateY(0); }
  40% { transform:translateY(-8px); }
  60% { transform:translateY(-4px); }
}

/* ============================================
   FLOATING CALL BUTTON (Mobile)
   ============================================ */
.floating-call {
  display:none; position:fixed; bottom:24px; left:24px;
  background:var(--primary); color:var(--white);
  width:52px; height:52px; border-radius:50%;
  align-items:center; justify-content:center;
  font-size:1.4rem; box-shadow:0 6px 20px rgba(10,25,47,0.35);
  z-index:999; transition:var(--transition);
  animation:whatsappBounce 2.5s infinite;
  animation-delay:0.5s;
}
.floating-call:hover { transform:translateY(-3px); }

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
  background:var(--primary); color:var(--white);
  padding:120px 0 50px; text-align:center;
  margin-top:90px;
}
.page-header h1 { font-size:2.5rem; margin-bottom:8px; }
.page-header p { opacity:0.85; font-size:1.05rem; }
.breadcrumb {
  display:flex; justify-content:center; gap:8px;
  font-size:0.9rem; margin-top:12px; flex-wrap:wrap;
}
.breadcrumb a { color:var(--gold); }
.breadcrumb span { color:rgba(255,255,255,0.6); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px; align-items:center;
}
.about-image img { border-radius:var(--radius-lg); width:100%; }
.about-content h2 { font-size:2rem; color:var(--primary); margin-bottom:16px; }
.about-content p { color:var(--text-light); margin-bottom:16px; font-size:1rem; line-height:1.8; }
.about-stats {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px; margin-top:30px;
}
.stat-item {
  text-align:center; padding:20px;
  background:var(--bg); border-radius:var(--radius);
}
.stat-item .stat-number {
  font-size:2rem; font-weight:700; color:var(--gold);
}
.stat-item .stat-label { font-size:0.85rem; color:var(--text-light); margin-top:4px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.contact-info-card {
  background:var(--white); padding:36px;
  border-radius:var(--radius-lg); box-shadow:var(--shadow-sm);
}
.contact-info-card h3 { color:var(--primary); margin-bottom:20px; font-size:1.3rem; }
.contact-info-card .info-item {
  display:flex; gap:14px; margin-bottom:20px;
}
.contact-info-card .info-item i {
  font-size:1.3rem; color:var(--gold); min-width:28px; margin-top:3px;
}
.contact-info-card .info-item h4 { font-size:1rem; color:var(--primary); margin-bottom:4px; }
.contact-info-card .info-item p { font-size:0.92rem; color:var(--text-light); }

.contact-form-card {
  background:var(--white); padding:36px;
  border-radius:var(--radius-lg); box-shadow:var(--shadow-sm);
}
.contact-form-card h3 { color:var(--primary); margin-bottom:20px; font-size:1.3rem; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-weight:500; margin-bottom:6px; font-size:0.92rem; color:var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; padding:12px 16px; border:1px solid #ddd;
  border-radius:8px; font-size:0.95rem;
  font-family:'Inter',sans-serif; transition:var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(212,175,55,0.12); }
.form-group textarea { min-height:120px; resize:vertical; }

/* Map */
.map-container {
  margin-top:40px; border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-sm);
}
.map-container iframe { width:100%; height:400px; border:0; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:16px;
}
.gallery-item {
  border-radius:var(--radius); overflow:hidden;
  position:relative; cursor:pointer;
  aspect-ratio:4/3;
}
.gallery-item img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.5s;
}
.gallery-item:hover img { transform:scale(1.08); }
.gallery-overlay {
  position:absolute; inset:0;
  background:rgba(10,25,47,0.6);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:var(--transition); color:var(--white);
  font-weight:500;
}
.gallery-item:hover .gallery-overlay { opacity:1; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:28px;
}
.blog-card {
  background:var(--white); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.blog-card img {
  width:100%; height:200px; object-fit:cover;
}
.blog-card-body { padding:24px; }
.blog-card-body .blog-date {
  font-size:0.82rem; color:var(--gold); font-weight:600;
  margin-bottom:8px;
}
.blog-card-body h3 { font-size:1.15rem; color:var(--primary); margin-bottom:8px; }
.blog-card-body h3 a { color:inherit; }
.blog-card-body h3 a:hover { color:var(--gold); }
.blog-card-body p { font-size:0.92rem; color:var(--text-light); margin-bottom:14px; }
.blog-card-body .read-more {
  color:var(--gold); font-weight:600; font-size:0.9rem;
}
.blog-card-body .read-more:hover { color:var(--gold-dark); }

/* Blog Post Page */
.blog-post-content {
  max-width:800px; margin:0 auto;
  background:var(--white); padding:40px;
  border-radius:var(--radius-lg); box-shadow:var(--shadow-sm);
}
.blog-post-content h2 {
  color:var(--primary); margin:30px 0 12px; font-size:1.5rem;
}
.blog-post-content h3 {
  color:var(--primary); margin:24px 0 10px; font-size:1.2rem;
}
.blog-post-content p {
  margin-bottom:16px; color:var(--text); font-size:1rem; line-height:1.8;
}
.blog-post-content ul, .blog-post-content ol {
  margin-bottom:16px; padding-left:24px;
}
.blog-post-content li {
  margin-bottom:8px; color:var(--text); font-size:0.95rem;
}
.blog-post-content blockquote {
  border-left:4px solid var(--gold); padding:16px 20px;
  background:var(--bg); margin:20px 0; border-radius:0 var(--radius) var(--radius) 0;
}
.blog-post-meta {
  display:flex; gap:16px; margin-bottom:24px;
  flex-wrap:wrap; color:var(--text-light); font-size:0.9rem;
}
.blog-post-meta i { color:var(--gold); margin-right:4px; }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-grid {
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
}
.service-main { background:var(--white); padding:36px; border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); }
.service-main h2 { color:var(--primary); margin:30px 0 12px; font-size:1.4rem; }
.service-main h2:first-child { margin-top:0; }
.service-main h3 { color:var(--primary); margin:20px 0 8px; font-size:1.15rem; }
.service-main p { margin-bottom:14px; color:var(--text-light); line-height:1.8; font-size:0.95rem; }
.service-main ul { margin-bottom:14px; padding-left:20px; }
.service-main ul li { margin-bottom:6px; color:var(--text-light); font-size:0.95rem; list-style:disc; }
.service-sidebar { position:sticky; top:90px; align-self:start; }
.service-sidebar-card {
  background:var(--white); padding:24px;
  border-radius:var(--radius); box-shadow:var(--shadow-sm);
  margin-bottom:20px;
}
.service-sidebar-card h3 { color:var(--primary); margin-bottom:14px; font-size:1.1rem; }
.service-sidebar-card ul li { margin-bottom:10px; }
.service-sidebar-card ul li a {
  color:var(--text-light); transition:var(--transition);
  display:flex; align-items:center; gap:8px;
}
.service-sidebar-card ul li a:hover { color:var(--gold); padding-left:4px; }
.service-sidebar-card ul li a i { color:var(--gold); width:16px; }
.service-sidebar-card .price-highlight {
  font-size:2rem; font-weight:700; color:var(--gold); text-align:center;
}
.service-sidebar-card .price-label { text-align:center; color:var(--text-light); font-size:0.9rem; }

.process-steps {
  display:grid; gap:16px; margin:20px 0;
}
.process-step {
  display:flex; gap:16px; align-items:flex-start;
  padding:16px; background:var(--bg); border-radius:var(--radius);
}
.process-step .step-num {
  width:36px; height:36px; border-radius:50%;
  background:var(--gold); color:var(--primary);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; flex-shrink:0;
}
.process-step h4 { font-size:1rem; color:var(--primary); margin-bottom:4px; }
.process-step p { font-size:0.9rem; color:var(--text-light); margin:0; }

/* ============================================
   PRICE LIST TABLE
   ============================================ */
.price-table-wrap {
  overflow-x:auto; margin:30px 0;
}
.price-table {
  width:100%; border-collapse:collapse;
  background:var(--white); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-sm);
}
.price-table thead { background:var(--primary); color:var(--white); }
.price-table th { padding:14px 20px; text-align:left; font-size:0.95rem; }
.price-table td { padding:12px 20px; border-bottom:1px solid rgba(0,0,0,0.05); font-size:0.92rem; }
.price-table tbody tr:hover { background:var(--bg); }
.price-table .price-amount { font-weight:700; color:var(--gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to { opacity:1; transform:translateY(0); }
}
.fade-up { opacity:0; transform:translateY(24px); transition:opacity 0.6s,transform 0.6s; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media(max-width:992px) {
  .hero-content h1 { font-size:2.8rem; }
  .hero-small .hero-content h1 { font-size:2.2rem; }
  .about-grid { grid-template-columns:1fr; gap:30px; }
  .contact-grid { grid-template-columns:1fr; }
  .service-detail-grid { grid-template-columns:1fr; }
  .service-sidebar { position:static; }
  .section-title { font-size:1.8rem; }
  .page-header h1 { font-size:2rem; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media(max-width:768px) {
  .nav-links {
    position:fixed; top:90px; left:-100%;
    width:100%; height:calc(100vh - 90px);
    background:rgba(255,255,255,0.98);
    flex-direction:column; justify-content:flex-start;
    padding:40px 24px; gap:16px;
    transition:left 0.3s; z-index:999;
  }
  .nav-links.active { left:0; }
  .nav-links a { font-size:1.1rem; padding:8px 0; display:block; }
  .mobile-menu-btn { display:block; }

  .hero { min-height:70vh; }
  .hero-content h1 { font-size:2.2rem; }
  .hero-content p { font-size:1rem; }
  .hero-buttons { flex-direction:column; }
  .hero-buttons .btn { width:100%; justify-content:center; }
  .hero-small { min-height:30vh; }
  .hero-small .hero-content h1 { font-size:1.8rem; }

  .section { padding:50px 0; }
  .section-title { font-size:1.5rem; }
  .section-subtitle { font-size:0.95rem; }
  .features-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .pricing-featured { transform:none; }
  .pricing-featured:hover { transform:translateY(-6px); }
  .pricing-price { font-size:2.2rem; }
  .reviews-grid { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }

  .page-header { padding:100px 0 36px; }
  .page-header h1 { font-size:1.6rem; }

  .about-stats { grid-template-columns:repeat(3,1fr); gap:12px; }
  .stat-item { padding:14px; }
  .stat-item .stat-number { font-size:1.5rem; }

  .contact-info-card, .contact-form-card { padding:24px; }
  .service-main { padding:24px; }
  .blog-post-content { padding:24px; }

  .cta h2 { font-size:1.6rem; }
  .cta-buttons { flex-direction:column; align-items:center; }

  .footer-grid { grid-template-columns:1fr; gap:28px; }

  .floating-call { display:flex; }
  .floating-whatsapp { padding:8px 14px; font-size:0.9rem; }
  .floating-whatsapp span { display:none; }
  .floating-whatsapp i { font-size:1.6rem; }
}

@media(max-width:480px) {
  .hero-content h1 { font-size:1.8rem; }
  .hero-small .hero-content h1 { font-size:1.5rem; }
  .section-title { font-size:1.3rem; }
  .gallery-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .about-stats { grid-template-columns:1fr 1fr; }
}
