:root {
  /* Brand Colors - Purple & Gold */
  --primary-color: #6a1b9a;
  /* Deep Purple */
  --secondary-color: #8e24aa;
  /* Vibrate Purple */
  --accent-color: #ffb300;
  /* Amber/Gold */
  --accent-hover: #ffca28;
  --success-color: #2e7d32;

  /* Neutral Colors */
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --bg-white: #ffffff;
  --bg-light: #f8f5fa;
  /* Very subtle purple tint */
  --bg-gradient: linear-gradient(135deg, #fdfbfd 0%, #ffffff 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Typography */
  --font-content: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Components */
  --border-radius: 16px;
  --box-shadow: 0 10px 40px rgba(106, 27, 154, 0.08);
  /* Purple tinted shadow */
  --box-shadow-hover: 0 20px 50px rgba(106, 27, 154, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-content);
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  /* Balanced Padding */
  min-height: 48px;
  /* Ensure proportion */
  display: inline-flex;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(106, 27, 154, 0.3);
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(106, 27, 154, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--bg-light);
  transform: translateY(-3px);
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: var(--spacing-sm);
}

.mb-2 {
  margin-bottom: var(--spacing-md);
}

.mb-3 {
  margin-bottom: var(--spacing-lg);
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 110px;
  /* Bigger Logo as requested */
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Toggle - Hidden on Desktop */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Navigation */
/* Mobile Toggle */
@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
    position: relative;
    z-index: 1001;
    /* Ensure toggle is above overlay */
  }

  /* Fullscreen Centered Menu with Staggered Animation */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px) scale(0.95);
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
  }

  /* Staggered Links */
  .nav-links a {
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Delay for each link */
  .nav-links.active a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active a:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links.active a:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links.active a:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-links.active a:nth-child(5) {
    transition-delay: 0.5s;
  }

  .nav-links .btn {
    margin-top: 1rem;
    width: auto;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    /* Bigger button on mobile */
  }

  /* Mobile Typography & Centering */
  .hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: center;
  }

  .hero p {
    font-size: 1.1rem;
    text-align: center;
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 80%;
    justify-content: center;
  }

  .container {
    text-align: center;
    /* Global center for mobile */
  }

  .contact-info-item {
    justify-content: center;
  }

  .section {
    padding: 3rem 0;
  }

  .subpage-hero {
    background-attachment: scroll !important;
    /* Fix mobile jitter */
    min-height: 40vh;
    /* Better on mobile */
  }

  .subpage-hero h1 {
    font-size: 2.5rem;
  }

  .contact-container,
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Fix Main Hero Mobile Jitter */
  .hero {
    background-attachment: scroll !important;
    padding-top: 120px;
    /* Adjust padding for mobile */
    min-height: 80vh;
  }
}

/* Hero Section */
.hero {
  min-height: 90vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%),
    url('../images/pexels-shvetsa-3844581.jpg') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.subpage-hero {
  min-height: 50vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  /* Removed Parallax as per 'simpler' request */
  position: relative;
  color: white;
  margin-bottom: var(--spacing-md);
}


/* Purple Overlay - 'Nice Way' */
.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(106, 27, 154, 0.4), rgba(142, 36, 170, 0.2));
  z-index: 1;
}

.subpage-hero .container {
  position: relative;
  z-index: 2;
  /* Optional: Text background if readability is an issue, but user asked for simple */
  /* text-shadow: 0 2px 4px rgba(0,0,0,0.5); User explicitly said NO shadow, so keeping clean */
}

.subpage-hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  /* No text shadow */
  -webkit-text-fill-color: white;
}

.subpage-hero p {
  color: white;
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 600;
  /* Bolder for readability without shadow */
}

/* Specific subpage backgrounds */
.hero-about {
  background-image: url('../images/pexels-tima-miroshnichenko-5452300.jpg');
}

.hero-services {
  background-image: url('../images/pexels-rdne-6129194.jpg');
}

.hero-contact {
  background-image: url('../images/pexels-wundef-5430213.jpg');
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-hint {
  position: absolute;
  right: 70px;
  background: white;
  color: #333;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp-widget:hover .whatsapp-hint {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hero::before {
  /* Animated Abstract Blob */
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(106, 27, 154, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: pulse-glow 15s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(-30px, 20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  /* Impactful Centered Layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero h1 {
  font-size: 4.5rem;
  /* Massive Headline */
  letter-spacing: -1px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideInUp 0.8s ease-out;
}

.hero p {
  font-size: 1.4rem;
  max-width: 700px;
  margin-bottom: 2rem;
  color: var(--text-dark);
  animation: slideInUp 1s ease-out;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: slideInUp 1.2s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Full Width Map */
.full-width-map-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 500px;
}

.full-width-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) hue-rotate(240deg);
  /* Modern stylized map */
}


/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--font-content);
  font-size: 1rem;
  transition: var(--transition);
  background-color: #fcfcfc;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(106, 27, 154, 0.1);
  background-color: #fff;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid rgba(106, 27, 154, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(106, 27, 154, 0.1);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: 700;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* About Layout Refinement - V5 */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-main {
  width: 100%;
  height: 600px;
  /* Tall impressive image */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 15px 15px 0 var(--bg-light);
}

/* About/Features */
.about-section {
  background-color: var(--primary-color);
  color: #fff;
}

.about-section h2,
.about-section p {
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
}

/* Contact */
.contact-section {
  background-color: var(--bg-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Footer V5 - Minimalistic & Clean */
footer {
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 5rem 0 2rem;
  color: var(--text-dark);
}

.footer-minimal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-contact-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--primary-color);
  margin-right: 8px;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-socials a {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

.footer-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f5f5f5;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #aaa;
  font-size: 0.85rem;
}

.designer-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
}

/* Responsive V5 */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-image-main {
    height: 400px;
  }

  .footer-info {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-content {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .logo {
    height: 70px;
  }



  .hero h1 {
    font-size: 2.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Meet The Team - Minimal V6 */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card-minimal {
  background: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.team-card-minimal:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-color);
}

.team-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-desc {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* FAQ Accordion - V6 */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-light);
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Approximate height */
  padding-bottom: 1.5rem;
  opacity: 1;
}

.faq-item.active .faq-question {
  color: var(--primary-color);
}

.faq-toggle-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

/* =========================================
   V7 Upgrades (Carousel, News, Dark Mode)
   ========================================= */

/* Testimonials Carousel */
.testimonials-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll on iOS */
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.testimonial-card {
  min-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.news-link {
  margin-top: auto;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

/* Dark Mode */
body.dark-mode {
  --bg-white: #121212;
  --bg-light: #1e1e1e;
  --text-dark: #e0e0e0;
  --text-light: #aaaaaa;
  background-color: var(--bg-white);
  color: var(--text-dark);
}

body.dark-mode .navbar,
body.dark-mode .testimonial-card,
body.dark-mode .team-card-minimal,
body.dark-mode .faq-item,
body.dark-mode .news-card,
body.dark-mode .contact-form,
body.dark-mode .info-card {
  background-color: var(--bg-light);
  border-color: #333;
}

body.dark-mode .nav-links a {
  color: var(--text-dark);
}

body.dark-mode .nav-links {
  background-color: var(--bg-white);
}

/* Dark Mode Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.theme-toggle:hover {
  transform: rotate(15deg);
  color: var(--primary-color);
}

/* =========================================
   V8 Final Upgrades (Premium Features)
   ========================================= */

/* 1. Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* 2. Interactive Icons */
.service-icon {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy */
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--accent-color);
}

/* 3. CTA Banner */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
}

.cta-section .btn {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* 4. Mini Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* 5. Text-Only Facilities (Creative) */
.facilities-text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.facility-text-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-left 0.3s ease;
  border-left: 5px solid transparent;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.facility-text-card:hover {
  transform: translateY(-5px);
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-text-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: block;
}

.facility-text-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.facility-text-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Decorative background circle */
.facility-text-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(106, 27, 154, 0.05);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.facility-text-card:hover::after {
  transform: scale(1.5);
}