/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #c8963e;
  --primary-dark: #a87a2e;
  --primary-light: #e8c877;
  --secondary: #1a1a2e;
  --white: #ffffff;
  --light: #faf9f7;
  --light-2: #f3f1ed;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --dark: #212529;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.3; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--white); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader {
  width: 60px; height: 60px;
  border: 4px solid var(--gray-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
  padding: 15px 0; transition: var(--transition);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
}
.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700;
  color: var(--secondary) !important;
}
.navbar-brand span { color: var(--primary); }
.navbar-brand i { color: var(--primary); margin-right: 6px; font-size: 1.3rem; }
.nav-link {
  font-family: var(--font-body);
  font-weight: 500; font-size: 0.95rem;
  color: var(--secondary) !important;
  padding: 8px 18px !important;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 18px;
  width: 0; height: 2px; background: var(--primary);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 36px); }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: none !important;
  width: 28px; height: 2px; background: var(--secondary);
  position: relative; display: inline-block;
  transition: var(--transition);
}
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: ''; position: absolute; left: 0;
  width: 28px; height: 2px; background: var(--secondary);
  transition: var(--transition);
}
.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }
.nav-btn {
  background: var(--primary); color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--primary-dark) !important; transform: translateY(-2px); }

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(250,249,247,0.92), rgba(243,241,237,0.88)),
              url('https://picsum.photos/seed/hariom-hero/1920/1080.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,150,62,0.12), transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,62,0.1); border: 1px solid rgba(200,150,62,0.3);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3.8rem; font-weight: 800; color: var(--secondary);
  margin-bottom: 20px; line-height: 1.15;
}
.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--gray);
  margin-bottom: 35px; max-width: 520px;
}
.hero-img-wrapper {
  position: relative; padding: 20px;
}
.hero-img-wrapper img {
  border-radius: 200px 200px 30px 30px;
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 480px; height: 550px; object-fit: cover;
}
.hero-floating {
  position: absolute; background: var(--white);
  padding: 16px 24px; border-radius: 16px;
  box-shadow: var(--shadow); animation: float 3s ease-in-out infinite;
}
.hero-floating-1 { bottom: 80px; left: -30px; animation-delay: 0.5s; }
.hero-floating-2 { top: 60px; right: -20px; animation-delay: 1s; }
.hero-floating h4 { font-size: 1.4rem; color: var(--primary); margin-bottom: 2px; }
.hero-floating p { font-size: 0.8rem; color: var(--gray); margin: 0; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); border: none; padding: 14px 36px;
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(200,150,62,0.35);
  color: var(--white);
}
.btn-outline-custom {
  background: transparent; color: var(--secondary);
  border: 2px solid var(--secondary); padding: 12px 34px;
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); cursor: pointer;
  font-family: var(--font-body);
}
.btn-outline-custom:hover {
  background: var(--secondary); color: var(--white);
  transform: translateY(-3px);
}

/* ===== SECTION STYLES ===== */
.section-padding { padding: 100px 0; }
.section-bg { background: var(--light); }
.section-bg-2 { background: var(--light-2); }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-label i { font-size: 0.7rem; }
.section-title {
  font-size: 2.8rem; font-weight: 700; color: var(--secondary);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray);
  max-width: 600px; margin: 0 auto 50px;
}

/* ===== ABOUT PREVIEW ===== */
.about-img-grid { position: relative; }
.about-img-grid .img-main {
  border-radius: 20px; box-shadow: var(--shadow-lg);
  width: 100%; height: 480px; object-fit: cover;
}
.about-img-grid .img-float {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; border-radius: 16px;
  border: 5px solid var(--white); box-shadow: var(--shadow);
  object-fit: cover;
}
.about-img-grid .experience-badge {
  position: absolute; top: 30px; left: -40px;
  background: var(--primary); color: var(--white);
  padding: 20px 24px; border-radius: 16px;
  text-align: center; box-shadow: var(--shadow);
}
.about-img-grid .experience-badge h3 {
  font-size: 2.2rem; font-weight: 800; margin-bottom: 0;
}
.about-img-grid .experience-badge p {
  font-size: 0.8rem; margin: 0; font-weight: 500;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 20px;
}
.about-feature-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: rgba(200,150,62,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.2rem;
}
.about-feature h5 { font-size: 1.05rem; margin-bottom: 4px; color: var(--secondary); }
.about-feature p { font-size: 0.9rem; color: var(--gray); margin: 0; }

/* ===== SERVICES ===== */
.service-card {
  background: var(--white); border-radius: 20px;
  padding: 40px 30px; text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: var(--transition); border: 1px solid transparent;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,150,62,0.2);
}
.service-card .icon-box {
  width: 80px; height: 80px; margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(200,150,62,0.1), rgba(200,150,62,0.05));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .icon-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); transform: rotateY(180deg);
}
.service-card h4 { font-size: 1.3rem; margin-bottom: 12px; color: var(--secondary); }
.service-card p { font-size: 0.92rem; color: var(--gray); margin-bottom: 20px; }
.service-card .card-link {
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .card-link:hover { gap: 12px; }

/* ===== GALLERY ===== */
.gallery-filter-btn {
  background: transparent; border: 2px solid var(--gray-light);
  padding: 8px 24px; border-radius: 50px;
  font-weight: 500; font-size: 0.9rem; color: var(--gray);
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--primary); border-color: var(--primary);
  color: var(--white);
}
.gallery-item {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  height: 300px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8), transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h5 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.gallery-overlay .gallery-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px; height: 50px; background: var(--primary);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 1.2rem;
  transition: var(--transition);
}
.gallery-item:hover .gallery-icon { transform: translate(-50%, -50%) scale(1); }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--secondary), #16213e);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://picsum.photos/seed/stats-bg/1920/600.jpg') center/cover;
  opacity: 0.1;
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item h2 {
  font-size: 3.2rem; font-weight: 800; color: var(--primary);
  margin-bottom: 4px;
}
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0; }

/* ===== PRICING ===== */
.pricing-card {
  background: var(--white); border-radius: 20px;
  padding: 40px 30px; text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: var(--transition); border: 2px solid transparent;
  height: 100%; position: relative;
}
.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
}
.pricing-card.popular::before {
  content: 'Most Popular'; position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%); background: var(--primary);
  color: var(--white); padding: 4px 20px; border-radius: 0 0 10px 10px;
  font-size: 0.8rem; font-weight: 600;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-8px); }
.pricing-card .plan-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: rgba(200,150,62,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--primary);
}
.pricing-card h4 { font-size: 1.4rem; color: var(--secondary); margin-bottom: 8px; }
.pricing-card .price {
  font-size: 2.8rem; font-weight: 800; color: var(--primary);
  margin-bottom: 4px; font-family: var(--font-heading);
}
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.pricing-card .price-desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; }
.pricing-card ul { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.pricing-card ul li {
  padding: 10px 0; border-bottom: 1px solid var(--gray-light);
  font-size: 0.92rem; color: #555;
  display: flex; align-items: center; gap: 10px;
}
.pricing-card ul li i { color: var(--primary); font-size: 0.85rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white); border-radius: 20px;
  padding: 36px; box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: var(--transition); height: 100%;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote-icon {
  font-size: 2.5rem; color: rgba(200,150,62,0.2);
  position: absolute; top: 20px; right: 24px;
}
.testimonial-card .stars { color: var(--primary); font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-card p { font-size: 0.95rem; color: #555; font-style: italic; margin-bottom: 20px; }
.testimonial-card .client {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-card .client img {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
}
.testimonial-card .client h6 { margin: 0; font-size: 0.95rem; color: var(--secondary); font-family: var(--font-body); font-weight: 600; }
.testimonial-card .client small { color: var(--gray); font-size: 0.8rem; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-section h2 { color: var(--white); font-size: 2.6rem; }
.cta-section p { color: rgba(255,255,255,0.85); }
.btn-white {
  background: var(--white); color: var(--primary);
  padding: 14px 36px; border-radius: 50px;
  font-weight: 600; border: none; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); cursor: pointer;
}
.btn-white:hover {
  background: var(--secondary); color: var(--white);
  transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ===== PROCESS ===== */
.process-step {
  text-align: center; position: relative; padding: 20px;
}
.process-step .step-num {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--white);
  font-size: 1.5rem; font-weight: 700; font-family: var(--font-heading);
  position: relative; z-index: 2;
}
.process-step .step-line {
  position: absolute; top: 55px; left: 55%; width: 90%; height: 2px;
  background: linear-gradient(to right, var(--primary), var(--gray-light));
  z-index: 1;
}
.process-step:last-child .step-line { display: none; }
.process-step h5 { color: var(--secondary); margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--gray); }

/* ===== TEAM ===== */
.team-card { text-align: center; }
.team-card .team-img {
  width: 100%; height: 350px; object-fit: cover;
  border-radius: 20px; margin-bottom: 20px;
  transition: var(--transition);
}
.team-card:hover .team-img { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card h5 { color: var(--secondary); margin-bottom: 4px; }
.team-card p { color: var(--primary); font-size: 0.9rem; font-weight: 500; }

/* ===== PAGE BANNER ===== */
.page-banner {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--light), var(--light-2));
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; top: -60%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,150,62,0.08), transparent 70%);
  border-radius: 50%;
}
.page-banner h1 { font-size: 3rem; font-weight: 800; color: var(--secondary); }
.page-banner .breadcrumb {
  background: none; justify-content: center;
  padding: 0; margin-top: 12px;
}
.page-banner .breadcrumb-item a { color: var(--primary); font-weight: 500; }
.page-banner .breadcrumb-item.active { color: var(--gray); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: var(--gray); }

/* ===== CONTACT ===== */
.contact-info-card {
  background: var(--white); border-radius: 16px;
  padding: 30px; display: flex; align-items: flex-start; gap: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition); height: 100%;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-info-card .icon-box {
  width: 56px; height: 56px; min-width: 56px;
  background: rgba(200,150,62,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.3rem;
}
.contact-info-card h5 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 6px; }
.contact-info-card p { font-size: 0.9rem; color: var(--gray); margin: 0; }
.contact-form {
  background: var(--white); border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow);
}
.contact-form .form-control, .contact-form .form-select {
  border: 2px solid var(--gray-light); border-radius: 12px;
  padding: 14px 18px; font-size: 0.95rem;
  transition: var(--transition); background: var(--light);
  font-family: var(--font-body);
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,150,62,0.15);
  background: var(--white);
}
.contact-form .form-label { font-weight: 500; color: var(--secondary); font-size: 0.9rem; }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ===== FAQ ===== */
.faq-accordion .accordion-item {
  border: 1px solid var(--gray-light); border-radius: 12px !important;
  margin-bottom: 12px; overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: var(--font-body); font-weight: 600;
  color: var(--secondary); font-size: 1rem;
  padding: 18px 24px; background: var(--white);
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(200,150,62,0.05); color: var(--primary);
}
.faq-accordion .accordion-button::after {
  background-image: none; content: '\f078';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 0.8rem; color: var(--primary);
}
.faq-accordion .accordion-body {
  padding: 0 24px 18px; color: var(--gray); font-size: 0.93rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary); color: rgba(255,255,255,0.7);
  padding-top: 80px;
}
.footer h5 {
  color: var(--white); font-size: 1.2rem;
  margin-bottom: 24px; position: relative;
  padding-bottom: 12px;
}
.footer h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px; background: var(--primary);
  border-radius: 2px;
}
.footer p { font-size: 0.9rem; line-height: 1.8; }
.footer-brand {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; color: var(--white); display: inline-block;
  margin-bottom: 16px;
}
.footer-brand span { color: var(--primary); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-social {
  display: flex; gap: 12px; margin-top: 20px;
}
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.95rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; margin-top: 50px;
  text-align: center; font-size: 0.85rem;
}
.footer-bottom a { color: var(--primary); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; z-index: 999;
  opacity: 0; visibility: hidden; transition: var(--transition);
  border: none; box-shadow: 0 4px 15px rgba(200,150,62,0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--primary-dark); }

/* ===== GALLERY PAGE GRID ===== */
.gallery-page-item {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-page-item img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-page-item:hover img { transform: scale(1.08); }
.gallery-page-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85), transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: var(--transition);
}
.gallery-page-item:hover .gallery-page-overlay { opacity: 1; }
.gallery-page-overlay h5 { color: var(--white); margin-bottom: 4px; }
.gallery-page-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 30px;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; z-index: 998;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition); animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ===== LIGHTBOX ===== */
.lightbox-modal .modal-content {
  background: transparent; border: none;
}
.lightbox-modal .modal-body { padding: 0; }
.lightbox-modal .btn-close {
  position: absolute; top: -40px; right: 0;
  filter: invert(1); opacity: 1;
}
.lightbox-modal img { border-radius: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title { font-size: 2.8rem; }
  .hero-img-wrapper { margin-top: 40px; text-align: center; }
  .hero-img-wrapper img { max-width: 380px; height: 450px; }
  .hero-floating-1 { left: 0; }
  .hero-floating-2 { right: 0; }
  .section-title { font-size: 2.2rem; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-8px); }
  .process-step .step-line { display: none; }
  .about-img-grid .experience-badge { left: 10px; }
  .about-img-grid .img-float { right: 10px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-img-wrapper img { max-width: 300px; height: 380px; }
  .hero-floating { display: none; }
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 1.9rem; }
  .page-banner { padding: 130px 0 60px; }
  .page-banner h1 { font-size: 2.2rem; }
  .stat-item h2 { font-size: 2.4rem; }
  .cta-section h2 { font-size: 1.9rem; }
  .about-img-grid .img-float { width: 140px; height: 140px; }
  .about-img-grid .experience-badge { padding: 14px 18px; }
  .about-img-grid .experience-badge h3 { font-size: 1.6rem; }
  .gallery-item { height: 220px; }
}
@media (max-width: 575px) {
  .hero-title { font-size: 1.9rem; }
  .btn-primary-custom, .btn-outline-custom { padding: 12px 24px; font-size: 0.9rem; }
  .navbar-brand { font-size: 1.3rem; }
}