/* ==========================================
   CSS RESET AND BASE STYLES
   ========================================== */

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

:root {
    /* Professional Color Palette - Color Theory Based */
    --primary-burgundy: #8B0000;
    --primary-gold: #B8860B;
    --primary-navy: #191970;
    
    /* Color Variations */
    --burgundy-light: #A0522D;
    --burgundy-dark: #654321;
    --gold-light: #DAA520;
    --gold-dark: #996515;
    --navy-light: #4682B4;
    --navy-dark: #0D1B2A;
    
    /* Accent Colors */
    --accent-cream: #F5F5DC;
    --accent-bronze: #CD7F32;
    --accent-silver: #C0C0C0;
    
    /* Legacy Color Mappings for Compatibility */
    --primary-indigo: var(--primary-navy);
    --primary-red: var(--primary-burgundy);
    --indigo-light: var(--navy-light);
    --indigo-dark: var(--navy-dark);
    --red-light: var(--burgundy-light);
    --red-dark: var(--burgundy-dark);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #171923;
    
    /* Typography - Professional Fonts */
    --font-primary: 'Inter', 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-accent: 'Cormorant Garamond', 'Times New Roman', serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-800);
}

h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-md);
}

h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .gallery-grid img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .gallery-grid img:hover {
    transform: scale(1.03);
  }

  /* Modal overlay */
  .modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .modal.show {
    display: flex;
  }

  .modal-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 10px;
  }

  .modal-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
  }

  .close {
    position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: black; /* black color */
  cursor: pointer;
  z-index: 10000;
  background: white;
  padding: 4px 10px;
  border-radius: 50%;
  line-height: 1;
  }

  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }



.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.service-features {
  margin: 12px 0;
}
.feature {
  background: #f1f1f1;
  color: #333;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 3px;
  display: inline-block;
}

.feedback-carousel {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}
.review-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
}
.review-item {
    flex: 0 0 80%;
    max-width: 500px;
    margin: auto;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    scroll-snap-align: start;
}
.review-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-style: italic;
}
.review-author {
    color: #555;
}
.review-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;

    /* Hide scrollbar (cross-browser) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}

.review-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.footer-section {
    text-align: center;
    margin: 0 auto;
}

.contact-info-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the items horizontally */
    gap: 20px; /* Optional spacing between items */
    margin-top: 20px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 300px;
    text-align: left;
}
.contact-item-footer i {
    font-size: 20px;
    color: #555;
}

.contact-details-footer {
    display: flex;
    flex-direction: column;
}

.contact-details-footer a {
    text-decoration: none;
    color: #333;
}

.contact-label {
    font-weight: bold;
    font-size: 14px;
    color: #888;
}




















/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    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 var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-indigo), var(--indigo-light));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--indigo-dark), var(--primary-indigo));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--white);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-offer {
    background: linear-gradient(135deg, var(--primary-red), var(--red-light));
    color: var(--white);
    width: 100%;
    justify-content: center;
}

.btn-offer:hover {
    background: linear-gradient(135deg, var(--red-dark), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   HEADER AND NAVIGATION
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: var(--spacing-md) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: -0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-indigo);
}

.nav-logo i {
    font-size: 1.75rem;
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color var(--transition-normal);
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: var(--transition-normal);
    border-radius: var(--radius-sm);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
/* =================== FIXED HERO & ABOUT SECTION =================== */


.about {
  margin-top: 300px; /* space between hero and about */
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 80px 0;
  overflow: hidden;
}

.about-container {
  padding: 60px 0;
}

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

.about-image {
  text-align: center;
}

.about-photo {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-text {
  font-size: 1.05rem;
  color: #444;
}

.about-description {
  margin-bottom: 30px;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f9f9f9;
  padding: 12px 16px;
  border-left: 4px solid #c9a227; /* gold accent */
  border-radius: 10px;
  font-weight: 500;
  color: #333;
}

.feature-item i {
  color: #c9a227;
  font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    text-align: left;
  }
}



.logo-icon {
    margin-right: var(--spacing-sm);
}

@media screen and (max-width: 400px) {
  .logo-text {
    font-size: 0.9rem;
    max-width: 140px;  /* adjust width */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}


.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: transparent;
    border-radius: var(--radius-sm);
}

/* Language Toggle */
.language-toggle {
    margin-right: var(--spacing-lg);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--primary-gold));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.lang-btn i {
    font-size: 1rem;
}

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

/* .hero {
    padding: 120px 0 80px;
    /* background: linear-gradient(180deg, rgba(26, 26, 141, 0.9) 0%, rgba(130, 4, 4, 0.85) 50%, rgba(177, 129, 7, 0.8) 100%), 
                linear-gradient(45deg, rgba(177, 177, 11, 0.1) 0%, rgba(192, 192, 192, 0.1) 100%); */


.hero {
  background-image: url('/attached_assets/image05.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 20px;
  min-height: 100vh;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Black overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55); /* Dark overlay */
  z-index: 0;
}

/* Twinkle layer (optional, keep if you want stars) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(245,245,220,0.05), transparent);
  pointer-events: none;
  z-index: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Content wrapper */
.hero-container {
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 1;
}




  .feedback-carousel {
    padding: 50px 0;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .section-header {
    text-align: center;
    margin-bottom: 30px;
  }
 
  .section-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }

  .section-subtitle {
    font-size: 16px;
    color: #666;
  }

/* Content styling */
.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(135deg, var(--accent-cream), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.95;
  color: var(--accent-cream);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-transform: none;
  letter-spacing: 0.025em;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
  color: var(--navy-dark);
  border: 2px solid var(--gold-light);
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--primary-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.hero-buttons .btn-secondary {
  background: transparent;
  color: var(--accent-cream);
  border: 2px solid var(--accent-cream);
}

.hero-buttons .btn-secondary:hover {
  background: var(--accent-cream);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 245, 220, 0.3);
}


.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--accent-cream);
    border: 2px solid var(--accent-cream);
}

.hero-buttons .btn-secondary:hover {
    background: var(--accent-cream);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 245, 220, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.hero-icon {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
}

.hero-icon i {
    font-size: 4rem;
    color: var(--white);
}

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

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

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: 2.5rem;
    margin-top: 20px;
    color: var(--gray-800);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: var(--radius-full);
}

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

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

/* SERVICES SECTION */
.services {
  padding: 60px 0;
  background: #f8f8f8;
}

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

.section-title {
  font-size: 2.4rem;
  color: #222;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
}

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

/* SERVICE CARD */
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

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

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.service-description {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

/* FEATURE TAGS */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.feature {
  font-size: 0.75rem;
  background: #e0f0ff;
  color: #0070cc;
  padding: 5px 10px;
  border-radius: 20px;
}

/* BUTTON */
.btn {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #0056d2;
  color: white;
}

.btn-primary:hover {
  background-color: #003fa1;
}




















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

.contact {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-indigo), var(--indigo-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--gray-800);
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-indigo);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.contact-link:hover {
    color: var(--indigo-dark);
}

.timing-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--gray-800);
    text-align: center;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-indigo);
}

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

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

.footer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 50%, var(--burgundy-dark) 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="rgba(245,245,220,0.1)"/><circle cx="20" cy="20" r="0.3" fill="rgba(184,134,11,0.15)"/><circle cx="80" cy="80" r="0.3" fill="rgba(192,192,192,0.1)"/></svg>');
    background-size: 80px 80px;
    animation: twinkle 30s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    font-size: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-md);
    justify-content: center;
    text-align: center;
}

.footer-logo-img {
    width: 75px;
    height: 75px;
}

.footer-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-top: var(--spacing-xs);
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
  align-items: center;
  text-align: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}
.social-section {
  margin-top: 15px;
}

.social-section span {
  color:var(--gray-300);
  font-weight: 600;
  margin-right: 12px;
}

.social-links a {
  color:  #fff;
  margin-right: 14px;
  font-size: 25px;
  transition: color 0.3s;
  text-decoration: none;
}



.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

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

.contact-details-footer {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-300);
    font-weight: 500;
}

.contact-details-footer a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.badge {
    background: rgba(191, 137, 0, 0.2);
    color: var(--accent-cream);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(184, 134, 11, 0.3);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-300);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-indigo), var(--indigo-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--indigo-dark), var(--primary-indigo));
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

/* Tablet Styles */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-lg) 0;
        gap: var(--spacing-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .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);
    }
  

    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-icon {
        width: 150px;
        height: 150px;
    }
    
    .hero-icon i {
        font-size: 3rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Offers Grid */
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    /* Language Toggle */
    .language-toggle {
        margin-right: var(--spacing-md);
    }
    
    .lang-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.75rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    /* Contact Content */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Buttons */
    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.875rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: var(--spacing-md);
    }
    
    .hero-icon {
        width: 120px;
        height: 120px;
    }
    
    .hero-icon i {
        font-size: 2.5rem;
    }
    
    /* Services Cards */
    .service-card {
        padding: var(--spacing-lg);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    /* Offers Cards */
    .offer-card {
        padding: var(--spacing-lg);
    }
    
    .offer-card.featured {
        transform: none;
    }
    
    .offer-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
    }
    
    .offer-icon i {
        font-size: 1.5rem;
    }
    
    .discounted-price {
        font-size: 1.75rem;
    }
    
    /* Contact Form */
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Animation for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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