/* =============================================
   VEGA SPA - Main Stylesheet
   ============================================= */

/* CSS Variables */
:root {
  --primary-color: #5D4037; /* Luxury Brown */
  --primary-dark: #3E2723;  /* Dark Chocolate */
  --primary-light: #8D6E63; /* Light Brown */
  --secondary-color: #D4AF37; /* Royal Gold */
  --secondary-light: #F3E5AB; /* Champagne Gold */
  --text-dark: #2C1810;     /* Deep Brown-Black for softer contrast */
  --text-light: #5D4037;    /* Muted Brown */
  --text-muted: #8D6E63;
  --white: #ffffff;
  --black: #000000;
  --bg-light: #F9F7F2;      /* Warm Cream */
  --bg-cream: #FAF3E0;      /* Richer Cream */
  --border-color: #E6DCCD;
  --shadow-sm: 0 4px 15px rgba(93, 64, 55, 0.08); /* Warm shadow */
  --shadow-md: 0 8px 30px rgba(93, 64, 55, 0.12);
  --shadow-lg: 0 15px 50px rgba(93, 64, 55, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother bezier */
  --font-heading: "Playfair Display", serif;
  --font-body: "Roboto", sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Luxury Grain Texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03; /* Very subtle */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-block {
  width: 100%;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85); /* Semi-transparent */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  backdrop-filter: blur(10px); /* Glassmorphism */
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header-top {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-info a:hover {
  color: var(--secondary-light);
}

.working-hours {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
}

.social-links a:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Navbar */
.navbar {
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 4px;
}

.logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--secondary-color);
  text-transform: lowercase;
}

.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 28px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: 110px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.2s ease-in-out,
    visibility 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 110px);
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-slide.active {
  animation: kenBurns 20s ease-out infinite alternate;
}

.hero-slide:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=1920&q=80"); /* Warm Luxury Interior */
}

.hero-slide:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1591343395082-9b1bf8f220d2?w=1920&q=80"); /* Massage with Flowers */
}

.hero-slide:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?w=1920&q=80"); /* Spa Products */
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(93, 64, 55, 0.75) 0%, 
    rgba(30, 20, 10, 0.4) 100%
  );
  backdrop-filter: blur(3px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 110px);
  padding: 80px 40px; /* Added side padding */
  max-width: 800px; /* Wider content area */
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 64px; /* Larger title */
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Text shadow for readability */
}

.hero-content h1 span {
  color: var(--secondary-color);
  background: -webkit-linear-gradient(#F3E5AB, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Gradient Text */
}

.hero-content p {
  font-size: 20px;
  color: var(--off-white);
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots .dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  background: var(--bg-cream);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-color);
  color: var(--white);
  padding: 25px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge .years {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.about-badge .text {
  font-size: 13px;
  opacity: 0.9;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.about-text > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature {
  display: flex;
  gap: 15px;
}

.feature i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 12px;
  font-size: 20px;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.feature p {
  font-size: 13px;
  color: var(--text-light);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 95, 74, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-content p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}

/* =============================================
   WHY US SECTION
   ============================================= */
.why-us {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-text .section-tag {
  color: var(--secondary-color);
}

.why-us-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 20px;
}

.why-us-text > p {
  opacity: 0.9;
  margin-bottom: 40px;
}

.stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.stat-text {
  font-size: 14px;
  opacity: 0.9;
}

.why-us-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* =============================================
   BLOG SECTION
   ============================================= */
.blog {
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-meta i {
  margin-right: 5px;
}

.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content h3 a {
  color: var(--text-dark);
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-content > p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  gap: 10px;
}

.blog-more {
  text-align: center;
  margin-top: 40px;
}

.blog-more .btn-outline {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.blog-more .btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
  background: var(--bg-cream);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-card > p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-tag {
  margin-bottom: 10px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 14px;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  color: var(--white);
  transition: var(--transition);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-btn.zalo {
  background: #0068ff;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--white);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 12px;
}

.footer-links ul a,
.footer-services ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links ul a:hover,
.footer-services ul a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact ul li i {
  color: var(--secondary-color);
  margin-top: 3px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* =============================================
   FIXED BUTTONS
   ============================================= */
.fixed-buttons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fixed-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.fixed-btn:hover {
  transform: scale(1.1);
}

.fixed-btn.phone {
  background: var(--primary-color);
  animation: phone-ring 1.5s infinite;
}

.fixed-btn.zalo {
  background: #0068ff;
  font-size: 12px;
  font-weight: 700;
}

.fixed-btn.messenger {
  background: linear-gradient(135deg, #00b2ff, #006aff);
}

@keyframes phone-ring {
  0%,
  100% {
    transform: rotate(0);
  }
  10%,
  30% {
    transform: rotate(-10deg);
  }
  20%,
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0);
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Tablet */
@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 30px;
  }

  /* Header */
  .header-top {
    display: none;
  }

  .hero {
    margin-top: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu a {
    display: block;
    padding: 15px 0;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 38px;
  }

  /* About */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-badge {
    right: 20px;
    bottom: -20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Us */
  .why-us-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-image {
    order: -1;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats {
    flex-direction: column;
    gap: 25px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  /* Fixed buttons */
  .fixed-buttons {
    right: 15px;
    bottom: 80px;
  }

  .fixed-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .logo-text {
    font-size: 26px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .about-badge {
    padding: 20px;
  }

  .about-badge .years {
    font-size: 32px;
  }

  .service-card,
  .blog-card,
  .testimonial-card {
    border-radius: 15px;
  }
}

/* =============================================
   NEW SECTIONS: PRICE LIST & STICKY BAR
   ============================================= */

/* Visual Price Table */
.price-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-column {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.price-column:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.price-column.popular {
  transform: scale(1.05);
  border: 2px solid var(--secondary-color);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.price-column.popular .tag-popular {
  background: var(--secondary-color);
  color: var(--white);
  text-align: center;
  padding: 5px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}

.price-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.price-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.price-body {
  padding: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed var(--border-color);
}

.price-item:last-child {
  border-bottom: none;
}

.p-info {
  display: flex;
  flex-direction: column;
}

.p-name {
  font-weight: 500;
  color: var(--text-dark);
}

.p-time,
.p-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.p-cost {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 16px;
}

.price-footer {
  padding: 20px;
  text-align: center;
  background: var(--bg-light);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .price-container {
    grid-template-columns: 1fr;
  }
  .price-column.popular {
    transform: none;
  }
}

/* Service Detail List */
.service-list-detail {
  list-style: none;
  margin-top: 15px;
  padding: 0;
}

.service-list-detail li {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.service-list-detail li i {
  color: var(--secondary-color);
  margin-right: 8px;
}

/* Sticky Booking Bar (Mobile) */
.sticky-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none; /* Desktop hidden */
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 999;
}

.sticky-info {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 14px;
}

.sticky-btn {
  padding: 8px 20px;
  font-size: 14px;
}

/* Show on Mobile Only */
@media (max-width: 768px) {
  .sticky-booking-bar {
    display: flex;
  }
  /* Adjust footer or back-to-top to not be covered */
  .back-to-top {
    bottom: 70px;
  }
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
