/* =========================================
   LIGHT MODE (default)
   ========================================= */
:root {
  /* Brand */
  --primary-color: #E8751A;   /* Bold orange for buttons/CTAs */
  --secondary-color: #8B4513; /* Rich saddle brown */
  --accent-color: #FFB347;    /* Warm highlight orange */

  /* Status */
  --success-color: #4CAF50;   /* Green */
  --warning-color: #D4A017;   /* Golden brown */
  --error-color: #C62828;     /* Deep red */

  /* Text */
  --text-main: #2C1A0A;       /* Dark brown for main text */
  --text-light: #7B5C44;      /* Softer brown for secondary text */
  --text-invert: #FFF8E7;     /* Cream for text on dark bg */

  /* Backgrounds */
  --bg-body: #FFF8E7;         /* Cream body background */
  --bg-surface: #FAF0E0;      /* Card/container background */
  --bg-highlight: #FFE4C4;    /* Subtle highlight (hover, focus) */
  --bg-light: #FFF8E7;        /* Light background for sections */
  --bg-white: #FFFFFF;        /* Pure white */
  --bg-dark: #2B1A10;         /* Dark background for footer */

  /* Borders & Shadows */
  --border-color: #E8D5C4;    /* Soft beige */
  --shadow-light: 0 2px 10px rgba(44, 26, 10, 0.05);
  --shadow-medium: 0 4px 20px rgba(44, 26, 10, 0.1);
  --shadow-heavy: 0 8px 40px rgba(44, 26, 10, 0.15);

  /* General */
  --font-family: 'Poppins', sans-serif;
  --border-radius: 12px;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  --transition: 0.3s ease;

  /* Layout */
  --nav-height: 80px;
}

/* =========================================
   DARK MODE
   ========================================= */
html[data-theme="dark"] {
  /* Brand */
  --primary-color: #FF8C1A;   /* Brighter orange for contrast */
  --secondary-color: #C76A30; /* Warm caramel brown */
  --accent-color: #E89A5F;    /* Muted highlight */

  /* Status */
  --success-color: #66BB6A;
  --warning-color: #FFC107;
  --error-color: #FF5C33;

  /* Text */
  --text-main: #FFF3E0;       /* Light cream text */
  --text-light: #E2B887;      /* Warm secondary text */
  --text-invert: #2C1A0A;     /* Dark brown for inverted cases */
  --text-dark: #FFF3E0;       /* Dark text on light bg */
  --text-white: #2B1A10;      /* White text on dark bg */

  /* Backgrounds */
  --bg-body: #2B1A10;         /* Dark cocoa */
  --bg-surface: #3A2214;      /* Card background */
  --bg-highlight: #4E2A18;    /* Slightly lighter accent background */
  --bg-light: #3A2214;        /* Light background for sections */
  --bg-white: #3A2214;        /* "White" background in dark mode */
  --bg-dark: #1A1008;         /* Darker background for footer */

  /* Borders & Shadows */
  --border-color: #5D4037;    /* Muted brown border */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-body);
  overflow-x: hidden;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--bg-white);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.navbar.scrolled {
  background: var(--bg-white);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-medium);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  padding: 2px 6px;
  max-width: 160px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.nav-link.btn-highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--text-invert) !important;
  font-weight: 600;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link.btn-highlight:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--text-main);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Slider */
.hero-slider {
  min-height: 100vh;
  position: relative;
  padding: var(--nav-height) 0 0;
  overflow: hidden;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.slide.active {
  opacity: 1;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 10s ease;
}

.slide.active .slide-background {
  transform: scale(1.1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 26, 10, 0.7), rgba(139, 69, 19, 0.5));
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: var(--text-invert);
  padding: 2rem;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.title-line.highlight {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.slide-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.slide-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--text-invert);
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--text-invert);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--text-invert);
  border: 2px solid var(--text-invert);
}

/* Mobile menu toggle animation */
.nav-toggle {
    display: none;
    cursor: pointer;
}



.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background-color: var(--bg-surface);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        overflow-y: auto;
        max-height: calc(100vh - var(--nav-height));
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
}
/* @media (max-width: 853px){
  .nav-link{
     font-size: 0.6rem;
  }

}
@media (max-width: 912px){
  .nav-link{
     font-size: 0.6rem;
  }

} */

@media (width: 912px){
   .nav-link{
     font-size: 0.6rem;
  }

}
@media (width: 853px){
   .nav-link{
     font-size: 0.6rem;
  }

}
/* Additional overflow prevention */
.container {
    overflow-x: hidden;
}


/* Prevent horizontal scrolling on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Improved text wrapping */
h1, h2, h3, h4, h5, h6, p, span, li, a, label {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Better form element handling on mobile */
input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .submit-btn:hover,
    .cta-button:hover,
    .checkbox-label:hover {
        transform: none;
    }
    
    .submit-btn:active,
    .cta-button:active,
    .checkbox-label:active {
        transform: scale(0.98);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .booking-hero {
        background: var(--primary-color);
    }
    
    .step-item {
        border: 2px solid var(--border-color);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading-spinner {
        animation: none;
    }
}

.btn-outline:hover {
  background: var(--text-invert);
  color: var(--text-main);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-white {
  background: var(--text-invert);
  color: var(--text-main);
}

.btn-white:hover {
  background: var(--text-main);
  color: var(--text-invert);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 3;
  transform: translateY(-50%);
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.arrow-icon {
  font-size: 1.5rem;
  color: var(--text-invert);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon .icon {
  font-size: 2.5rem;
  z-index: 2;
  position: relative;
}

.feature-icon .icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.15; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.feature-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* About Preview Section */
.about-preview-section {
  background: var(--bg-surface);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.section-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Services Preview Section */
.services-preview-section {
  background: var(--bg-light);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-visual img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
}

.services-list {
  margin: 2rem 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.service-item:hover {
  background: var(--bg-highlight);
  transform: translateX(5px);
}

.service-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

.service-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.service-text p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Menu Highlights Section */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.menu-item {
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
  border: 1px solid var(--border-color);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.menu-image {
  height: 200px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-item:hover .menu-image img {
  transform: scale(1.1);
}

.menu-content {
  padding: 1.5rem;
}

.menu-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.menu-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.menu-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-tag {
  background: rgba(232, 117, 26, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.menu-actions {
  text-align: center;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stars {
  color: var(--warning-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.7;
}

.author-name {
  font-weight: 600;
  color: var(--text-main);
}

.author-event {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  background: var(--bg-light);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-highlight);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--text-invert);
  text-align: center;
  padding: 5rem 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-invert);
  padding: 4rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-invert);
}

.footer-description {
  color: rgba(255, 248, 220, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background:white ;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  color:  black;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 248, 220, 0.7);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
  color: var(--primary-color);
}

.contact-text {
  color: rgba(255, 248, 220, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  color: rgba(255, 248, 220, 0.7);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  color: rgba(255, 248, 220, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.legal-link:hover {
  color: var(--primary-color);
}

/* Floating Controls */
.floating-controls {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--text-invert);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-heavy);
}

.btn-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}
.footer-logo-img img{
   height: 80px;
  
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.theme-toggle {
  background: var(--secondary-color);
}

/* Utility Classes */
.img-responsive {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Responsive Styles */
@media (max-width: 992px) {
  .slide-title {
    font-size: 2.8rem;
  }
  
  .about-content,
  .services-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text .section-title,
  .services-text .section-title {
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-surface);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.5s ease;
    box-shadow: var(--shadow-heavy);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .slide-title {
    font-size: 2.2rem;
  }
  
  .slide-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .slide-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .slider-arrows {
    display: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .floating-controls {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .slide-content {
    padding: 1rem;
  }
  
  .slide-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-btn {
    width: 45px;
    height: 45px;
  }
}