/*
Theme Name: T Beauty
Description: Professional beauty salon theme with sea animation
Version: 1.0
*/

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ==========================================================================
   COLOR VARIABLES
   ========================================================================== */

:root {
  --primary-gold: #d4af37;
  --primary-black: #1a1a1a;
  --primary-white: #ffffff;
  --sea-blue: #87ceeb;
  --sea-light: #b0e0e6;
  --sea-dark: #4682b4;
  --accent-blue: #4a90e2;
  --success-green: #28a745;
  --warning-orange: #ffc107;
  --danger-red: #dc3545;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

.hidden {
  display: none;
}
.visible {
  opacity: 1;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Styles */
.logo-section {
  display: flex;
  align-items: center;
}

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

.logo-image {
  width: 50px;
  height: 50px;
}

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

.logo-main {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 2px;
}

.logo-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-black);
  letter-spacing: 3px;
  margin-top: -5px;
}

/* Navigation Styles */
.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  color: var(--primary-black);
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link i {
  font-size: 0.8rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .nav-link i {
  transform: rotate(45deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 10px 30px var(--shadow);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--primary-black);
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--primary-gold);
}

/* CTA Button */
.cta-button {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button.primary {
  background: var(--primary-gold);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button.primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 30px;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--primary-black);
  transition: all 0.3s ease;
}

.mobile-navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 10px 30px var(--shadow);
}

.mobile-nav-menu {
  padding: 2rem;
}

.mobile-nav-menu li {
  margin-bottom: 1rem;
}

.mobile-nav-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-cta {
  background: var(--primary-gold);
  color: white !important;
  padding: 12px 24px;
  border-radius: 50px;
  text-align: center;
  margin-top: 1rem;
}

/* ==========================================================================
   HERO SECTION WITH SEA ANIMATION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--sea-light) 0%,
    var(--sea-blue) 50%,
    var(--sea-dark) 100%
  );
  overflow: hidden;
  padding-top: 80px;
}

/* Sea Background Animation */
.sea-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200%;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: wave-motion 6s ease-in-out infinite;
}

.wave-1 {
  animation-delay: 0s;
  opacity: 0.7;
}

.wave-2 {
  animation-delay: 1s;
  opacity: 0.5;
  width: 250%;
  height: 150px;
}

.wave-3 {
  animation-delay: 2s;
  opacity: 0.3;
  width: 300%;
  height: 100px;
}

.wave-4 {
  animation-delay: 3s;
  opacity: 0.2;
  width: 350%;
  height: 80px;
}

@keyframes wave-motion {
  0%,
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
  25% {
    transform: translateX(-45%) rotate(1deg);
  }
  50% {
    transform: translateX(-50%) rotate(0deg);
  }
  75% {
    transform: translateX(-55%) rotate(-1deg);
  }
}

/* Hero Content */
.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  min-height: 80vh;
}

.hero-text-content {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title {
  margin-bottom: 2rem;
}

.hero-subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  font-family: "Inter", sans-serif;
}

.hero-main-title {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-accent {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.1;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-button {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-button.primary {
  background: var(--primary-gold);
  color: white;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.hero-button.primary:hover {
  background: #b8941f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hero-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Hero Image */
.hero-image-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  color: var(--primary-gold);
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  left: -10%;
  animation-delay: 1s;
}

.element-3 {
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  z-index: 10;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ==========================================================================
   SERVICES OVERVIEW SECTION
   ========================================================================== */

.services-overview {
  padding: 6rem 0;
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.services-overview .service-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-overview .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 175, 55, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.service-overlay i {
  font-size: 3rem;
  color: white;
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.service-description {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  color: var(--medium-gray);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

.service-link {
  color: var(--primary-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #b8941f;
  transform: translateX(5px);
}

/* ==========================================================================
   ABOUT PREVIEW SECTION
   ========================================================================== */

.about-preview {
  padding: 6rem 0;
  background: white;
}

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

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-black);
}

.about-description {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--light-gray);
  border-radius: 50px;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.about-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--primary-gold);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-button:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

/* ==========================================================================
   CONTACT PREVIEW SECTION
   ========================================================================== */

.contact-preview {
  padding: 6rem 0;
  background: var(--light-gray);
}

.contact-content {
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
}

.contact-preview .contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  background: none;
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-black);
}

.contact-details p,
.contact-details a {
  color: var(--medium-gray);
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--primary-gold);
}

.contact-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-button {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.contact-button.primary {
  background: var(--primary-gold);
  color: white;
}

.contact-button.primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.contact-button.secondary {
  background: white;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.contact-button.secondary:hover {
  background: var(--primary-gold);
  color: white;
  transform: translateY(-2px);
}

/* Google Map Section */
.contact-map {
  margin: 3rem 0;
  text-align: center;
}

.contact-map h3 {
  color: var(--primary-black);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 1.5rem;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  transition: transform 0.3s ease;
}

.map-container:hover iframe {
  transform: scale(1.02);
}

.map-description {
  color: var(--medium-gray);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  font-style: italic;
}

.map-description i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

/* ==========================================================================
   BRAND VIDEO SECTION STYLES
   ========================================================================== */

.brand-video-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.brand-video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.video-content {
  position: relative;
  z-index: 2;
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--primary-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  font-weight: 300;
  letter-spacing: 1px;
}

.video-container {
  margin-bottom: 3rem;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: var(--primary-black);
}

.brand-video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-wrapper:hover .brand-video {
  transform: scale(1.02);
}

.video-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.video-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-control-btn:hover {
  background: var(--primary-gold);
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 2rem 2rem;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.overlay-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.overlay-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.overlay-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.overlay-btn.primary {
  background: var(--primary-gold);
  color: var(--primary-black);
}

.overlay-btn.primary:hover {
  background: #e6c068;
  transform: translateY(-2px);
}

.overlay-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.overlay-btn.secondary:hover {
  background: white;
  color: var(--primary-black);
  transform: translateY(-2px);
}

.video-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-gold);
}

.stat-item i {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  display: block;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .brand-video-section {
    padding: 2rem 0;
  }

  .video-title {
    font-size: 2rem;
  }

  .video-subtitle {
    font-size: 1rem;
  }

  .video-wrapper {
    margin: 0 1rem;
    border-radius: 15px;
  }

  .video-controls {
    top: 15px;
    right: 15px;
  }

  .video-control-btn {
    width: 35px;
    height: 35px;
  }

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

  .overlay-btn {
    text-align: center;
    justify-content: center;
  }

  .video-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0 1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ==========================================================================
   BOOKING PROGRESS BAR STYLES
   ========================================================================== */

.booking-progress {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-progress::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 120px;
  margin: 0 10px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.step-title {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  margin-top: 5px;
}

.progress-step.active .step-number {
  background: var(--primary-gold);
  color: var(--primary-black);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.progress-step.active .step-title {
  color: var(--primary-gold);
  font-weight: 600;
}

.progress-step.completed .step-number {
  background: var(--primary-gold);
  color: transparent; /* Hide the step number when showing checkmark */
  position: relative;
}

.progress-step.completed .step-number::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  color: white; /* Ensure checkmark is white */
}

.progress-step.completed .step-title {
  color: var(--primary-black);
  font-weight: 600;
}

.progress-step .step-title {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  margin-top: 5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .booking-progress {
    max-width: 500px;
  }

  .progress-step {
    width: 100px;
    margin: 0 8px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .step-title {
    font-size: 0.75rem;
  }

  .booking-progress::before {
    left: 10%;
    right: 10%;
    top: 20px;
  }
}

@media (max-width: 480px) {
  .booking-progress {
    max-width: 400px;
  }

  .progress-step {
    width: 80px;
    margin: 0 5px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .step-title {
    font-size: 0.7rem;
  }

  .booking-progress::before {
    left: 8%;
    right: 8%;
    top: 17px;
  }
}

/* ==========================================================================
   BOOKING CONFIRMATION STYLES
   ========================================================================== */

.booking-confirmation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.confirmation-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.confirmation-content i {
  font-size: 4rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.confirmation-content h2 {
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.confirmation-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.confirmation-details {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: left;
}

.confirmation-details h3 {
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.confirmation-details p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   LEGAL MODALS STYLES
   ========================================================================== */

.legal-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.legal-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.legal-modal .modal-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  max-height: 90vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.4s ease;
}

.legal-modal .modal-header {
  background: linear-gradient(135deg, var(--primary-gold), #b8941f);
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2;
}

.legal-modal .modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.legal-modal .modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.legal-modal .modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.legal-modal .modal-body {
  padding: 30px;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
  line-height: 1.7;
}

.legal-modal .modal-body h3 {
  color: var(--primary-black);
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 0.5rem;
}

.legal-modal .modal-body h3:first-child {
  margin-top: 0;
}

.legal-modal .modal-body p {
  color: var(--medium-gray);
  margin-bottom: 1rem;
  text-align: justify;
}

.legal-modal .modal-body ul {
  color: var(--medium-gray);
  margin: 1rem 0 1rem 1.5rem;
}

.legal-modal .modal-body li {
  margin-bottom: 0.5rem;
  position: relative;
}

.legal-modal .modal-body li::marker {
  color: var(--primary-gold);
}

.legal-modal .modal-body strong {
  color: var(--primary-black);
  font-weight: 600;
}

/* Modal Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
  .legal-modal .modal-content {
    margin: 10px;
    max-height: 95vh;
  }

  .legal-modal .modal-header {
    padding: 20px;
  }

  .legal-modal .modal-header h2 {
    font-size: 1.5rem;
  }

  .legal-modal .modal-body {
    padding: 20px;
    max-height: calc(95vh - 80px);
  }

  .legal-modal .modal-body h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .legal-modal .modal-content {
    margin: 5px;
    border-radius: 15px;
  }

  .legal-modal .modal-header {
    padding: 15px;
  }

  .legal-modal .modal-header h2 {
    font-size: 1.3rem;
  }

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

  .legal-modal .modal-close {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.site-footer {
  background: var(--primary-black);
  color: white;
}

.footer-content {
  padding: 4rem 0 2rem;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

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

.footer-description {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.footer-contact-info .contact-item i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  width: 20px;
}

.footer-contact-info .contact-item a,
.footer-contact-info .contact-item span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info .contact-item a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

/* ==========================================================================
   FLOATING ELEMENTS
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-text {
  font-weight: 600;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

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

.back-to-top:hover {
  background: #b8941f;
  transform: translateY(-3px);
}

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

@media (max-width: 1024px) {
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-main-title,
  .hero-accent {
    font-size: 3rem;
  }

  .about-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-navigation,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-navigation.active {
    display: block;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-main-title,
  .hero-accent {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    flex-direction: column;
    align-items: center;
  }

  .contact-map h3 {
    font-size: 1.5rem;
  }

  .map-container iframe {
    height: 300px;
  }

  .map-description {
    font-size: 1rem;
    flex-direction: column;
    gap: 5px;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .whatsapp-text {
    display: none;
  }

  .back-to-top {
    bottom: 90px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .header-container {
    padding: 1rem 15px;
  }

  .hero-main-title,
  .hero-accent {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-title,
  .contact-title {
    font-size: 2rem;
  }

  .about-features {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   WORDPRESS SPECIFIC STYLES
   ========================================================================== */

.wp-block-image {
  margin: 2rem 0;
}

.wp-block-quote {
  border-left: 4px solid var(--primary-gold);
  padding-left: 2rem;
  font-style: italic;
  color: var(--medium-gray);
}

.wp-block-button__link {
  background: var(--primary-gold) !important;
  border-radius: 50px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   PAGE TEMPLATES STYLES
   ========================================================================== */

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, var(--sea-blue), var(--sea-dark));
  color: white;
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-page {
  margin-top: 80px;
}

.contact-content {
  padding: 60px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 20px;
}

.contact-info h2 {
  color: var(--primary-black);
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.contact-preview .contact-item {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 0;
}

.contact-page .contact-item:hover {
  background: white;
  box-shadow: 0 10px 30px var(--shadow-dark);
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.contact-preview .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.footer-contact-info .contact-item {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
  align-items: center;
}

.footer-contact-info .contact-item:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.contact-icon {
  background: var(--primary-gold);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.contact-details {
  flex: 1;
  min-width: 0;
}

.contact-details h3 {
  color: var(--primary-black);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-details p {
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-details a {
  color: var(--primary-gold);
  font-weight: 500;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
  color: #b8941f;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
}

.contact-form h2 {
  color: var(--primary-black);
  margin-bottom: 2rem;
  text-align: center;
}

.form-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-message i {
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-black);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 2px solid transparent;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}

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

.quick-actions {
  background: var(--light-gray);
  padding: 60px 0;
}

.quick-actions h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-black);
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.action-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.action-icon {
  background: var(--primary-gold);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.action-card h3 {
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.action-card p {
  color: var(--medium-gray);
  margin: 0;
}

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

.services-page {
  margin-top: 80px;
}

.services-content {
  padding: 60px 0;
}

.service-category {
  margin-bottom: 80px;
}

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

.category-title {
  color: var(--primary-black);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.category-title i {
  color: var(--primary-gold);
}

.category-description {
  color: var(--medium-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

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

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

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

.service-content {
  padding: 25px;
}

.service-content h3 {
  color: var(--primary-black);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.service-content p {
  color: var(--medium-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.service-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 500;
}

.duration {
  color: var(--medium-gray);
}

.price {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.services-cta {
  background: var(--primary-black);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */

.gallery-page {
  margin-top: 80px;
}

.gallery-filter {
  background: var(--light-gray);
  padding: 30px 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: white;
  color: var(--medium-gray);
  border: 2px solid transparent;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-content {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.gallery-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.overlay-content {
  text-align: center;
  padding: 20px;
}

.overlay-content h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.view-btn {
  background: var(--primary-gold);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-btn:hover {
  background: #b8941f;
  transform: scale(1.1);
}

.gallery-cta {
  background: var(--sea-blue);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.gallery-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.gallery-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
}

.modal-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2001;
}

.modal-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

#modal-prev {
  left: -70px;
}

#modal-next {
  right: -70px;
}

/* ==========================================================================
   RESERVATION PAGE STYLES
   ========================================================================== */

.reservation-page {
  margin-top: 80px;
}

.booking-section {
  padding: 60px 0;
}

.booking-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px var(--shadow);
}

.booking-form {
  position: relative;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.step-title {
  text-align: center;
  color: var(--primary-black);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.services-selection {
  margin-bottom: 2rem;
}

.service-category {
  margin-bottom: 3rem;
}

.service-category h4 {
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-category h4 i {
  color: var(--primary-gold);
}

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

.service-option {
  cursor: pointer;
}

.service-option input[type="radio"] {
  display: none;
}

.service-option .service-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-option:hover .service-card,
.service-option.selected .service-card {
  border-color: var(--primary-gold);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.service-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-info h5 {
  color: var(--primary-black);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.service-info p {
  color: var(--medium-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

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

.service-meta span {
  font-size: 0.85rem;
  font-weight: 500;
}

.datetime-selection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 2rem;
}

.date-selection h4,
.time-selection h4 {
  color: var(--primary-black);
  margin-bottom: 1rem;
}

#booking-date {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}

.time-slot {
  cursor: pointer;
}

.time-slot input[type="radio"] {
  display: none;
}

.time-slot span {
  display: block;
  padding: 10px;
  text-align: center;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.time-slot:hover span,
.time-slot.selected span {
  border-color: var(--primary-gold);
  background: var(--primary-gold);
  color: white;
}

.time-slot.unavailable span {
  background: #f8f9fa;
  color: #ccc;
  cursor: not-allowed;
}

.client-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 2rem;
}

.client-info .form-group:nth-child(4) {
  grid-column: 1 / -1;
}

.booking-summary {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.summary-card h4 {
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

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

.summary-item.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-gold);
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px solid var(--primary-gold);
}

.terms-acceptance {
  margin-top: 20px;
  text-align: center;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.booking-contact {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
}

.booking-contact h3 {
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.booking-contact p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: var(--primary-gold);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

/* Booking Confirmation Modal */
.booking-confirmation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.confirmation-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
}

.confirmation-content i {
  font-size: 4rem;
  color: var(--success-green);
  margin-bottom: 20px;
}

.booking-confirmation.error .confirmation-content i {
  color: #e74c3c;
}

.confirmation-content h2 {
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.booking-confirmation.error .confirmation-content h2 {
  color: #e74c3c;
}

.confirmation-content p strong {
  color: var(--primary-gold);
  font-weight: 600;
}

.confirmation-details {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: left;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.about-page {
  margin-top: 80px;
}

.about-intro {
  padding: 80px 0;
}

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

.about-text h2 {
  color: var(--primary-black);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-highlights {
  margin-top: 3rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2rem;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: white;
  box-shadow: 0 5px 20px var(--shadow);
  transform: translateY(-3px);
}

.highlight-item i {
  background: var(--primary-gold);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-item h4 {
  color: var(--primary-black);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.highlight-item p {
  color: var(--medium-gray);
  margin: 0;
  font-size: 0.95rem;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

.services-philosophy {
  background: var(--light-gray);
  padding: 80px 0;
}

.philosophy-content {
  text-align: center;
}

.philosophy-content h2 {
  color: var(--primary-black);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.philosophy-intro {
  color: var(--medium-gray);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.philosophy-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.philosophy-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.philosophy-icon {
  background: var(--primary-gold);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.philosophy-item h3 {
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.philosophy-item p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin: 0;
}

.team-section {
  padding: 80px 0;
}

.team-section h2 {
  text-align: center;
  color: var(--primary-black);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.team-intro {
  text-align: center;
  color: var(--medium-gray);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.team-grid {
  max-width: 800px;
  margin: 0 auto;
}

.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

.member-image img {
  width: 100%;
  border-radius: 15px;
}

.member-info h3 {
  color: var(--primary-black);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.member-info p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.member-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.member-specialties span {
  background: var(--primary-gold);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.values-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.values-section h2 {
  text-align: center;
  color: var(--primary-black);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.value-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.value-item i {
  background: var(--primary-gold);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.value-item h3 {
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-item p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin: 0;
}

.location-section {
  padding: 80px 0;
}

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

.location-info h2 {
  color: var(--primary-black);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.location-info p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.location-details {
  display: grid;
  gap: 25px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: white;
  box-shadow: 0 5px 20px var(--shadow);
  transform: translateY(-2px);
}

.detail-item i {
  background: var(--primary-gold);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.detail-item h4 {
  color: var(--primary-black);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.detail-item p {
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.6;
}

.location-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

.about-cta {
  background: var(--primary-black);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.about-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR NEW PAGES
   ========================================================================== */

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding: 30px;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 25px;
  }

  .actions-grid {
    grid-template-columns: 1fr;
  }

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

  .category-title {
    font-size: 2rem;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

  .booking-wrapper {
    padding: 20px;
  }

  .booking-progress {
    flex-wrap: wrap;
    gap: 20px;
  }

  .progress-step {
    max-width: 100px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .datetime-selection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .client-info {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

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

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

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .team-member {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .page-header {
    padding: 100px 0 40px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .contact-item {
    flex-direction: row;
    text-align: left;
    padding: 20px;
    gap: 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-details h3 {
    font-size: 1.1rem;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .modal-nav-btn {
    display: none;
  }
}
