﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --bg-primary: #0a0f1c; /* Deep Navy */
  --bg-secondary: #131b2e; /* Darker Slate */
  --bg-tertiary: #1e293b; /* Medium Slate */
  --text-primary: #f1f5f9; /* Near White */
  --text-secondary: #94a3b8; /* Slate Gray */
  --text-tertiary: #64748b; /* Muted Slate */
  --accent-gold: #c5a059; /* Corporate Gold */
  --accent-blue: #3b82f6; /* Trust Blue */
  --accent-cyan: #0ea5e9; /* Light Cyan */
  --accent-emerald: #10b981; /* Success Green */
  --gradient-main: linear-gradient(135deg, #c5a059 0%, #3b82f6 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10,15,28,0.95) 0%, rgba(19,27,46,0.8) 50%, rgba(10,15,28,0.92) 100%);
  --glass-bg: rgba(10, 15, 28, 0.4); /* Increased transparency */
  --glass-border: rgba(148, 163, 184, 0.15);
  --glass-hover: rgba(197, 160, 89, 0.2);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(197, 160, 89, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ═══════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 15, 28, 0.6); /* More transparent when scrolled */
  backdrop-filter: blur(15px); /* Slightly reduced blur for clarity */
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 110px; /* Base height for desktop */
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .logo-img { height: 110px; /* Slightly smaller when scrolled */ }

.nav-logo span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: var(--bg-tertiary);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid var(--glass-border);
}

.lang-btn {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text-tertiary);
  border: none;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--gradient-main);
  color: #fff;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: opacity 1.5s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.hero-particles::before {
  width: 400px;
  height: 400px;
  background: var(--accent-cyan);
  top: 10%;
  right: 10%;
}

.hero-particles::after {
  width: 300px;
  height: 300px;
  background: var(--accent-purple);
  bottom: 20%;
  left: 5%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   ABOUT / MISSION & VISION
   ═══════════════════════════════════════════ */
.about {
  padding: 120px 0;
  position: relative;
}

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

.about-content {
  padding-right: 20px;
}

.mv-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mv-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.mv-card.mission::before {
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue));
}

.mv-card.vision::before {
  background: linear-gradient(180deg, var(--accent-purple), var(--accent-emerald));
}

.mv-card:hover {
  border-color: var(--glass-hover);
  transform: translateX(8px);
}

.mv-card .mv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.mv-card.mission .mv-icon {
  background: rgba(197, 160, 89, 0.15);
  color: var(--accent-gold);
}

.mv-card.vision .mv-icon {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
}

.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

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

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  group: true;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--glass-hover);
}

.service-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 100%);
}

.service-card-body {
  padding: 24px 28px 28px;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  background: rgba(197, 160, 89, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-right: 20px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(197, 160, 89, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(197, 160, 89, 0.2);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

/* Fix for date and time icons in some browsers */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg) brightness(0.8);
  cursor: pointer;
}

select.form-control option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  padding: 10px;
}

/* Booking Calendar Widget Styles */
.booking-container {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  max-width: 450px; /* Prevent stretching on large screens */
  margin-left: auto;
  margin-right: auto;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.calendar-day-head {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  padding-bottom: 8px;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1 / 1; /* Keep it square */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Circular days for better look */
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.calendar-day:hover:not(.disabled) {
  background: rgba(197, 160, 89, 0.2);
  border-color: var(--accent-gold);
}

.calendar-day.active {
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-weight: 700;
}

.calendar-day.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.calendar-day.today {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

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

.time-slot {
  padding: 8px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.time-slot:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--accent-blue);
}

.time-slot.active {
  background: var(--accent-blue);
  color: white;
  border-color: var(--accent-blue);
}

.time-slot.disabled {
  opacity: 0.3;
  text-decoration: line-through;
  cursor: not-allowed;
}

.form-control::placeholder {
  color: var(--text-tertiary);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links { list-style: none; padding-left: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════
   ADMIN STYLES
   ═══════════════════════════════════════════ */
.admin-container {
  min-height: 100vh; min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-box {
  width: 100%;
  max-width: 480px;
  padding: 48px;
  border-radius: var(--radius-xl);
}

.admin-header {
  text-align: center;
  margin-bottom: 32px;
}

.admin-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN (Multi-platform)
   ═══════════════════════════════════════════ */

/* Laptops & Tablets (1024px) */
@media (max-width: 1024px) {
  .about-grid, .contact-grid {
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }

  .logo-img { height: 120px; /* Smaller logo on tablets */ }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

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

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

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

  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    text-align: center;
    justify-content: center;
  }
}

/* Mobile Devices (480px) */
@media (max-width: 480px) {
  .logo-img { height: 90px; /* Even smaller logo on mobile to prevent overlap */ }

  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}




  50% { 
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.5)) brightness(1.15); 
    transform: translateY(-4px); 
  }
  100% { 
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.1)) brightness(1); 
    transform: translateY(0); 
  }
}

.nav-logo .logo-img {
  animation: premiumShieldGlow 4s ease-in-out infinite;
}

/* Footer Logo Specifics */
.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 20px;
    animation: premiumShieldGlow 4s ease-in-out infinite;
}

/* Silver Shield Glow & Sweep Effect */
@keyframes silverShieldGlow {
  0% { 
    filter: drop-shadow(0 0 5px rgba(200, 210, 230, 0.2)) brightness(1); 
    transform: translateY(0); 
  }
  50% { 
    filter: drop-shadow(0 0 20px rgba(180, 200, 255, 0.7)) brightness(1.2); 
    transform: translateY(-4px); 
  }
  100% { 
    filter: drop-shadow(0 0 5px rgba(200, 210, 230, 0.2)) brightness(1); 
    transform: translateY(0); 
  }
}

.logo-img {
  animation: silverShieldGlow 5s ease-in-out infinite;
}

.nav-logo, .footer-logo-link {
  position: relative;
  display: inline-block;
}

.nav-logo::after, .footer-logo-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 60%, rgba(255,255,255,0) 100%);
  background-size: 300% 100%;
  -webkit-mask-image: url('logo.png');
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('logo.png');
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  animation: sweepShine 5s infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes sweepShine {
  0% { background-position: 150% 0; }
  15% { background-position: -50% 0; }
  100% { background-position: -50% 0; }
}

/* Footer Logo Adjustments */
.footer-logo { height: auto; width: 100%; max-width: 380px; margin: 0 auto; display: block; animation: silverShieldGlow 5s ease-in-out infinite; }





/* --- SPLASH SCREEN --- */
#splash-screen {
  position: fixed;
  inset: 0;
  background-color: #0b1120;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}


.splash-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.splash-content::before {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(180, 210, 255, 0.15) 0%, rgba(180, 210, 255, 0) 50%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

#splash-welcome { color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.3);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInOut 2.5s ease-in-out forwards;
}

.splash-logo { width: 100%; max-width: 450px; opacity: 0; animation: splashLogoAnim 3.2s cubic-bezier(0.8, 0, 0.2, 1) forwards; filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5)); }

@keyframes splashLogoAnim {
  0% { transform: scale(0.9); opacity: 0; filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5)); }
  15% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.6)); }
  80% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.5)); }
  100% { transform: translate(-45vw, -45vh) scale(0.25); opacity: 0; filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5)); }
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-20px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}

body.splash-active {
  overflow: hidden;
}









/* Added Responsive Image Fixes */
@media (max-width: 768px) {
  .splash-logo {
    max-width: 70vw !important;
  }
  .splash-content::before {
    width: 100vw;
    height: 100vw;
  }
  .hero-bg {
    background-position: 50% 50%;
  }
  .service-card-img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

