/**
* Thankam Events - Premier Catering & Event Management
* Modern, Elegant Design
* Location: Kollam, Kerala
* Established: 2012
*/

/*--------------------------------------------------------------
# CSS Variables - Color Palette
--------------------------------------------------------------*/
:root {
  /* Primary Colors - Rich Gold & Deep Burgundy */
  --primary-gold: #D4AF37;
  --primary-gold-light: #E8C860;
  --primary-gold-dark: #B8960C;
  
  /* Secondary Colors - Elegant Dark Tones */
  --dark-burgundy: #722F37;
  --deep-maroon: #4A1C2B;
  --rich-black: #0D0D0D;
  --charcoal: #1A1A1A;
  --dark-gray: #2D2D2D;
  
  /* Accent Colors */
  --cream: #FFF8E7;
  --soft-white: #FAFAFA;
  --warm-gray: #8B8B8B;
  --light-gold: rgba(212, 175, 55, 0.1);
  
  /* Text Colors */
  --text-light: #FFFFFF;
  --text-muted: #AAAAAA;
  --text-dark: #333333;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, var(--primary-gold) 100%);
  --gradient-dark: linear-gradient(180deg, var(--rich-black) 0%, var(--charcoal) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 5px 30px rgba(212, 175, 55, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 50px;
}

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--rich-black);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition-normal);
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: var(--primary-gold-light);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
}

p {
  color: var(--text-muted);
  font-size: 15px;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

/* Prevent zoom on input focus on iOS */
@media screen and (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--rich-black);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  border: 4px solid var(--charcoal);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--rich-black);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-gold);
  border: none;
  outline: none;
}

.back-to-top i {
  font-size: 28px;
  line-height: 0;
}

.back-to-top:hover {
  transform: translateY(-5px);
  color: var(--rich-black);
}

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

@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 15px;
  }
  
  .back-to-top i {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Disable AOS Animation Delay on Mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 45px;
  font-size: 13px;
  transition: var(--transition-normal);
  z-index: 996;
  background: var(--rich-black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

#topbar.topbar-scrolled {
  top: -45px;
}

#topbar .contact-info a {
  display: flex;
  align-items: center;
  color: var(--text-light);
  transition: var(--transition-fast);
}

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

#topbar .contact-info i {
  color: var(--primary-gold);
  margin-right: 8px;
  font-size: 14px;
}

#topbar .contact-info span {
  font-weight: 400;
  letter-spacing: 0.5px;
}

#topbar .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-gold);
  margin-left: 10px;
  transition: var(--transition-normal);
}

#topbar .social-links a:hover {
  background: var(--primary-gold);
  color: var(--rich-black);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  z-index: 997;
  padding: 15px 0;
  top: 45px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

#header.header-scrolled {
  top: 0;
  background: rgba(13, 13, 13, 0.98);
  box-shadow: var(--shadow-md);
}

#header .logo {
  margin: 0;
  padding: 0;
}

#header .logo img {
  max-height: 55px;
  transition: var(--transition-normal);
}

#header.header-scrolled .logo img {
  max-height: 45px;
}

/* Ensure header doesn't block mobile menu */
body.mobile-nav-active #header {
  z-index: 1 !important;
}

/*--------------------------------------------------------------
# Book Now Button
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 20px;
  background: var(--gradient-gold);
  color: var(--rich-black);
  border-radius: var(--radius-xl);
  padding: 12px 28px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
}

.book-a-table-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(212, 175, 55, 0.4);
  color: var(--rich-black);
}

.book-a-table-btn i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 10px 22px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 35px;
  color: var(--text-light);
  white-space: nowrap;
  transition: var(--transition-normal);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--primary-gold);
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 35px;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition-normal);
}

.navbar a:hover::after,
.navbar .active::after {
  width: calc(100% - 35px);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: var(--transition-normal);
  padding: 5px;
  z-index: 9999;
  background: none;
  border: none;
  outline: none;
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar > ul {
    display: none;
  }
  
  .navbar {
    order: 2;
  }
  
  /* When navbar-mobile class is added */
  .navbar.navbar-mobile > ul {
    display: flex !important;
  }
}

.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  background: rgba(13, 13, 13, 0.99) !important;
  transition: var(--transition-normal);
  z-index: 99999 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100vw !important;
  height: 100vh !important;
}

.navbar-mobile .mobile-nav-toggle {
  position: fixed !important;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: var(--primary-gold);
  z-index: 100000 !important;
}

.navbar-mobile > ul {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  padding: 20px !important;
  margin: 0 !important;
  gap: 10px !important;
  background: rgba(13, 13, 13, 0.99) !important;
  z-index: 99999 !important;
}

.navbar-mobile > ul > li {
  width: 80%;
  max-width: 300px;
  text-align: center;
}

.navbar-mobile > ul > li > a,
.navbar-mobile > ul > li > a:focus {
  padding: 16px 20px !important;
  font-size: 16px !important;
  color: var(--text-light) !important;
  display: block !important;
  width: 100% !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-mobile > ul > li > a::after {
  display: none !important;
}

.navbar-mobile > ul > li > a:hover,
.navbar-mobile > ul > li > a.active {
  color: var(--rich-black) !important;
  background: var(--primary-gold) !important;
  border-color: var(--primary-gold);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.5) 0%,
    rgba(13, 13, 13, 0.7) 50%,
    rgba(13, 13, 13, 0.9) 100%
  );
}

#hero .container {
  z-index: 2;
  padding-top: 80px;
}

#hero .hero-subtitle {
  display: inline-block;
  color: var(--primary-gold);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

#hero h1 {
  font-size: 72px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.1;
}

#hero h1 .brand-script {
  font-family: 'Great Vibes', cursive;
  color: var(--primary-gold);
  font-size: 90px;
  font-weight: 400;
}

#hero .hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 15px;
}

#hero .hero-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.8;
}

#hero .hero-description em {
  color: var(--primary-gold);
  font-style: normal;
  font-weight: 500;
}

#hero .hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

#hero .btn-services,
#hero .btn-contact {
  padding: 15px 40px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-normal);
}

#hero .btn-services {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
}

#hero .btn-services:hover {
  background: var(--primary-gold);
  color: var(--rich-black);
  transform: translateY(-3px);
}

#hero .btn-contact {
  background: var(--gradient-gold);
  border: 2px solid var(--primary-gold);
  color: var(--rich-black);
  box-shadow: var(--shadow-gold);
}

#hero .btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

#hero .hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

#hero .hero-scroll-indicator a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  color: var(--primary-gold);
  animation: bounce 2s infinite;
}

#hero .hero-scroll-indicator i {
  font-size: 24px;
}

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

@media (max-width: 992px) {
  #hero {
    padding-top: 80px;
  }
  
  #hero h1 {
    font-size: 48px;
  }
  
  #hero h1 .brand-script {
    font-size: 60px;
  }
  
  #hero .hero-tagline {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 36px;
  }
  
  #hero h1 .brand-script {
    font-size: 48px;
  }
  
  #hero .hero-tagline {
    font-size: 18px;
  }
  
  #hero .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  #hero .btn-services,
  #hero .btn-contact {
    width: 100%;
    max-width: 280px;
  }
  
  #hero .hero-scroll-indicator {
    display: none;
  }
}

/*--------------------------------------------------------------
# Section Styling
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

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

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

.section-header h2 {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.section-header.light h2 {
  color: var(--text-light);
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 0 auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  background: var(--charcoal);
  padding: 60px 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.stats-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stats-item .stats-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gold);
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
}

.stats-item .stats-icon i {
  font-size: 28px;
  color: var(--primary-gold);
}

.stats-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 0;
  display: inline;
}

.stats-item span {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-gold);
}

.stats-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 10px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats-item h3 {
    font-size: 36px;
  }
  
  .stats-item span {
    font-size: 20px;
  }
  
  .stats-item .stats-icon {
    width: 60px;
    height: 60px;
  }
  
  .stats-item .stats-icon i {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: var(--rich-black);
  position: relative;
}

.about .about-img {
  position: relative;
  padding: 30px;
}

.about .about-img img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(212, 175, 55, 0.3);
}

.about .about-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-left: 4px solid var(--primary-gold);
  border-top: 4px solid var(--primary-gold);
  border-radius: var(--radius-md) 0 0 0;
}

.about .about-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border-right: 4px solid var(--primary-gold);
  border-bottom: 4px solid var(--primary-gold);
  border-radius: 0 0 var(--radius-md) 0;
}

.about .experience-badge {
  position: absolute;
  bottom: 50px;
  right: 0;
  background: var(--gradient-gold);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about .experience-badge .years {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--rich-black);
  line-height: 1;
}

.about .experience-badge .text {
  display: block;
  font-size: 12px;
  color: var(--rich-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about .content h3 {
  font-size: 32px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.about .about-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about .brand-highlight {
  color: var(--primary-gold);
  font-weight: 600;
}

.about .about-features {
  margin-bottom: 25px;
}

.about .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--charcoal);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-gold);
  transition: var(--transition-normal);
}

.about .feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.about .feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gold);
  border-radius: 50%;
  margin-right: 20px;
}

.about .feature-icon i {
  font-size: 22px;
  color: var(--primary-gold);
}

.about .feature-content h4 {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.about .feature-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.about .about-closing {
  font-size: 16px;
  color: var(--text-muted);
  padding: 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-gold);
}

@media (max-width: 992px) {
  .about .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 20px;
  }
  
  .about .about-img {
    text-align: center;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background: var(--charcoal);
}

.service-card {
  background: var(--dark-gray);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: linear-gradient(180deg, var(--dark-burgundy) 0%, var(--deep-maroon) 100%);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-card.featured::before {
  transform: scaleX(1);
}

.service-card .featured-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-gold);
  color: var(--rich-black);
  padding: 5px 40px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.service-card .service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gold);
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--primary-gold);
}

.service-card .service-icon i {
  font-size: 36px;
  color: var(--primary-gold);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon i {
  color: var(--rich-black);
}

.service-card h3 {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.service-card > p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 14px;
}

.service-card .service-features {
  text-align: left;
}

.service-card .service-features li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card .service-features li:last-child {
  border-bottom: none;
}

.service-card .service-features i {
  color: var(--primary-gold);
  margin-right: 12px;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  background: url("../img/about-bg.jpg") center center fixed;
  background-size: cover;
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.9);
}

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

.why-box {
  background: var(--charcoal);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid rgba(212, 175, 55, 0.1);
  height: 100%;
}

.why-box:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.why-box .why-number {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-gold);
  opacity: 0.3;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.why-box h4 {
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.why-box p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.why-box:hover .why-number {
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events {
  background: var(--rich-black);
}

.events .event-item {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 30px;
}

.events .event-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.events .event-img-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.events .event-img-wrapper:hover img {
  transform: scale(1.05);
}

.events .event-img-wrapper .event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.events .event-img-wrapper:hover .event-overlay {
  opacity: 1;
}

.events .event-overlay i {
  font-size: 48px;
  color: var(--text-light);
}

.events .event-img-wrapper.memorial .event-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.events .event-badge {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--rich-black);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.events .event-badge.celebrate {
  background: #FF6B6B;
  color: var(--text-light);
}

.events .event-badge.custom {
  background: #4ECDC4;
  color: var(--rich-black);
}

.events .event-badge.memorial {
  background: var(--warm-gray);
  color: var(--text-light);
}

.events .event-item h3 {
  font-size: 32px;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.events .event-intro {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.events .event-item ul {
  margin-bottom: 20px;
}

.events .event-item ul li {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  color: var(--text-light);
  font-size: 15px;
}

.events .event-item ul li i {
  color: var(--primary-gold);
  margin-right: 12px;
  margin-top: 4px;
  font-size: 14px;
}

.events .event-closing {
  color: var(--text-muted);
  font-size: 14px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(212, 175, 55, 0.3);
  opacity: 1;
  margin: 0 8px;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-gold);
}

@media (max-width: 992px) {
  .events .event-img-wrapper img {
    height: 280px;
  }
  
  .events .event-item h3 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  background: var(--charcoal);
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery .gallery-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: var(--transition-normal);
}

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

.gallery .gallery-overlay i {
  font-size: 36px;
  color: var(--rich-black);
  transform: scale(0.5);
  transition: var(--transition-normal);
}

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

/* Touch device gallery improvements */
@media (hover: none) {
  .gallery .gallery-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  }
  
  .gallery .gallery-overlay i {
    transform: scale(1);
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--primary-gold);
  }
  
  .gallery .gallery-item img {
    transform: none !important;
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  background: var(--gradient-gold);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta .cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 42px;
  color: var(--rich-black);
  margin-bottom: 15px;
}

.cta p {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 30px;
}

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

.cta .cta-btn-call,
.cta .cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-normal);
}

.cta .cta-btn-call {
  background: var(--rich-black);
  color: var(--primary-gold);
}

.cta .cta-btn-call:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-gold);
}

.cta .cta-btn-whatsapp {
  background: #25D366;
  color: var(--text-light);
}

.cta .cta-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: #20BD5A;
  color: var(--text-light);
}

.cta .cta-btn-call i,
.cta .cta-btn-whatsapp i {
  margin-right: 10px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .cta h2 {
    font-size: 32px;
  }
  
  .cta p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: var(--rich-black);
}

.contact .info {
  background: var(--charcoal);
  padding: 30px;
  border-radius: var(--radius-lg);
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact .info-item:first-child {
  padding-top: 0;
}

.contact .info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact .info-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: 50%;
  margin-right: 20px;
}

.contact .info-icon i {
  font-size: 22px;
  color: var(--rich-black);
}

.contact .info-content h4 {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.contact .info-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.contact .info-content a {
  color: var(--text-muted);
}

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

.contact .php-email-form {
  background: var(--charcoal);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact .form-header {
  margin-bottom: 30px;
}

.contact .form-header h3 {
  font-size: 26px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.contact .form-header p {
  color: var(--text-muted);
}

.contact .php-email-form label {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select {
  width: 100%;
  padding: 15px 20px;
  background: var(--dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 15px;
  transition: var(--transition-normal);
}

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

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--warm-gray);
}

.contact .php-email-form select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238B8B8B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 45px;
}

.contact .php-email-form select option {
  background: var(--dark-gray);
  color: var(--text-light);
}

.contact .php-email-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--gradient-gold);
  border: none;
  color: var(--rich-black);
  padding: 15px 45px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-gold);
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.contact .php-email-form .loading {
  display: none;
  background: var(--charcoal);
  text-align: center;
  padding: 15px;
  border-radius: var(--radius-md);
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-gold);
  border-top-color: transparent;
  animation: preloader-spin 1s linear infinite;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--text-light);
  background: #dc3545;
  text-align: center;
  padding: 15px;
  border-radius: var(--radius-md);
  font-weight: 500;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--text-light);
  background: #28a745;
  text-align: center;
  padding: 15px;
  border-radius: var(--radius-md);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--rich-black);
  color: var(--text-light);
  font-size: 14px;
}

#footer .footer-top {
  background: var(--charcoal);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

#footer .footer-info .footer-logo img {
  max-height: 70px;
  margin-bottom: 20px;
}

#footer .footer-info .footer-description {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.8;
}

#footer .footer-contact p {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  margin-bottom: 10px;
}

#footer .footer-contact i {
  color: var(--primary-gold);
  margin-right: 12px;
  font-size: 16px;
}

#footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-gray);
  color: var(--text-light);
  margin-right: 10px;
  transition: var(--transition-normal);
}

#footer .social-links a:hover {
  background: var(--primary-gold);
  color: var(--rich-black);
  transform: translateY(-3px);
}

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

#footer .social-links a.instagram:hover i {
  color: var(--text-light);
}

#footer .social-links a.whatsapp:hover {
  background: #25D366;
}

#footer .social-links a.whatsapp:hover i {
  color: var(--text-light);
}

#footer .footer-links h4 {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

#footer .footer-links ul li {
  padding: 10px 0;
}

#footer .footer-links ul a {
  color: var(--text-muted);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
}

#footer .footer-links ul a:hover {
  color: var(--primary-gold);
  padding-left: 10px;
}

#footer .footer-links ul a::before {
  content: '→';
  margin-right: 10px;
  color: var(--primary-gold);
  opacity: 0;
  transition: var(--transition-normal);
}

#footer .footer-links ul a:hover::before {
  opacity: 1;
}

#footer .footer-cta h4 {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

#footer .footer-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

#footer .footer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background: var(--primary-gold);
  color: var(--rich-black);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: var(--transition-normal);
}

#footer .footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--rich-black);
}

#footer .footer-cta-btn.whatsapp {
  background: #25D366;
  color: var(--text-light);
}

#footer .footer-cta-btn.whatsapp:hover {
  background: #20BD5A;
  color: var(--text-light);
}

#footer .footer-cta-btn i {
  margin-right: 8px;
  font-size: 16px;
}

#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#footer .copyright {
  color: var(--text-muted);
}

#footer .copyright strong {
  color: var(--primary-gold);
}

#footer .crafted {
  color: var(--text-muted);
}

#footer .crafted i {
  color: #dc3545;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/

/* Extra Large Devices (large desktops, less than 1400px) */
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (desktops, less than 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  #hero h1 {
    font-size: 60px;
  }
  
  #hero h1 .brand-script {
    font-size: 75px;
  }
  
  .section-header h2 {
    font-size: 42px;
  }
  
  .stats-item h3 {
    font-size: 42px;
  }
}

/* Medium Devices (tablets, less than 992px) */
@media (max-width: 992px) {
  #header {
    top: 0;
    padding: 12px 0;
  }
  
  #topbar {
    display: none !important;
  }
  
  #header .logo img {
    max-height: 45px;
  }
  
  .book-a-table-btn {
    padding: 10px 20px;
    font-size: 11px;
  }
  
  #hero {
    padding-top: 60px;
  }
  
  #hero h1 {
    font-size: 48px;
  }
  
  #hero h1 .brand-script {
    font-size: 60px;
  }
  
  #hero .hero-tagline {
    font-size: 20px;
  }
  
  #hero .hero-description {
    font-size: 15px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .stats-item h3 {
    font-size: 36px;
  }
  
  .stats-item span {
    font-size: 22px;
  }
  
  .about .content h3 {
    font-size: 28px;
  }
  
  .about .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 20px;
  }
  
  .about .about-img {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .about .about-img img {
    max-width: 80%;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .why-box {
    margin-bottom: 30px;
  }
  
  .events .event-img-wrapper img {
    height: 280px;
  }
  
  .events .event-item h3 {
    font-size: 26px;
  }
  
  .events .event-item {
    padding: 20px;
  }
  
  .cta h2 {
    font-size: 34px;
  }
  
  .contact .info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top {
    padding: 50px 0 30px;
  }
  
  #footer .footer-info,
  #footer .footer-links,
  #footer .footer-cta {
    margin-bottom: 30px;
  }
}

/* Small Devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
  #hero {
    min-height: 100vh;
    padding: 80px 0 60px;
  }
  
  #hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  
  #hero h1 .brand-script {
    font-size: 48px;
    display: block;
  }
  
  #hero .hero-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
  }
  
  #hero .hero-tagline {
    font-size: 18px;
  }
  
  #hero .hero-description {
    font-size: 14px;
    padding: 0 10px;
  }
  
  #hero .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  #hero .btn-services,
  #hero .btn-contact {
    width: 100%;
    max-width: 280px;
    padding: 14px 30px;
  }
  
  #hero .hero-scroll-indicator {
    display: none;
  }
  
  section {
    padding: 50px 0;
  }
  
  .section-header {
    padding-bottom: 35px;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .section-header .section-subtitle {
    font-size: 12px;
  }
  
  .stats {
    padding: 40px 0;
  }
  
  .stats-item {
    padding: 20px 10px;
  }
  
  .stats-item .stats-icon {
    width: 55px;
    height: 55px;
  }
  
  .stats-item .stats-icon i {
    font-size: 22px;
  }
  
  .stats-item h3 {
    font-size: 32px;
  }
  
  .stats-item span {
    font-size: 18px;
  }
  
  .stats-item p {
    font-size: 11px;
  }
  
  .about .content h3 {
    font-size: 24px;
  }
  
  .about .about-intro {
    font-size: 15px;
  }
  
  .about .feature-item {
    padding: 15px;
  }
  
  .about .feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }
  
  .about .feature-icon i {
    font-size: 18px;
  }
  
  .about .feature-content h4 {
    font-size: 16px;
  }
  
  .about .feature-content p {
    font-size: 13px;
  }
  
  .about .about-img::before,
  .about .about-img::after {
    width: 60px;
    height: 60px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-card .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-card .service-icon i {
    font-size: 28px;
  }
  
  .service-card h3 {
    font-size: 22px;
  }
  
  .service-card .featured-tag {
    font-size: 10px;
    padding: 4px 35px;
    right: -40px;
  }
  
  .why-box {
    padding: 30px 20px;
  }
  
  .why-box .why-number {
    font-size: 36px;
  }
  
  .why-box h4 {
    font-size: 20px;
  }
  
  .events .event-item {
    padding: 20px 15px;
  }
  
  .events .event-img-wrapper {
    margin-bottom: 20px;
  }
  
  .events .event-img-wrapper img {
    height: 220px;
  }
  
  .events .event-badge {
    font-size: 11px;
    padding: 6px 14px;
  }
  
  .events .event-item h3 {
    font-size: 24px;
  }
  
  .events .event-intro {
    font-size: 14px;
  }
  
  .events .event-item ul li {
    font-size: 14px;
    padding: 8px 0;
  }
  
  .gallery .gallery-item img {
    height: 180px;
  }
  
  .cta {
    padding: 60px 0;
  }
  
  .cta h2 {
    font-size: 28px;
  }
  
  .cta p {
    font-size: 15px;
  }
  
  .cta .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .cta .cta-btn-call,
  .cta .cta-btn-whatsapp {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .contact .php-email-form {
    padding: 30px 20px;
  }
  
  .contact .form-header h3 {
    font-size: 22px;
  }
  
  .contact .info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }
  
  .contact .info-icon i {
    font-size: 18px;
  }
  
  .contact .info-content h4 {
    font-size: 16px;
  }
  
  #footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  #footer .footer-info .footer-logo img {
    max-height: 60px;
  }
  
  #footer .footer-cta-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  #header .logo img {
    max-height: 40px;
  }
  
  .book-a-table-btn {
    display: none !important;
  }
  
  #hero {
    padding: 100px 0 50px;
  }
  
  #hero h1 {
    font-size: 30px;
  }
  
  #hero h1 .brand-script {
    font-size: 42px;
  }
  
  #hero .hero-tagline {
    font-size: 16px;
  }
  
  #hero .hero-description {
    font-size: 13px;
  }
  
  #hero .btn-services,
  #hero .btn-contact {
    padding: 12px 25px;
    font-size: 12px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .section-header {
    padding-bottom: 30px;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
  
  .stats-item {
    padding: 15px 5px;
  }
  
  .stats-item .stats-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .stats-item .stats-icon i {
    font-size: 20px;
  }
  
  .stats-item h3 {
    font-size: 28px;
  }
  
  .stats-item span {
    font-size: 16px;
  }
  
  .stats-item p {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  
  .about .about-img {
    padding: 15px;
  }
  
  .about .about-img img {
    max-width: 100%;
  }
  
  .about .experience-badge {
    padding: 20px;
  }
  
  .about .experience-badge .years {
    font-size: 28px;
  }
  
  .about .experience-badge .text {
    font-size: 10px;
  }
  
  .about .content h3 {
    font-size: 22px;
  }
  
  .about .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .about .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  .service-card .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-card .service-icon i {
    font-size: 24px;
  }
  
  .service-card h3 {
    font-size: 20px;
  }
  
  .service-card > p {
    font-size: 13px;
  }
  
  .service-card .service-features li {
    font-size: 13px;
  }
  
  .why-box {
    padding: 25px 15px;
  }
  
  .why-box .why-number {
    font-size: 32px;
  }
  
  .why-box h4 {
    font-size: 18px;
  }
  
  .why-box p {
    font-size: 13px;
  }
  
  .events .event-item {
    padding: 15px;
  }
  
  .events .event-img-wrapper img {
    height: 200px;
  }
  
  .events .event-item h3 {
    font-size: 22px;
  }
  
  .events .event-item ul li {
    font-size: 13px;
  }
  
  .gallery .gallery-item img {
    height: 150px;
  }
  
  .cta h2 {
    font-size: 24px;
  }
  
  .cta p {
    font-size: 14px;
  }
  
  .contact .info {
    padding: 20px;
  }
  
  .contact .info-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }
  
  .contact .info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .contact .php-email-form {
    padding: 25px 15px;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea,
  .contact .php-email-form select {
    padding: 12px 15px;
  }
  
  .contact .php-email-form button[type="submit"] {
    padding: 12px 30px;
    font-size: 13px;
  }
  
  #footer .footer-top {
    padding: 40px 0 20px;
  }
  
  #footer .footer-links h4,
  #footer .footer-cta h4 {
    font-size: 16px;
  }
  
  #footer .social-links a {
    width: 36px;
    height: 36px;
  }
}

/* Extra Extra Small Devices (very small phones, less than 400px) */
@media (max-width: 400px) {
  #hero h1 {
    font-size: 26px;
  }
  
  #hero h1 .brand-script {
    font-size: 36px;
  }
  
  #hero .hero-tagline {
    font-size: 14px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .stats-item h3 {
    font-size: 24px;
  }
  
  .stats-item .stats-icon {
    width: 45px;
    height: 45px;
  }
  
  .about .content h3 {
    font-size: 20px;
  }
  
  .gallery .gallery-item img {
    height: 120px;
  }
}

/* Landscape Mode Fixes */
@media (max-height: 500px) and (orientation: landscape) {
  #hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 50px;
  }
  
  #hero h1 {
    font-size: 32px;
  }
  
  #hero h1 .brand-script {
    font-size: 42px;
  }
  
  #hero .hero-tagline {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  #hero .hero-description {
    margin-bottom: 20px;
  }
  
  #hero .hero-btns {
    flex-direction: row;
    gap: 15px;
  }
  
  #hero .btn-services,
  #hero .btn-contact {
    width: auto;
    padding: 12px 25px;
  }
  
  .navbar-mobile > ul {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 15px !important;
  }
  
  .navbar-mobile > ul > li {
    width: auto;
    max-width: none;
  }
  
  .navbar-mobile > ul > li > a,
  .navbar-mobile > ul > li > a:focus {
    padding: 10px 18px !important;
    font-size: 12px !important;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure crisp rendering on high DPI displays */
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print Styles */
@media print {
  #header,
  #topbar,
  .back-to-top,
  #preloader,
  .hero-scroll-indicator,
  .cta,
  .book-a-table-btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  section {
    padding: 20px 0;
  }
}

