/* ===================================
   Premium Bridal & Beauty Studio
   Modern Luxury Design System
   =================================== */

/* CSS Variables - Luxury Color Palette */
:root {
  /* Primary Colors - Matched to Sheejas Brand */
  --primary-rose: #c91752;
  --primary-gold: #d4a574;
  --primary-dark: #2b1810;

  /* Neutral Colors */
  --cream: #fdf8f3;
  --white: #ffffff;
  --light-gray: #f9f4ef;
  --gray: #6b6b6b;
  --dark: #1a1a1a;

  /* Accent Colors */
  --rose-light: #ffe8ee;
  --gold-light: #f8efe5;
  --success: #28a745;

  /* Typography */
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Montserrat", sans-serif;
  --font-accent: "Cormorant Garamond", serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1320px;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-luxury: 0 15px 50px rgba(212, 165, 116, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary-rose);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-rose) 0%, #a8134a 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(201, 23, 82, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 23, 82, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  /*border: 1px solid var(--white);*/
  background: var(--primary-gold);
}

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

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

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

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 12px 0;
  font-size: 13px;
}

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

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--white);
  transition: var(--transition-fast);
}

.top-bar a:hover {
  color: var(--primary-gold);
}

.top-bar i {
  margin-right: 8px;
  color: var(--primary-gold);
}

.btn-appointment {
  background: var(--primary-rose);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-appointment:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  background: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.logo img {
  height: 60px;
  width: auto;
}

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

.logo-main {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-rose);
  letter-spacing: 2px;
}

.logo-sub {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-menu a {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--dark);
  position: relative;
  padding: 5px 0;
}

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

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

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

.btn-book-header {
  background: var(--primary-rose);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-rose);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-bg-1 {
  background-image: url("../images/hero/1.png");
}

.hero-bg-2 {
  background-image: url("../images/hero/2.png");
}

.hero-bg-3 {
  background-image: url("../images/hero/bridal-makeup.png");
}

.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 24px;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero-title .highlight,
.hero-description .highlight {
  color: var(--primary-rose);
  position: relative;
  display: inline-block;
  max-width: 440px;
}

.hero-title .highlight::after,
.hero-description .highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 15px;
  background: var(--primary-gold);
  opacity: 0.3;
  z-index: -1;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 3;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-arrow:hover {
  background: var(--primary-rose);
  border-color: var(--primary-rose);
  transform: translateY(-50%) scale(1.1);
}

.hero-prev {
  left: 30px;
}

.hero-next {
  right: 30px;
}

/* ===================================
   FEATURES BAR
   =================================== */
.features-bar {
  background: linear-gradient(135deg, var(--primary-rose) 0%, #b01449 100%);
  padding: 50px 0;
  margin-top: -2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--white);
  color: var(--primary-rose);
  transform: rotate(360deg);
}

.feature-content h3 {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 13px;
  opacity: 0.9;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
  padding: var(--section-padding) 0;
  background: var(--light-gray);
}

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

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

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

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(44, 24, 16, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.service-number {
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 700;
  color: rgba(200, 168, 130, 0.4);
  line-height: 1;
}

.service-content {
  padding: 30px;
}

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

.service-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  min-height: 48px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-rose);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-link i {
  transition: var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 20, 90, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-zoom {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-rose);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

.gallery-button {
  text-align: center;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary-rose) 0%, #a8134a 100%);
  /*background: linear-gradient(135deg, var(--primary-rose) 0%, #b01449 100%);*/
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-content p {
  font-size: 14px;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--light-gray);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}

.testimonials-wrapper {
  position: relative;
  min-height: 400px;
}

.testimonial-card {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-luxury);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: var(--transition);
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
}

.testimonial-quote {
  font-size: 50px;
  color: var(--primary-gold);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
}

.testimonial-rating i {
  color: #ffb800;
  font-size: 18px;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 20px;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
}

.testimonial-author h4 {
  font-family: var(--font-primary);
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 14px;
  color: var(--gray);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-rose);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.testimonial-arrow:hover {
  background: var(--primary-rose);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray);
  opacity: 0.3;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active,
.dot:hover {
  background: var(--primary-rose);
  opacity: 1;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  padding: var(--section-padding) 0;
  background: linear-gradient(
    180deg,
    var(--rose-light) 0%,
    var(--cream) 50%,
    var(--white) 100%
  );
  position: relative;
  overflow: hidden;
}

.contact-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-rose {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.15;
  filter: blur(2px);
}

.contact-rose-left {
  top: -50px;
  left: -100px;
  transform: rotate(-20deg);
}

.contact-rose-right {
  bottom: -50px;
  right: -100px;
  transform: rotate(160deg) scaleX(-1);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-luxury);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: var(--font-secondary);
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-rose);
  box-shadow: 0 0 0 3px rgba(212, 20, 90, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-family: var(--font-primary);
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--primary-gold);
  letter-spacing: 1px;
}

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

.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

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

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

.footer-social a:hover {
  background: var(--primary-rose);
  border-color: var(--primary-rose);
  transform: translateY(-3px);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-info i {
  color: var(--primary-gold);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.newsletter-form button {
  align-self: flex-start;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

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

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   FLOATING BUTTONS
   =================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128c7e;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .section-title {
    font-size: 40px;
  }

  .hero-title {
    font-size: 56px;
  }

  .nav-menu {
    gap: 25px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  /* Top Bar */
  .top-bar {
    font-size: 12px;
    padding: 10px 0;
  }

  .top-bar-content {
    flex-direction: column;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    flex-direction: row;
    gap: 10px;
  }

  /* Navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-menu {
    position: fixed;

    top: 82px; /* height of navbar */

    left: 0;

    width: 100%;

    background: #fff;

    flex-direction: column;

    align-items: flex-start;

    padding: 25px;

    gap: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    transform: translateY(-20px);

    opacity: 0;

    visibility: hidden;

    transition: 0.35s ease;

    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }
  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;

    width: 100%;

    padding: 12px 0;
  }

  .btn-book-header {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-description .highlight {
    background: none !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    max-width:260px;
  }

  .hero-description .highlight::after {
    background: none;
    content: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .hero-arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
    display: none;
  }

  .hero-prev {
    left: 15px;
  }

  .hero-next {
    right: 15px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  /* Section Headers */
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 12px;
  }

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

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 350px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-slider {
    padding: 0 60px;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  /* Contact */
  .contact-form {
    padding: 35px 25px;
  }

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

  .contact-rose {
    width: 200px;
    height: 200px;
  }

  /* Footer */
  .footer {
    padding: 60px 0 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating Buttons */
  .whatsapp-float,
  .scroll-top {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .scroll-top {
    bottom: 85px;
    left: auto;
    right: 20px;
  }

  .hero-bg-1 {
    background-image: url("../images/hero/1_mobile.png");
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }

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

  .service-image {
    height: 280px;
  }

  .gallery-item {
    height: 300px;
  }

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

  .testimonials-slider {
    padding: 0 50px;
  }
  .hero-bg-1 {
    background-image: url("../images/hero/1_mobile.png");
  }
}

/* High Resolution */
@media (min-width: 1920px) {
  :root {
    --container-width: 1600px;
  }

  .section-title {
    font-size: 56px;
  }

  .hero-title {
    font-size: 64px;
  }
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */

/* Fade In on Scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

/* Service Modal */
.service-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 9999;

  padding: 30px;
}

.service-modal.show {
  opacity: 1;

  visibility: visible;
}

.service-modal-content {
  background: #fff;

  max-width: 900px;

  width: 100%;

  border-radius: 18px;

  overflow: hidden;

  display: grid;

  grid-template-columns: 1fr 1fr;

  animation: popup 0.35s ease;
}

.service-modal img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.service-modal-body {
  padding: 40px;
}

.service-modal-body h2 {
  margin-bottom: 10px;

  font-size: 30px;

  color: #c91752;
}

.service-modal-body p {
  margin-bottom: 25px;

  line-height: 1.8;
}

.service-modal-body ul {
  padding-left: 20px;

  margin-bottom: 30px;
}

.service-modal-body li {
  margin-bottom: 10px;
}

.service-modal-close {
  position: absolute;

  right: 25px;

  top: 20px;

  font-size: 36px;

  background: none;

  border: none;

  cursor: pointer;

  color: #fff;

  z-index: 2;
}

@keyframes popup {
  from {
    transform: scale(0.9);

    opacity: 0;
  }

  to {
    transform: scale(1);

    opacity: 1;
  }
}

@media (max-width: 768px) {
  .service-modal-content {
    grid-template-columns: 1fr;
  }

  .service-modal img {
    height: 300px;
  }

  .services {
    padding: 40px 0 20px 0;
  }

  .services,
  .pricing,
  .gallery {
    padding: 40px 0 20px 0 !important;
  }
}

.services {
  position: relative;
  padding: 100px 0;
}

.servicesSwiper {
  padding: 20px 10px 20px;
}

.services .swiper-slide {
  height: auto;
}

/*.service-card {
  height: 100%;

  border-radius: 18px;

  overflow: hidden;

  background: #fff;

  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.service-image {
  height: 320px;

  overflow: hidden;
}

.service-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.service-card:hover img {
  transform: scale(1.08);
}*/

.services-next,
.services-prev {
  color: var(--primary-rose);
}

.services-pagination .swiper-pagination-bullet {
  width: 12px;

  height: 12px;
  display: none;
}

.services-pagination .swiper-pagination-bullet-active {
  background: var(--primary-rose);
}

/*==================================
  PRICING SECTION
==================================*/

.pricing {
  padding: 100px 0;

  background: #faf7f5;
}

.pricingSwiper {
  padding: 15px 10px 20px;
}

.pricing-card {
  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.35s;

  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.pricing-image {
  position: relative;

  height: 280px;

  overflow: hidden;
}

.pricing-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.pricing-card:hover img {
  transform: scale(1.08);
}

.pricing-badge {
  position: absolute;

  top: 18px;

  left: 18px;

  background: #c91752;

  color: #fff;

  padding: 6px 14px;

  border-radius: 20px;

  font-size: 12px;

  font-weight: 600;
}

.pricing-content {
  padding: 30px;
}

.pricing-content h3 {
  font-size: 26px;

  margin-bottom: 15px;
}

.price {
  color: #c91752;

  font-size: 34px;

  font-weight: 700;

  margin-bottom: 20px;
}

.pricing-content ul {
  margin-bottom: 25px;

  padding-left: 0;

  list-style: none;
}

.pricing-content li {
  margin-bottom: 12px;
}

.pricing-content li i {
  color: #d4a574;

  margin-right: 10px;
}

.pricing-next,
.pricing-prev {
  color: #c91752;
}

.pricing-pagination .swiper-pagination-bullet-active {
  background: #c91752;
  display: none;
}

.pricing-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 9999;

  padding: 30px;
}

.pricing-modal.show {
  opacity: 1;

  visibility: visible;
}

.pricing-modal-content {
  background: #fff;

  border-radius: 25px;

  max-width: 1100px;

  width: 100%;

  overflow: hidden;

  display: grid;

  grid-template-columns: 45% 55%;

  position: relative;

  animation: popup 0.35s ease;
}

.pricing-left {
  height: 875px;
}

.pricing-left img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.pricing-right {
  padding: 50px;
}

.pricing-close {
  position: absolute;

  right: 20px;

  top: 20px;

  border: none;

  background: none;

  font-size: 28px;

  cursor: pointer;
}

.pricing-badge {
  display: inline-block;

  padding: 8px 18px;

  background: #d4145a;

  color: #fff;

  border-radius: 40px;

  margin-bottom: 20px;
}

.pricing-price {
  font-size: 42px;

  font-weight: 700;

  color: #d4145a;

  margin: 20px 0;
}

.pricing-info {
  display: flex;

  gap: 20px;

  margin: 25px 0;
}

.info-box {
  flex: 1;

  background: #faf7f5;

  padding: 20px;

  border-radius: 12px;

  text-align: center;
}

#pricingServices {
  padding-left: 20px;

  margin-top: 20px;

  margin-bottom: 35px;
}

#pricingServices li {
  margin-bottom: 12px;
}

.pricing-actions {
  display: flex;

  gap: 15px;
}

@media (max-width: 991px) {
  .pricing-modal-content {
    grid-template-columns: 1fr;
  }

  .pricing-left {
    height: 320px;
  }

  .pricing-right {
    padding: 30px;
  }
}

.pricing-modal {
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.pricing-modal.show {
  opacity: 1;
  visibility: visible;
}

.pricing-modal-content {
  transform: scale(0.9);

  opacity: 0;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.pricing-modal.show .pricing-modal-content {
  transform: scale(1);

  opacity: 1;
}

#contactResult {
  margin: 20px auto 0 auto;
  max-width: 424px;
  text-align: center;
}

body.menu-open {
  overflow: hidden;
}

.service-modal-image {
  height: 100%;

  overflow: hidden;
}

.service-modal-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.service-modal-badge {
  display: inline-block;

  background: linear-gradient(135deg, #c91752, #d4a574);

  color: #fff;

  padding: 8px 18px;

  border-radius: 40px;

  margin-bottom: 20px;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 1px;
}

.service-modal-price {
  font-size: 34px;

  color: #c91752;

  font-weight: 700;

  margin: 20px 0;
}

.service-info-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin: 30px 0;
}

.info-card {
  background: #faf7f5;

  border-radius: 15px;

  padding: 18px;

  display: flex;

  align-items: center;

  gap: 15px;
}

.info-card i {
  font-size: 24px;

  color: #c91752;
}

.info-card strong {
  display: block;

  margin-bottom: 5px;
}

.service-section {
  margin-top: 30px;
}

.service-section h4 {
  margin-bottom: 15px;

  color: #2b1810;

  font-size: 20px;
}

.service-section h4 i {
  color: #c91752;

  margin-right: 10px;
}

.service-section ul {
  padding-left: 0;

  list-style: none;
}

.service-section li {
  padding: 8px 0;

  border-bottom: 1px solid #eee;
}

.service-section li i {
  color: #28a745;

  margin-right: 10px;
}

.service-actions {
  display: flex;

  gap: 15px;

  margin-top: 35px;
}

@media (max-width: 991px) {
  .service-info-grid {
    grid-template-columns: 1fr;
  }

  .service-actions {
    flex-direction: column;
  }
}

.service-book-btn {
  padding: 12px 15px;
  font-size: 12px;
}
.service-close-btn {
  font-size: 12px;
}

/*==============================
SPECIAL OFFERS
==============================*/

.offers {
  padding: 100px 0;

  background: #fff7fa;
}

.offer-card {
  background: #fff;

  border-radius: 18px;

  padding: 30px;

  display: flex;

  align-items: center;

  gap: 25px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.35s;

  border: 1px solid rgba(212, 165, 116, 0.25);

  height: 100%;
}

.offer-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.offer-card.featured {
  background: linear-gradient(135deg, #c91752, #d4a574);

  color: #fff;
}

.offer-icon {
  width: 85px;

  height: 85px;

  border-radius: 50%;

  background: linear-gradient(135deg, #d4a574, #f5d37a);

  display: flex;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;
}

.offer-icon i {
  font-size: 34px;

  color: #c91752;
}

.offer-content {
  flex: 1;
}

.offer-content h4 {
  margin-bottom: 8px;

  font-size: 22px;
}

.offer-content p {
  margin: 0;

  line-height: 1.6;
}

.offer-price {
  font-size: 38px;

  font-weight: 700;

  color: #c91752;

  white-space: nowrap;
}

.offer-card.featured .offer-price {
  color: #fff;
}

@media (max-width: 768px) {
  .offer-card {
    flex-direction: column;

    text-align: center;
  }

  .offer-price {
    margin-top: 15px;
  }
}

/*==============================
LOCATION
==============================*/

.location-section {
  background: #fff8fb;
}

.location-card {
  background: #fff;

  border-radius: 20px;

  padding: 40px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  height: 100%;
}

.location-item {
  display: flex;

  gap: 20px;

  margin-bottom: 30px;
}

.location-item:last-child {
  margin-bottom: 0;
}

.location-icon {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  background: linear-gradient(135deg, #c91752, #d4a574);

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 24px;

  flex-shrink: 0;
}

.location-item h5 {
  margin-bottom: 8px;

  font-weight: 700;
}

.location-item p {
  margin: 0;

  color: #666;

  line-height: 1.8;
}

.map-wrapper {
  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);

  min-height: 520px;
}

.map-wrapper iframe {
  width: 100%;

  height: 520px;

  border: none;
}

@media (max-width: 991px) {
  .location-card {
    margin-bottom: 30px;
  }

  .map-wrapper {
    min-height: 350px;
  }

  .map-wrapper iframe {
    height: 350px;
  }
}

/* ==========================================
   SERVICE MODAL RESPONSIVE
========================================== */

/* Large Laptop */
@media (max-width: 1200px) {
  .service-modal-content {
    width: 95%;
    max-width: 1000px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .service-modal {
    padding: 20px;

    align-items: center;
  }

  .service-modal-content {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 700px;

    max-height: 90vh;

    overflow: hidden;

    border-radius: 20px;
  }

  .service-modal-image {
    width: 100%;
    height: 280px;
  }

  .service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-modal-body {
    padding: 30px;

    overflow-y: auto;
  }

  .service-info-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .service-actions {
    flex-direction: column;
  }

  .service-actions .btn {
    width: 100%;
  }
}

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

  .service-modal-content {
    width: 100%;

    max-height: 95vh;

    border-radius: 18px;
  }

  .service-modal-image {
    height: 220px;
  }

  .service-modal-body {
    padding: 22px;
  }

  .service-modal-badge {
    font-size: 11px;

    padding: 6px 14px;
  }

  .service-modal-body h2 {
    font-size: 28px;

    line-height: 1.3;

    margin-bottom: 10px;
  }

  .service-modal-price {
    font-size: 30px;

    margin: 15px 0;
  }

  .service-modal-body p {
    font-size: 15px;

    line-height: 1.7;
  }

  .service-section {
    margin-top: 25px;
  }

  .service-section h4 {
    font-size: 18px;
  }

  .service-section li {
    font-size: 15px;

    padding: 10px 0;
  }

  .info-card {
    padding: 15px;
  }

  .info-card i {
    font-size: 22px;
  }

  .service-modal-close {
    width: 42px;
    height: 42px;

    top: 12px;
    right: 12px;

    font-size: 18px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .service-modal {
    padding: 10px;
  }

  .service-modal-content {
    border-radius: 15px;

    max-height: 96vh;
  }

  .service-modal-image {
    height: 190px;
  }

  .service-modal-body {
    padding: 18px;
  }

  .service-modal-body h2 {
    font-size: 24px;
  }

  .service-modal-price {
    font-size: 26px;
  }

  .service-modal-body p {
    font-size: 14px;
  }

  .service-section h4 {
    font-size: 17px;
  }

  .service-section li {
    font-size: 14px;
  }

  .info-card {
    gap: 12px;

    padding: 12px;
  }

  .info-card strong {
    font-size: 15px;
  }

  .info-card span {
    font-size: 13px;
  }
}

/* Extra Small Devices */
@media (max-width: 420px) {
  .service-modal {
    padding: 8px;
  }

  .service-modal-content {
    max-height: 98vh;

    border-radius: 12px;
  }

  .service-modal-image {
    height: 170px;
  }

  .service-modal-body {
    padding: 15px;
  }

  .service-modal-body h2 {
    font-size: 22px;
  }

  .service-modal-price {
    font-size: 22px;
  }

  .service-modal-badge {
    font-size: 10px;

    padding: 5px 12px;
  }

  .service-section {
    margin-top: 20px;
  }

  .service-section h4 {
    font-size: 16px;
  }

  .service-section li {
    font-size: 13px;

    line-height: 1.6;
  }

  .service-actions {
    gap: 10px;
  }

  .service-actions .btn {
    padding: 12px 15px;

    font-size: 14px;
  }
}
/* Sticky Header */

.header {
  transition: 0.35s;
}

.header.header-scrolled {
  background: #fff;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Active Menu */

.navbar .nav-link.active {
  color: #c91752 !important;
}

.navbar .nav-link {
  transition: 0.3s;
}

.navbar .nav-link:hover {
  color: #c91752;
}
