/* Raffet Boutique - Modern Restyle */
:root {
  --primary: #2c1a3d;
  --secondary: #6a4c93;
  --accent: #c239b3;
  --highlight: #ff006e;
  --background: #ffffff;
  --light-bg: #f8f6ff;
  --text: #2c1a3d;
  --text-secondary: #666666;
  --gray-dark: #2c1a3d;
  --white: #ffffff;
  --navbar-height: 80px;
  --grad-primary: linear-gradient(135deg, #6a4c93, #c239b3);
  --grad-secondary: linear-gradient(135deg, #f8f6ff, #fff5f8);
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(194, 57, 179, 0.1);
    border-bottom: 1px solid rgba(194, 57, 179, 0.08);
    transition: all 0.3s ease;
}

nav:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(194, 57, 179, 0.15);
}

.logo {
    position: relative;
    padding: 0.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 2px 4px rgba(194, 57, 179, 0.2));
}

.logo:hover img {
    transform: scale(1.1) rotateY(15deg);
    filter: drop-shadow(0 4px 12px rgba(194, 57, 179, 0.4));
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    background: rgba(26, 26, 46, 0.5);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(194, 57, 179, 0.15);
    border: 1px solid rgba(194, 57, 179, 0.2);
    backdrop-filter: blur(10px);
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    border-radius: 30px;
    transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active {
    color: white;
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    box-shadow: 0 6px 20px rgba(194, 57, 179, 0.4);
    transform: translateY(-2px);
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(194, 57, 179, 0.1), rgba(106, 76, 147, 0.1));
    position: relative;
    z-index: 1001;
    border: 2px solid rgba(194, 57, 179, 0.2);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, rgba(194, 57, 179, 0.15), rgba(106, 76, 147, 0.15));
    border-color: rgba(194, 57, 179, 0.4);
    box-shadow: 0 8px 24px rgba(194, 57, 179, 0.2);
    transform: scale(1.05);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-btn span:first-child {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.mobile-menu-btn span:last-child {
    top: auto;
    bottom: 12px;
}

/* Active State */
.mobile-menu-btn.active {
    background: linear-gradient(135deg, rgba(194, 57, 179, 0.2), rgba(106, 76, 147, 0.2));
    border-color: var(--accent);
}

.mobile-menu-btn.active span:first-child {
    transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.mobile-menu-btn.active span:last-child {
    transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.95);
    }
    
    /* Mobile Menu Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 246, 255, 0.99) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0;
        box-shadow: -10px 0 40px rgba(57, 27, 73, 0.2);
        gap: 0;
        border-left: 1px solid rgba(194, 57, 179, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Menu Items */
    .nav-links li {
        width: 100%;
        list-style: none;
        position: relative;
        border-bottom: 1px solid rgba(194, 57, 179, 0.08);
    }
    
    .nav-links li:first-child {
        margin-top: var(--navbar-height);
        padding-top: 1rem;
    }
    
    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 1.2rem 2rem;
        display: flex;
        align-items: center;
        color: var(--text);
        font-weight: 500;
        font-size: 1rem;
        position: relative;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(135deg, var(--accent), var(--highlight));
        transform: scaleY(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(194, 57, 179, 0.08);
        padding-left: 2.8rem;
        color: var(--accent);
    }
    
    .nav-links a:hover::before {
        transform: scaleY(1);
    }
    
    .nav-links a.active {
        background: rgba(194, 57, 179, 0.12);
        color: var(--accent);
        font-weight: 600;
    }
    
    .nav-links a.active::before {
        transform: scaleY(1);
    }
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    position: relative;
    padding-top: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 2;
}

.hero-scroll i {
    font-size: 2rem;
    color: #fff;
}

/* Hero Slideshow Styles */
.slideshow-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slideshow-dot.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slideshow-dots {
        bottom: 60px;
    }
}

body {
  background: var(--background);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Outfit', 'Inter', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(194, 57, 179, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(106, 76, 147, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(255, 0, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  animation: animatedBackgroundGradient 8s ease-in-out infinite;
}

@keyframes animatedBackgroundGradient {
  0%, 100% {
    background: 
      radial-gradient(circle at 20% 50%, rgba(194, 57, 179, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(106, 76, 147, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 50% 0%, rgba(255, 0, 110, 0.04) 0%, transparent 50%);
  }
  50% {
    background: 
      radial-gradient(circle at 80% 50%, rgba(194, 57, 179, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(106, 76, 147, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 50% 100%, rgba(255, 0, 110, 0.04) 0%, transparent 50%);
  }
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #2c1a3d;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
  margin-top: 0;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== GLOBAL STYLES ===== */
:root {
    /* Color Scheme */
    --purple: #6a0dad;       /* Primary brand color */
    --purple-light: #8a4dcc; /* Lighter purple */
    --purple-dark: #4b0082;  /* Darker purple */
    --green: #4CAF50;        /* Accent color */
    --green-light: #6fbf73;  /* Lighter green */
    --green-dark: #3a8d3e;   /* Darker green */
    --white: #ffffff;        /* Background/text */
    --off-white: #f9f9f9;    /* Secondary background */
    --gray-light: #f0f0f0;   /* Light borders */
    --gray: #777777;         /* Secondary text */
    --gray-dark: #333333;    /* Primary text */
    --gold: #d4af37;         /* Accent color */
    --error: #ff4757;        /* Error color */

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-purple: 0 4px 20px rgba(106, 13, 173, 0.3);
    --shadow-green: 0 4px 20px rgba(76, 175, 80, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-very-fast: 0.15s ease;
    --transition-normal: 0.4s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s ease;

    /* Z-index layers */
    --z-index-background: -1;
    --z-index-base: 1;
    --z-index-nav: 1000;
    --z-index-overlay: 1099;
    --z-index-sidebar: 1100;
    --z-index-floating: 9999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--gray);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

section {
    padding: var(--space-xl) 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-purple {
    color: var(--purple);
}

.text-green {
    color: var(--green);
}

.text-white {
    color: var(--white);
}

.text-error {
    color: var(--error);
}

.bg-purple {
    background-color: var(--purple);
}

.bg-green {
    background-color: var(--green);
}

.bg-white {
    background-color: var(--white);
}

.bg-off-white {
    background-color: var(--off-white);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.hidden {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--navbar-height);
    position: relative;
    overflow: hidden;
    background-color: var(--off-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(106, 13, 173, 0.1) 0%,
        rgba(76, 175, 80, 0.1) 100%
    );
    z-index: 1;
}

/* Hero variations */
.about-hero {
    background: url('assets/images/about/about.jpg') center/cover no-repeat;
    position: relative;
    min-height: 100vh;
}

.contact-hero {
    background: url('assets/images/contact-bg.jpg') center/cover no-repeat;
    position: relative;
}

.services-hero {
    background: url('assets/images/services-bg.jpg') center/cover no-repeat;
    position: relative;
}

.shop-hero {
    background: url('assets/images/shop-bg.jpg') center/cover no-repeat;
    position: relative;
}

/* Add overlay for static hero sections */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    padding: 2rem;
    z-index: 3;
    position: relative;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1.5s;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-button {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.6);
}

.secondary-button {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.secondary-button:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--purple);
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s, bounce 2s infinite 2s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f9f8ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: var(--z-index-floating);
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.loading-screen.fade-out {
    animation: loadingExit 0.8s ease-in forwards;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.spinner-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

.loading-screen.fade-out .spinner-logo {
    animation: logoExit 0.8s ease-in forwards;
}

.spinner-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid transparent;
    border-top-color: var(--purple);
    border-right-color: var(--green);
    border-radius: 50%;
    animation: spin 2s linear infinite;
    top: 0;
    left: 0;
}

.loading-screen.fade-out .spinner-ring {
    animation: spinExit 0.8s ease-in forwards;
}

.spinner-ring::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    border-bottom-color: var(--purple);
    border-left-color: var(--green);
    border-radius: 50%;
    top: 8px;
    left: 8px;
    animation: spinReverse 3s linear infinite;
}

.loading-screen.fade-out .spinner-ring::before {
    animation: spinReverseExit 0.8s ease-in forwards;
}

.loading-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-secondary);
    margin: 0;
    letter-spacing: 0.5px;
    animation: fadeInOut 2s ease-in-out infinite;
}

.loading-screen.fade-out .loading-text {
    animation: textExit 0.8s ease-in forwards;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes loadingExit {
    0% {
        opacity: 1;
        background: linear-gradient(135deg, #ffffff 0%, #f9f8ff 100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        background: linear-gradient(135deg, #f9f8ff 0%, #ffffff 100%);
    }
}

@keyframes logoExit {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
}

@keyframes spinExit {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) scale(0);
        opacity: 0;
    }
}

@keyframes spinReverseExit {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: rotate(-360deg) scale(0);
        opacity: 0;
    }
}

@keyframes textExit {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(20px) scale(0.8);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-sm) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgba(209, 213, 219, 0.3);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    z-index: var(--z-index-nav);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 0.75rem 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: var(--space-xs) var(--space-sm);
    color: #ffffff;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--purple), var(--purple-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a.active {
    color: var(--purple);
    font-weight: 600;
}

.nav-links a.active::before {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--purple);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(106, 13, 173, 0.1);
}

.hamburger:hover {
    background: rgba(106, 13, 173, 0.2);
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 246, 255, 0.99) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(57, 27, 73, 0.2);
        border-left: 1px solid rgba(194, 57, 179, 0.1);
        padding: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(194, 57, 179, 0.08);
    }

    .nav-links li:first-child {
        margin-top: var(--navbar-height);
        padding-top: 1rem;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }

    .nav-links a {
        width: 100%;
        padding: 1.2rem 2rem;
        text-align: left;
        display: flex;
        align-items: center;
        color: var(--text);
        font-weight: 500;
        font-size: 1rem;
        position: relative;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(135deg, var(--accent), var(--highlight));
        transform: scaleY(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(194, 57, 179, 0.08);
        padding-left: 2.8rem;
        color: var(--accent);
    }

    .nav-links a:hover::before {
        transform: scaleY(1);
    }

    .nav-links a.active {
        background: rgba(194, 57, 179, 0.12);
        color: var(--accent);
        font-weight: 600;
    }

    .nav-links a.active::before {
        transform: scaleY(1);
    }
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-phone {
    margin-right: var(--space-md);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.nav-phone:hover {
    color: var(--purple);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    margin-left: var(--space-md);
    transition: var(--transition-fast);
}

.cart-icon.animate {
    animation: bounce 0.5s;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--green);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ===== MISSION STATEMENT ===== */
.mission-statement {
    padding: var(--space-xl) 0;
    position: relative;
    z-index: var(--z-index-base);
}

.mission-card-3d {
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
    perspective: 1000px;
    cursor: pointer;
}

.mission-card-3d .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.mission-card-3d:hover .card-inner {
    transform: rotateY(180deg);
}

.mission-card-3d .card-front,
.mission-card-3d .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.mission-card-3d .card-front {
    transform: rotateY(0deg);
    background: #6a0dad;
    color: #ffffff;
}

.mission-card-3d .card-front .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.mission-card-3d .card-front h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.mission-card-3d .card-front p {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.mission-card-3d .card-back {
    transform: rotateY(180deg);
    font-size: 0.9rem;
    background: #6a0dad;
    color: #ffffff;
}

.mission-card-3d .card-back h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.mission-card-3d .card-back p {
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.mission-card-3d .card-back ul {
    text-align: left;
    padding-left: 1.2rem;
    margin-top: 0.5rem;
    list-style-type: none;
    color: #ffffff;
}

.mission-card-3d .card-back li {
    margin: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
    color: #ffffff;
}

.mission-card-3d .card-back li:before {
    content: "•";
    position: absolute;
    left: -0.5rem;
    color: var(--color-white);
}

.founder-card-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.founder-card-3d {
    width: 350px;
    height: 450px;
    perspective: 1000px;
    cursor: pointer;
}

.founder-card-3d .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.founder-card-3d:hover .card-inner {
    transform: rotateY(180deg);
}

.founder-card-3d .card-front,
.founder-card-3d .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.founder-card-3d .card-front {
    background: #6a0dad;
    color: #ffffff;
}

.founder-card-3d .founder-image-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.founder-card-3d .founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.founder-card-3d .card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.founder-card-3d .card-front p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.founder-card-3d .hover-hint {
    font-style: italic;
    opacity: 0.8;
    margin-top: 1rem;
}

.founder-card-3d .card-back {
    background: #6a0dad;
    color: #ffffff;
    transform: rotateY(180deg);
}

.founder-card-3d .card-back h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.founder-card-3d .founder-details p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
}

.founder-card-3d .founder-achievements {
    text-align: left;
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.founder-card-3d .founder-achievements li {
    margin: 0.5rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 1.5rem;
}

.founder-card-3d .founder-achievements li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffffff;
}

.founder-card-3d .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.founder-card-3d .social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.founder-card-3d .social-link:hover {
    transform: scale(1.2);
}

.card-front, .card-back {
    backface-visibility: hidden;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-front {
    background: linear-gradient(45deg, var(--purple), var(--green));
    color: var(--white);
    transform: rotateY(0deg);
}

.card-back {
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
}

.mission-card-3d.flipped .card-front {
    transform: rotateY(180deg);
}

.mission-card-3d.flipped .card-back {
    transform: rotateY(360deg);
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    position: relative;
    padding: var(--space-xl) 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--purple), var(--green));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.animate__fadeInRight {
    opacity: 1;
    transform: translateY(0);
}

.timeline-date {
    position: absolute;
    top: 0;
    width: 120px;
    text-align: center;
    padding: var(--space-xs);
    background-color: var(--purple);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: var(--space-md);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 40px);
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--white);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: var(--space-xl) 0;
}

.team-card-3d {
    width: 280px;
    height: 380px;
    perspective: 1000px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
}

.team-card-3d .card-front,
.team-card-3d .card-back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.team-card-3d .card-front {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotateY(0deg);
}

.team-card-3d .card-back {
    background: linear-gradient(45deg, var(--purple), var(--green));
    color: var(--white);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: rotateY(180deg);
}

.team-card-3d.flipped .card-front {
    transform: rotateY(180deg);
}

.team-card-3d.flipped .card-back {
    transform: rotateY(360deg);
}

.product-image {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: var(--space-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
    gap: var(--space-md);
    margin-top: var(--space-lg);
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-md);
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 255, 0.95) 100%);
    border-radius: 20px;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(106, 13, 173, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(106, 13, 173, 0.08);
    backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card.animate__fadeInUp {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(106, 13, 173, 0.15);
    border-color: rgba(106, 13, 173, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 255, 0.98) 100%);
}

.service-card:hover::before {
    opacity: 1;
    top: -25%;
    right: -25%;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 50%, var(--green) 100%);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 24px rgba(106, 13, 173, 0.25);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.15) translateY(-5px) rotate(8deg);
    box-shadow: 0 12px 32px rgba(106, 13, 173, 0.35);
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: var(--space-xl) 0;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(106, 13, 173, 0.2);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 255, 0.95) 100%);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: inherit;
    color: var(--gray-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.08);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--gray);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 600;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--purple);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 255, 0.98) 100%);
    padding: 0 4px;
    left: 12px;
}

.select-label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--gray);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 600;
}

.select-label.selected {
    top: -12px;
    font-size: 0.75rem;
    color: var(--purple);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 255, 0.98) 100%);
    padding: 0 4px;
    left: 12px;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple) 0%, var(--green) 100%);
    transition: var(--transition-normal);
}

.form-group input:focus ~ .underline,
.form-group textarea:focus ~ .underline,
.form-group select:focus ~ .underline {
    width: 100%;
}

.form-submit {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ===== CONTACT INFO CARD ===== */
.contact-info-card {
    perspective: 1000px;
    height: 300px;
}

.info-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
}

.info-card-inner.flipped {
    transform: rotateY(180deg);
}

.info-front, .info-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-back {
    transform: rotateY(180deg);
    background: linear-gradient(45deg, var(--purple-light), var(--green-light));
    color: var(--white);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.contact-method i {
    width: 40px;
    height: 40px;
    background-color: var(--purple-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: var(--space-sm);
    font-size: 1.2rem;
}

.info-back .contact-method i {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-method a {
    color: inherit;
    transition: var(--transition-fast);
}

.contact-method a:hover {
    color: var(--gold);
}

/* ===== BUSINESS HOURS ===== */
.hours-section {
    padding: var(--space-xl) 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.day-card {
    background-color: var(--white);
    padding: var(--space-md);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ===== SHOP CONTROLS ===== */
.shop-controls {
    padding: var(--space-md) 0;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(194, 57, 179, 0.08);
    border: 1px solid rgba(194, 57, 179, 0.1);
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 450px;
}

.search-container::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.95rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.9rem 3rem 0.9rem 2.8rem;
    border: 1.5px solid rgba(194, 57, 179, 0.2);
    border-radius: 18px;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c1a3d;
    font-weight: 500;
}

.search-input::placeholder {
    color: rgba(194, 57, 179, 0.4);
    font-weight: 400;
}

.search-input:hover {
    border-color: rgba(194, 57, 179, 0.4);
    box-shadow: 0 4px 12px rgba(194, 57, 179, 0.12);
}

.search-input:focus {
    outline: none;
    border-color: #c239b3;
    box-shadow: 0 0 0 3px rgba(194, 57, 179, 0.15), 0 8px 16px rgba(194, 57, 179, 0.1);
    background-color: #ffffff;
}

.filter-section {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.filter-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-title i {
    color: var(--purple);
    font-size: 0.9rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border: 1px solid var(--gray-light);
    border-radius: 15px;
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: var(--white);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(194, 57, 179, 0.3);
}

.search-button:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(194, 57, 179, 0.4);
}

.search-button:active {
    transform: translateY(-50%) scale(0.95);
}

.filter-toggle-btn {
    display: none;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: var(--white);
    border: none;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(194, 57, 179, 0.3);
}

.filter-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 57, 179, 0.4);
}

.filter-toggle-btn.active {
    background: linear-gradient(135deg, #a01e95 0%, #d10057 100%);
}

.filter-panel {
    display: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(194, 57, 179, 0.08);
    border: 1px solid rgba(194, 57, 179, 0.1);
    margin-bottom: var(--space-md);
    animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-panel.active {
    display: block;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #2c1a3d;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.filter-title i {
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.filter-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 246, 255, 0.8) 100%);
    color: #6b6b7a;
    border: 1.5px solid rgba(194, 57, 179, 0.15);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(194, 57, 179, 0.05);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover {
    border-color: rgba(194, 57, 179, 0.3);
    box-shadow: 0 4px 16px rgba(194, 57, 179, 0.2);
    transform: translateY(-2px);
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active {
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(194, 57, 179, 0.4);
    transform: translateY(-2px);
}

.price-range {
    padding: var(--space-sm) 0;
}

.price-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--gray-light);
    border-radius: 3px;
    margin: var(--space-sm) 0;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--purple);
    border-radius: 50%;
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
}

.sort-select {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.sort-select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: var(--shadow-purple);
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
    padding: var(--space-xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
    gap: var(--space-lg);
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 var(--space-md);
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 255, 0.95) 100%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(106, 13, 173, 0.08);
    display: flex;
    flex-direction: column;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(106, 13, 173, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.product-card.animate__fadeInUp {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 55px rgba(106, 13, 173, 0.18);
    border-color: rgba(106, 13, 173, 0.15);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover .product-image {
    transform: scale(1.08) rotate(1deg);
}

.product-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: linear-gradient(135deg, var(--green) 0%, #5ec569 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.3);
}

.product-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-details {
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    transition: all 0.4s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    font-weight: 700;
}

.product-card:hover .product-details h3 {
    color: var(--purple);
}

.product-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-weight: 700;
    color: var(--purple);
    font-size: 1.2rem;
}

.product-actions {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.add-to-cart {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: var(--purple);
    color: var(--white);
    border-radius: 15px;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(106, 13, 173, 0.1);
}

.add-to-cart:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

.add-to-cart i {
    margin-right: 0.5rem;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, var(--green) 0%, #5ec569 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.25);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.35);
    background: linear-gradient(135deg, #5ec569 0%, var(--green) 100%);
}

.call-button i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.call-button:hover i {
    transform: scale(1.2);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-xl);
    gap: var(--space-sm);
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--purple);
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pagination-btn:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: var(--space-xs);
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    color: var(--gray-dark);
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.page-btn:hover {
    background: var(--purple-light);
    color: var(--white);
    border-color: var(--purple-light);
}

.page-btn.active {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

/* ===== SHOPPING CART ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
    box-shadow: -10px 0 40px rgba(194, 57, 179, 0.15);
    z-index: var(--z-index-sidebar);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 3px solid #c239b3;
}

.cart-sidebar.active {
    right: 0;
    box-shadow: -10px 0 50px rgba(194, 57, 179, 0.25);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: var(--z-index-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(194, 57, 179, 0.2);
    position: relative;
}

.cart-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff006e, #c239b3, #4CAF50);
}

.cart-header-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cart-header-content h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-header-content h3 i {
    font-size: 1.4rem;
}

.cart-item-count {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.close-cart {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.empty-cart-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #9b9b9b;
    gap: 0.8rem;
}

.empty-cart-message.show {
    display: flex;
}

.empty-cart-message i {
    font-size: 3.5rem;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.empty-cart-message p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #6b6b7a;
}

.empty-cart-message small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1.5px solid rgba(194, 57, 179, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #c239b3 0%, #ff006e 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}



.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(194, 57, 179, 0.1), rgba(76, 175, 80, 0.1));
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c1a3d;
    margin: 0 0 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.cart-item-price {
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cart-item-qty {
    background: rgba(194, 57, 179, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    color: #6b6b7a;
    font-size: 0.85rem;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #ddd;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}



.cart-summary {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(194, 57, 179, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-radius: 12px;
    margin: 0 1rem;
    border: 1px solid rgba(194, 57, 179, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    padding: 0.6rem 0;
    color: #6b6b7a;
}

.summary-row span:last-child {
    font-weight: 600;
    color: #2c1a3d;
}

.summary-row.subtotal,
.summary-row.tax {
    font-size: 0.9rem;
    color: #9b9b9b;
}

.summary-row-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(194, 57, 179, 0.2), transparent);
    margin: 0.8rem 0;
}

.summary-row.total {
    font-size: 1.15rem;
    padding-top: 0.8rem;
}

.total-amount {
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700 !important;
    font-size: 1.2rem;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.checkout-btn {
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(194, 57, 179, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(194, 57, 179, 0.4);
}

.checkout-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.checkout-btn:active::after {
    width: 300px;
    height: 300px;
}

.clear-cart {
    background: white;
    color: #6b6b7a;
    border: 1.5px solid rgba(194, 57, 179, 0.2);
    box-shadow: 0 2px 8px rgba(194, 57, 179, 0.08);
}

.clear-cart:hover {
    border-color: #ff006e;
    color: #ff006e;
    background: rgba(255, 0, 110, 0.05);
    transform: translateY(-2px);
}

.cart-info-banner {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(194, 57, 179, 0.08) 100%);
    border-top: 1px solid rgba(194, 57, 179, 0.1);
    border-radius: 0 0 0 15px;
    display: flex;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #6b6b7a;
}

.cart-info-banner i {
    color: #4CAF50;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cart-info-banner p {
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.cart-items-container::-webkit-scrollbar {
    width: 6px;
}

.cart-items-container::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c239b3 0%, #ff006e 100%);
    border-radius: 3px;
}

.cart-items-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a01e95 0%, #d10057 100%);
}

/* ===== SERVICE CARDS ===== */
.service-card-3d {
    width: 100%;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
    margin-bottom: var(--space-lg);
}

.service-card-3d .info-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card-3d:hover .info-card-inner {
    transform: rotateY(180deg);
}

.service-card-3d .card-front,
.service-card-3d .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-3d .card-front {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
    justify-content: center;
    gap: var(--space-sm);
}

.service-card-3d .card-front h3 {
    color: var(--white);
    margin: var(--space-sm) 0;
}

.service-card-3d .card-back {
    background: var(--white);
    color: var(--gray-dark);
    transform: rotateY(180deg);
    justify-content: flex-start;
    padding: var(--space-lg);
}

.service-card-3d .card-back h3 {
    color: var(--purple);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.service-card-3d .service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card-3d small {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.85rem;
}

.service-card-3d .card-back ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    text-align: center;
    width: 100%;
}

.service-card-3d .card-back li {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.2rem 0;
}

.service-card-3d .card-back li:hover {
    color: var(--purple);
}

.service-card-3d .glow-button {
    width: 85%;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 0.7rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.8rem;
    display: block;
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-top: auto;
    display: block;
    white-space: nowrap;
    overflow: visible;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    position: relative;
    bottom: var(--space-sm);
}

.service-card-3d .glow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.4);
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}

.service-card-3d .glow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.4);
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}

/* ===== SERVICE CATEGORIES ===== */
.service-category {
    margin-bottom: var(--space-xl);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.category-header i {
    font-size: 1.5rem;
    color: var(--purple);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 50%, #2d0051 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #2c1a3d;
    font-weight: 700;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--green) 0%, #5ec569 100%);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.whatsapp-btn:hover {
    background: var(--green-dark);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #3a8d3e 0%, #2e7d34 100%);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4CAF50, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 3rem var(--space-md) 0;
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0; /* image already clipped by parent */
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(106, 13, 173, 0.2));
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(106, 13, 173, 0.3));
}

.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(106, 76, 147, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--white);
    border: 1px solid rgba(76, 175, 80, 0.3);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #6fbf73 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
    border-color: #4CAF50;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ===== ANIMATION CLASSES ===== */
.animate__animated {
    opacity: 0;
    animation-fill-mode: both;
}

.revealed {
    opacity: 1;
    transform: translateY(0) !important;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Scroll reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.glow-button {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 50%, var(--green) 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glow-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glow-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.4);
}

.glow-button:hover::before {
    left: 100%;
}

.glow-button:hover::after {
    opacity: 1;
}

.glow-button:active {
    transform: translateY(-2px) scale(0.98);
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-fast);
    text-align: center;
}

.primary-button {
    background-color: var(--purple);
    color: var(--white);
    box-shadow: var(--shadow-purple);
}

.primary-button:hover {
    background-color: var(--purple-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.4);
}

.secondary-button {
    background-color: var(--white);
    color: var(--purple);
    border: 2px solid var(--purple);
}

.secondary-button:hover {
    background-color: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== PARTICLE BACKGROUND ===== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-index-background);
    pointer-events: none;
}

/* ===== MAP CONTAINER ===== */
.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    margin-top: var(--space-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.1), rgba(76, 175, 80, 0.1));
}

/* ===== CTA SECTION ===== */

/* ===== SLIDESHOW ===== */
.slideshow-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple) 0%, var(--green) 100%);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    animation: expandWidth 0.6s ease forwards;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

.section-title {
    font-family: var(--font-secondary);
    margin-bottom: var(--space-sm);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gray-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title span {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 50%, var(--green) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.section-subtitle {
    color: var(--gray);
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.section-footer {
    text-align: center;
    margin-top: var(--space-lg);
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 50%, var(--green) 100%);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(106, 13, 173, 0.25);
}

.view-all i {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1rem;
}

.view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(106, 13, 173, 0.35);
}

.view-all:hover i {
    transform: translateX(5px);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--purple);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, transparent 50%, var(--purple) 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.service-link i {
    margin-left: var(--space-xs);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    color: var(--white);
    background-position: right bottom;
}

.service-link:hover i {
    transform: translateX(8px);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-container,
    .booking-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .about-image {
        height: 400px;
        order: -1;
    }
    
    .booking-content {
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition-normal);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        padding: var(--space-sm) var(--space-md);
        display: block;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        margin: 0 1rem;
    }

    .cart-sidebar {
        width: 85vw;
        max-width: 350px;
    }

    .cart-header {
        padding: 1.2rem;
    }

    .cart-header-content h3 {
        font-size: 1.15rem;
    }

    .cart-summary {
        margin: 0 0.75rem;
    }

    .cart-actions {
        padding: 1rem 0.75rem;
    }

    .shop-search {
        flex-direction: column;
        gap: 1rem;
    }

    .search-container {
        max-width: 100%;
        width: 100%;
    }

    .filter-panel {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        z-index: var(--z-index-nav);
        border-radius: 0;
    }

    .filter-toggle-btn {
        display: block;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    #particles-js {
        display: none;
    }

    .team-modal-content {
        width: 92vw;
        max-width: 600px;
        max-height: 80vh;
        padding: 2rem 1.5rem;
    }

    .team-modal-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-sm: 0.75rem;
        --space-md: 1.25rem;
        --space-lg: 2rem;
        --space-xl: 2.5rem;
    }
    
    section {
        padding: var(--space-lg) 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col a:hover {
        padding-left: 0;
    }

    .form-row {
        flex-direction: column;
        gap: var(--space-md);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .team-modal-content {
        width: 95vw;
        max-width: 95vw;
        max-height: 90vh;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .team-modal-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-member-card {
        padding: 1.2rem;
    }

    .team-member-image {
        width: 120px;
        height: 120px;
    }

    .team-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ===== CONTACT FORM ===== */
.contact-main {
    padding: var(--space-xl) 0;
    background-color: var(--off-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-xl);
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    margin-bottom: var(--space-lg);
    color: var(--purple);
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: var(--space-md);
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--purple);
    outline: none;
}

.contact-form label {
    position: absolute;
    left: var(--space-sm);
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 0 var(--space-xs);
    color: var(--gray);
    transition: var(--transition-normal);
    pointer-events: none;
}

.contact-form textarea + label {
    top: var(--space-sm);
    transform: none;
}

.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--purple);
}

.contact-form button {
    width: 100%;
    margin-top: var(--space-md);
}

.contact-form .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--purple);
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

.contact-form input:focus ~ .underline,
.contact-form textarea:focus ~ .underline {
    transform: scaleX(1);
}

/* Contact Info Card Styles */
.contact-info-card {
    background: transparent;
    perspective: 1000px;
    width: 100%;
    height: 400px;
    cursor: pointer;
}

.info-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.contact-info-card:hover .info-card-inner {
    transform: rotateY(180deg);
}

.info-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: var(--white);
    border-radius: 20px;
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
}

.card-back {
    transform: rotateY(180deg);
    background: var(--purple);
    color: var(--white);
}

.card-back h3,
.info-front h3 {
    color: inherit;
    text-align: center;
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: 0.4rem;
}

.contact-method i {
    font-size: 1.2rem;
    color: var(--purple);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.card-back .contact-method i {
    color: var(--purple);
}

.contact-method p {
    margin: 0;
    color: inherit;
    font-size: 0.9rem;
}

.contact-method a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.contact-method a:hover {
    opacity: 0.8;
}

.info-front small {
    color: var(--gray);
    font-style: italic;
}

/* Team Modal Styles */
.team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.team-modal.active {
    display: flex;
}

.team-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.team-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(194, 57, 179, 0.2);
    border: 1px solid rgba(194, 57, 179, 0.1);
    max-width: 90vw;
    width: 1000px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem 2rem;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(194, 57, 179, 0.3);
}

.team-modal-close:hover {
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 6px 16px rgba(194, 57, 179, 0.4);
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.booking-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(194, 57, 179, 0.2);
    border: 1px solid rgba(194, 57, 179, 0.1);
    max-width: 90vw;
    width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem 2rem;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(194, 57, 179, 0.3);
}

.booking-modal-close:hover {
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 6px 16px rgba(194, 57, 179, 0.4);
}

.booking-modal-title {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c1a3d;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.booking-form {
    width: 100%;
}

.booking-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.booking-form .form-group {
    flex: 1 1 45%;
    position: relative;
}

.booking-form .form-group input,
.booking-form .form-group select {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 8px 4px;
    background: transparent;
    font-size: 1rem;
    outline: none;
}

.booking-form .form-group label {
    position: absolute;
    top: 8px;
    left: 4px;
    color: #777;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.booking-form .form-group input:focus + label,
.booking-form .form-group input:not(:placeholder-shown) + label,
.booking-form .form-group select:focus + label,
.booking-form .form-group select:not([value=""]) + label {
    top: -16px;
    font-size: 0.75rem;
    color: #c239b3;
}

.booking-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form button:hover {
    transform: translateY(-2px);
}

/* copying scrollbar styles as before */
.booking-modal-content::-webkit-scrollbar {
    width: 8px;
}

.booking-modal-content::-webkit-scrollbar-track {
    background: rgba(194, 57, 179, 0.05);
    border-radius: 10px;
}

.booking-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c239b3 0%, #ff006e 100%);
    border-radius: 10px;
}

.booking-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a01e95 0%, #d10057 100%);
}

.team-modal-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c1a3d;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.team-modal-title .text-purple {
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 246, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1.5px solid rgba(194, 57, 179, 0.15);
    box-shadow: 0 8px 24px rgba(194, 57, 179, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c239b3, #ff006e, #4CAF50);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(194, 57, 179, 0.15);
    border-color: rgba(194, 57, 179, 0.3);
}

.team-member-card:hover::before {
    opacity: 1;
}

.team-member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(194, 57, 179, 0.2);
    box-shadow: 0 8px 16px rgba(194, 57, 179, 0.1);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.08);
}

.team-member-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c1a3d;
    margin: 1rem 0 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0 0.8rem;
}

.team-description {
    font-size: 0.85rem;
    color: #6b6b7a;
    line-height: 1.5;
    margin: 0.8rem 0;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(194, 57, 179, 0.15) 0%, rgba(255, 0, 110, 0.15) 100%);
    color: #c239b3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(194, 57, 179, 0.2);
}

.team-social a:hover {
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(194, 57, 179, 0.3);
}

/* Scrollbar styling for modal */
.team-modal-content::-webkit-scrollbar {
    width: 8px;
}

.team-modal-content::-webkit-scrollbar-track {
    background: rgba(194, 57, 179, 0.05);
    border-radius: 10px;
}

.team-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c239b3 0%, #ff006e 100%);
    border-radius: 10px;
}

.team-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a01e95 0%, #d10057 100%);
}

/* Mission Modal Styles */
.mission-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.mission-modal.active {
    display: flex;
}

.mission-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.mission-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(194, 57, 179, 0.2);
    border: 1px solid rgba(194, 57, 179, 0.1);
    max-width: 90vw;
    width: 1000px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem 2rem;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(194, 57, 179, 0.3);
}

.mission-modal-close:hover {
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 6px 16px rgba(194, 57, 179, 0.4);
}

.mission-modal-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c1a3d;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.mission-modal-title .text-purple {
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-modal-container {
    width: 100%;
}

.mission-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c1a3d;
    margin: 1.5rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

.mission-intro {
    background: linear-gradient(135deg, rgba(194, 57, 179, 0.08) 0%, rgba(76, 175, 80, 0.08) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #c239b3;
    margin-bottom: 2rem;
}

.mission-intro p {
    font-size: 1rem;
    color: #6b6b7a;
    line-height: 1.6;
    margin: 0;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mission-pillar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 246, 255, 0.9) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1.5px solid rgba(194, 57, 179, 0.15);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c239b3, #ff006e, #4CAF50);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(194, 57, 179, 0.15);
    border-color: rgba(194, 57, 179, 0.3);
}

.mission-pillar:hover::before {
    opacity: 1;
}

.pillar-icon {
    font-size: 2.5rem;
    color: #c239b3;
    margin-bottom: 1rem;
}

.mission-pillar h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c1a3d;
    margin: 0.8rem 0;
    font-family: 'Montserrat', sans-serif;
}

.mission-pillar p {
    font-size: 0.85rem;
    color: #6b6b7a;
    line-height: 1.5;
    margin: 0;
}

.mission-values {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(194, 57, 179, 0.08) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-right: 4px solid #4CAF50;
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    color: #6b6b7a;
    line-height: 1.5;
    border-bottom: 1px solid rgba(194, 57, 179, 0.1);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1rem;
}

.values-list strong {
    color: #2c1a3d;
    font-weight: 700;
}

.mission-statement-box {
    background: linear-gradient(135deg, #c239b3 0%, #ff006e 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(194, 57, 179, 0.25);
    margin-top: 2rem;
}

.mission-statement-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.mission-signature {
    margin-top: 1rem !important;
    font-size: 0.95rem !important;
    font-style: normal !important;
    font-weight: 600;
    opacity: 0.9;
}

.mission-modal-content::-webkit-scrollbar {
    width: 8px;
}

.mission-modal-content::-webkit-scrollbar-track {
    background: rgba(194, 57, 179, 0.05);
    border-radius: 10px;
}

.mission-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c239b3 0%, #ff006e 100%);
    border-radius: 10px;
}

.mission-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a01e95 0%, #d10057 100%);
}

/* Responsive Mission Modal */
@media (max-width: 768px) {
    .mission-modal-content {
        width: 95vw;
        max-height: 90vh;
        padding: 2rem 1.5rem;
    }

    .mission-modal-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .mission-pillars {
        grid-template-columns: 1fr;
    }

    .mission-values {
        padding: 1.5rem;
    }

    .mission-statement-box {
        padding: 1.5rem;
    }

    .mission-statement-box p {
        font-size: 0.95rem;
    }
}