/* ===== CSS RESET & BASE STYLES ===== */
/* Universal selector for consistent box model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cosmic Color Palette */
  --color-primary: #8b5cf6;
  --color-primary-dark: #6d28d9;
  --color-primary-light: #a78bfa;
  --color-secondary: #f59e0b;
  --color-secondary-dark: #d97706;
  --color-accent: #ec4899;

  /* Background Colors */
  --color-bg-dark: #0f0f23;
  --color-bg-darker: #050510;
  --color-bg-card: rgba(139, 92, 246, 0.05);
  --color-bg-card-hover: rgba(139, 92, 246, 0.1);

  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #cbd5e1;
  --color-text-muted: #94a3b8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-cosmic: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.4);
  --shadow-glow-gold: 0 0 20px rgba(245, 158, 11, 0.4);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: var(--font-sans);
  background: var(--color-bg-darker);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.app {
  position: relative;
  min-height: 100vh;
}

/* Cosmic Background Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: var(--gradient-cosmic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text-primary);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-primary);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

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

.section {
  padding: var(--spacing-2xl) 0;
}

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-border {
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 2px;
  background: var(--gradient-cosmic);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity var(--transition-normal);
}

.gradient-border:hover::before {
  opacity: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-cosmic);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary-light);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-glow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
}

/* ===== CARDS ===== */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  background: var(--color-bg-card-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-cosmic);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* ===== SELECTION STYLING ===== */
::selection {
  background: var(--color-primary);
  color: white;
}

::-moz-selection {
  background: var(--color-primary);
  color: white;
}

/* ===== FOCUS STYLES ===== */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-normal);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    height: 100px;
    overflow: visible;
}

.header.scrolled {
    background: rgba(15, 15, 35, 0.95);
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-lg);
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    white-space: nowrap;
    height: 70px;
    padding: 0.5rem 1rem;
    margin-left: 4rem;
    border-radius: 15px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(245, 158, 11, 0.1) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
}

.logo:hover {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15) 0%, 
        rgba(245, 158, 11, 0.15) 50%, 
        rgba(236, 72, 153, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.astro-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5CF6 0%, #F59E0B 50%, #EC4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    animation: astroGlow 3s ease-in-out infinite alternate;
}

.sun-symbol {
    position: absolute;
    font-size: 20px;
    color: #F59E0B;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8));
    animation: rotate 20s linear infinite;
}

.moon-symbol {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    color: #E5E7EB;
    filter: drop-shadow(0 0 6px rgba(229, 231, 235, 0.8));
    animation: moonOrbit 15s linear infinite;
}

.star-symbol {
    position: absolute;
    bottom: -3px;
    left: -3px;
    font-size: 10px;
    color: #EC4899;
    filter: drop-shadow(0 0 4px rgba(236, 72, 153, 0.8));
    animation: twinkle 2s ease-in-out infinite alternate;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-main-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6 0%, #F59E0B 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    letter-spacing: 0.5px;
}

.logo-sub-text {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Animations */
@keyframes astroGlow {
    0% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.3); }
}

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

@keyframes moonOrbit {
    0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

@keyframes twinkle {
    0% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.logo-image {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 9999px;
    background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.12), rgba(15, 15, 35, 0.75));
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(139, 92, 246, 0.35);
    overflow: hidden;
}

/* Responsive Logo Styles */
@media (max-width: 1200px) {
    .logo {
        height: 60px;
        padding: 0.4rem 0.8rem;
        margin-left: 3rem;
    }
    
    .logo-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .astro-icon {
        width: 45px;
        height: 45px;
    }
    
    .sun-symbol {
        font-size: 18px;
    }
    
    .logo-main-text {
        font-size: 1.2rem;
    }
    
    .logo-sub-text {
        font-size: 0.65rem;
    }
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

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

.nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    height: 100%;
    overflow: visible;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-cosmic);
    transition: width var(--transition-fast);
}

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

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

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-icon.open {
    transform: rotate(180deg);
}

/* Services Dropdown */
.services-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
    min-width: 320px;
    max-width: 400px;
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(139, 92, 246, 0.2);
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.5) rgba(15, 15, 35, 0.3);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
}

.services-dropdown::-webkit-scrollbar {
    width: 6px;
}

.services-dropdown::-webkit-scrollbar-track {
    background: rgba(15, 15, 35, 0.3);
    border-radius: 10px;
}

.services-dropdown::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 10px;
}

.services-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.65rem var(--spacing-md);
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.875rem;
    white-space: nowrap;
    text-decoration: none;
    border-left: 2px solid transparent;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.15);
    color: var(--color-text-primary);
    transform: translateX(5px);
    border-left-color: var(--color-primary);
}

.dropdown-icon-service {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.5));
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition-fast);
}

.mobile-menu-toggle:hover {
    color: var(--color-primary-light);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .header-container {
        gap: var(--spacing-sm);
        padding: 0.8rem var(--spacing-md);
    }

    .nav {
        gap: var(--spacing-sm);
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .contact-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        gap: 0.35rem;
    }
    
@media (max-width: 1024px) {
    .logo {
        height: 55px;
        padding: 0.3rem 0.6rem;
        margin-left: 2rem;
    }
    
    .logo-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .astro-icon {
        width: 40px;
        height: 40px;
    }
    
    .sun-symbol {
        font-size: 16px;
    }
    
    .moon-symbol {
        font-size: 10px;
    }
    
    .logo-main-text {
        font-size: 1.1rem;
    }
    
    .logo-sub-text {
        font-size: 0.6rem;
    }
}
}

@media (max-width: 1024px) {
    .email-desktop {
        display: none;
    }

    .logo-image {
        width: 42px;
        height: 42px;
    }



    .logo-text {
        font-size: 0.9rem;
    }
    
    .header-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-link, .contact-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: visible;
        height: auto;
        max-height: calc(100vh - 100px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav.mobile-open {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 90%;
        padding: 0.8rem 1rem;
        margin: 0.2rem auto;
        justify-content: space-between;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
    }
    
    .nav-link:hover {
        background: rgba(139, 92, 246, 0.2);
        transform: translateY(-1px);
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(139, 92, 246, 0.3);
        border: none;
        color: white;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 1.3rem;
        cursor: pointer;
        transition: all 0.2s ease;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(139, 92, 246, 0.3);
        transform: scale(1.05);
    }
}
@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem var(--spacing-sm);
    }

    .logo {
        font-size: 1.2rem;
        height: 50px;
        padding: 0.25rem 0.5rem;
        margin-left: 1rem;
    }

    .logo-content {
        gap: 0.5rem;
    }
    
    .logo-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .astro-icon {
        width: 35px;
        height: 35px;
    }
    
    .sun-symbol {
        font-size: 14px;
    }
    
    .moon-symbol {
        font-size: 8px;
    }
    
    .star-symbol {
        font-size: 7px;
    }
    
    .logo-main-text {
        font-size: 1rem;
    }
    
    .logo-sub-text {
        display: none; /* Hide subtitle on mobile for space */
    }

    .logo-image {
        width: 34px;
        height: 34px;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-lg);
        gap: var(--spacing-sm);
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.mobile-open {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        background: rgba(139, 92, 246, 0.05);
    }

    .header-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}.footer {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-2xl);
}

.footer-content {
    padding-bottom: var(--spacing-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

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

.footer-title {
    font-size: 1.5rem;
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.footer-description {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary-light);
    transform: translateX(5px);
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-primary-light);
}

.contact-link svg {
    color: var(--color-primary-light);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}.floating-call-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all var(--transition-fast);
    animation: pulse 2s infinite;
}

.floating-call-button:hover {
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
    transform: translateY(-3px);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(139, 92, 246, 0.7), 0 0 0 10px rgba(139, 92, 246, 0.1);
    }
}

@media (max-width: 768px) {
    .floating-call-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}.solar-system-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    pointer-events: none;
}

/* Sun */
.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #FDB813 0%, #FF6B35 100%);
    border-radius: 50%;
    box-shadow: 0 0 60px 30px rgba(253, 184, 19, 0.4),
        0 0 100px 60px rgba(253, 184, 19, 0.2),
        inset 0 0 20px rgba(255, 107, 53, 0.8);
    animation: pulse-sun 4s ease-in-out infinite;
}

@keyframes pulse-sun {

    0%,
    100% {
        box-shadow: 0 0 60px 30px rgba(253, 184, 19, 0.4),
            0 0 100px 60px rgba(253, 184, 19, 0.2),
            inset 0 0 20px rgba(255, 107, 53, 0.8);
    }

    50% {
        box-shadow: 0 0 80px 40px rgba(253, 184, 19, 0.6),
            0 0 120px 80px rgba(253, 184, 19, 0.3),
            inset 0 0 30px rgba(255, 107, 53, 1);
    }
}

/* Orbits */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-mercury {
    width: 180px;
    height: 180px;
    animation: rotate 8s linear infinite;
}

.orbit-venus {
    width: 260px;
    height: 260px;
    animation: rotate 12s linear infinite;
}

.orbit-earth {
    width: 340px;
    height: 340px;
    animation: rotate 16s linear infinite;
}

.orbit-mars {
    width: 420px;
    height: 420px;
    animation: rotate 20s linear infinite;
}

.orbit-jupiter {
    width: 560px;
    height: 560px;
    animation: rotate 28s linear infinite;
}

.orbit-saturn {
    width: 700px;
    height: 700px;
    animation: rotate 36s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Planets */
.planet {
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mercury {
    width: 8px;
    height: 8px;
    background: #8C7853;
    box-shadow: 0 0 10px rgba(140, 120, 83, 0.8);
}

.venus {
    width: 14px;
    height: 14px;
    background: #FFC649;
    box-shadow: 0 0 15px rgba(255, 198, 73, 0.8);
}

.earth {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #4A90E2 0%, #50C878 100%);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
}

.mars {
    width: 12px;
    height: 12px;
    background: #E27B58;
    box-shadow: 0 0 15px rgba(226, 123, 88, 0.8);
}

.jupiter {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #C88B3A 0%, #E3A857 50%, #C88B3A 100%);
    box-shadow: 0 0 30px rgba(200, 139, 58, 0.8);
}

.saturn {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FAD5A5 0%, #E8C79A 100%);
    box-shadow: 0 0 25px rgba(250, 213, 165, 0.8);
    position: relative;
}

.saturn-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(250, 213, 165, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
}

/* Stars */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 3s ease-in-out infinite;
    opacity: 0.5;
}

.stars-2 {
    background-image:
        radial-gradient(1px 1px at 40px 60px, white, transparent),
        radial-gradient(1px 1px at 110px 90px, white, transparent),
        radial-gradient(2px 2px at 150px 30px, white, transparent);
    animation: twinkle 4s ease-in-out infinite reverse;
}

.stars-3 {
    background-image:
        radial-gradient(1px 1px at 70px 40px, white, transparent),
        radial-gradient(2px 2px at 100px 120px, white, transparent),
        radial-gradient(1px 1px at 170px 70px, white, transparent);
    animation: twinkle 5s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .sun {
        width: 50px;
        height: 50px;
    }

    .orbit-mercury {
        width: 120px;
        height: 120px;
    }

    .orbit-venus {
        width: 180px;
        height: 180px;
    }

    .orbit-earth {
        width: 240px;
        height: 240px;
    }

    .orbit-mars {
        width: 300px;
        height: 300px;
    }

    .orbit-jupiter {
        width: 380px;
        height: 380px;
    }

    .orbit-saturn {
        width: 460px;
        height: 460px;
    }

    .mercury {
        width: 6px;
        height: 6px;
    }

    .venus {
        width: 10px;
        height: 10px;
    }

    .earth {
        width: 12px;
        height: 12px;
    }

    .mars {
        width: 8px;
        height: 8px;
    }

    .jupiter {
        width: 22px;
        height: 22px;
    }

    .saturn {
        width: 20px;
        height: 20px;
    }

    .saturn-ring {
        width: 35px;
        height: 35px;
    }
}.cursor-star {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(139, 92, 246, 0.8) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(236, 72, 153, 0.4);
    animation: star-fade 1s ease-out forwards;
    transform: translate(-50%, -50%);
}

@keyframes star-fade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.2) translateY(-30px);
    }
}.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(236, 72, 153, 0.4), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(245, 158, 11, 0.4), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(236, 72, 153, 0.3), transparent);
    background-size: 200px 200px, 300px 300px, 250px 250px, 350px 350px, 280px 280px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 200px 150px;
    animation: float 20s linear infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    padding: var(--spacing-2xl) var(--spacing-md);
}

.hero-text {
    z-index: 1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.25rem 3rem;
    font-weight: 600;
}


.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cosmic-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-cosmic);
    opacity: 0.2;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

.astro-symbol {
    font-size: 15rem;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }

    .astro-symbol {
        font-size: 10rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 90vh;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 250px;
        height: 250px;
    }

    .astro-symbol {
        font-size: 8rem;
    }
}.service-card {
    display: block;
    text-decoration: none;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card.gradient-border {
    background: transparent;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    filter: brightness(0.5) contrast(1.1);
    background-color: transparent;
    background-blend-mode: multiply;
    transform: scale(1.05);
    z-index: 0;
    transition: all var(--transition-normal);
}

.service-card:hover .service-card-bg {
    opacity: 0.8;
    transform: scale(1.1);
    filter: brightness(0.6) contrast(1.2);
}

.service-card-content {
    padding: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 35, 0.7) 0%,
        rgba(15, 15, 35, 0.75) 50%,
        rgba(10, 10, 25, 0.8) 100%
    );
    backdrop-filter: blur(1px);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.8));
}

.service-icon-image {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 9999px;
    object-fit: cover;
}

.service-title {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-display);
}

.service-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.service-link-arrow {
    font-size: 1.5rem;
    color: var(--color-primary-light);
    margin-top: var(--spacing-sm);
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link-arrow {
    transform: translateX(10px);
}

@media (max-width: 640px) {
    .service-icon {
        font-size: 3rem;
    }

    .service-title {
        font-size: 1.3rem;
    }
}.stats-section {
    background: rgba(139, 92, 246, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    padding: var(--spacing-xl);
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}.testimonials-section {
    background: var(--color-bg-darker);
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-card {
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-lg);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-style: italic;
}

.testimonial-author {
    margin-top: var(--spacing-md);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.author-location {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--color-primary-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.2rem;
}

.carousel-button:hover {
    background: rgba(139, 92, 246, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--color-primary-light);
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 50px;
    }

    .testimonial-card {
        padding: var(--spacing-lg);
        min-height: 400px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .testimonials-carousel {
        padding: 0 40px;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
    }
}.home-page {
    min-height: 100vh;
}

/* Services Section */
.services-section {
    background: var(--color-bg-dark);
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

/* Divine Blessings Section */
.divine-blessings-section {
    background: var(--color-bg-darker);
}

.deities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.deity-card {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.deity-author {
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.deity-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.deity-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    transition: all var(--transition-normal);
}

.deity-card:hover .deity-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

.deity-card h3 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deity-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.deity-contact {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-weight: 600;
}

.contact-phone,
.contact-email {
    color: #8be0ff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-email {
    color: #f472b6;
}

.contact-phone:hover {
    color: #7dd3fc;
}

.contact-email:hover {
    color: #fb7185;
}


/* About Section */
.about-section {
    background: var(--color-bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.astro-icon {
    font-size: 12rem;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.6));
    animation: float 4s ease-in-out infinite;
}

.about-content h2 {
    margin-bottom: var(--spacing-md);
}

.about-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-content .btn {
    margin-top: var(--spacing-md);
}

/* Black Magic Section */
.black-magic-section {
    background: var(--color-bg-dark);
}

.black-magic-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
}

.black-magic-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.1rem;
}

.black-magic-content strong {
    color: var(--color-primary-light);
    font-size: 1.2rem;
}

/* Locations Section */
.locations-section {
    background: var(--color-bg-darker);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.location-card {
    display: block;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
}

.location-card h3 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.location-card p {
    color: var(--color-text-muted);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .deities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .astro-icon {
        font-size: 8rem;
    }
}

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

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

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

    .black-magic-content {
        padding: var(--spacing-lg);
    }
}.service-detail-page {
    min-height: 100vh;
    padding-top: 80px;
}

.service-hero {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary-light);
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-fast);
}

.back-link:hover {
    transform: translateX(-5px);
    color: var(--color-secondary);
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-icon {
    font-size: 6rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
}

.service-hero-description {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-md);
}

.service-content {
    padding: 4rem 0;
}

.service-image-container {
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.service-detail-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.service-main-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.content-card {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.content-card h2 {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.content-card p {
    line-height: 1.8;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.benefits-list svg {
    color: var(--color-secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.sidebar-card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
}

.sidebar-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.sidebar-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.contact-buttons .btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
}

.contact-info p {
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.why-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.why-choose-list li {
    color: var(--color-text-secondary);
    font-size: 1rem;
    padding: var(--spacing-xs) 0;
}

@media (max-width: 968px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
    }

    .service-hero-icon {
        font-size: 4rem;
    }

    .service-image-container {
        min-height: 300px;
    }

    .service-detail-image {
        max-height: 400px;
    }
}.location-page {
    min-height: 100vh;
    padding-top: 80px;
}

.location-hero {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.location-hero-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.6));
}

.location-hero-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-md);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.location-info {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.location-info h2 {
    margin-bottom: var(--spacing-lg);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

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

.info-item svg {
    color: var(--color-primary-light);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--color-text-secondary);
    margin: 0;
}

.info-item a {
    color: var(--color-primary-light);
    transition: color var(--transition-fast);
}

.info-item a:hover {
    color: var(--color-secondary);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-buttons .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-available h2 {
    margin-bottom: var(--spacing-md);
}

.services-available p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.services-list li a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    background: rgba(139, 92, 246, 0.05);
    transition: all var(--transition-fast);
    color: var(--color-text-secondary);
}

.services-list li a:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateX(5px);
    color: var(--color-primary-light);
}

.view-all-link {
    display: inline-block;
    color: var(--color-primary-light);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.view-all-link:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}.contact-page {
    min-height: 100vh;
    padding-top: 80px;
}

.contact-hero {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-md);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
}

.contact-form-card,
.contact-info-card {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.contact-form-card h2,
.contact-info-card h2 {
    margin-bottom: var(--spacing-lg);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.btn-block {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.contact-info-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

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

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.method-details h3 {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.method-details a {
    color: var(--color-primary-light);
    transition: color var(--transition-fast);
}

.method-details a:hover {
    color: var(--color-secondary);
}

.method-details p {
    color: var(--color-text-secondary);
    margin: 0;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.quick-contact-buttons .btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* Form message styles */
.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-md);
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Loading state for button */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}.about-page {
    min-height: 100vh;
    padding-top: 80px;
}

.about-hero {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
}

.about-hero-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-md);
}

.about-story {
    background: var(--color-bg-dark);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.about-text {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-expertise {
    background: var(--color-bg-darker);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.expertise-card {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.expertise-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.expertise-card h3 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.expertise-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.about-philosophy {
    background: var(--color-bg-dark);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.philosophy-content h2 {
    margin-bottom: var(--spacing-lg);
}

.philosophy-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

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

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.value-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.value-item span:last-child {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }

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

    .philosophy-values {
        gap: var(--spacing-lg);
    }
}