/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #9d7bce;
    --primary-light: #c5b2e0;
    --primary-dark: #7a5aa3;
    --secondary-color: #ffb6c1;
    --secondary-light: #ffd7dd;
    --accent-color: #ffd166;
    --accent-light: #ffe9a6;
    
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    
    --bg-light: #f9f7fe;
    --bg-white: #ffffff;
    --bg-dark: #2a2438;
    
    --shadow-sm: 0 4px 12px rgba(157, 123, 206, 0.08);
    --shadow-md: 0 8px 24px rgba(157, 123, 206, 0.12);
    --shadow-lg: 0 16px 48px rgba(157, 123, 206, 0.16);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-round: 50%;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(157, 123, 206, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.flower-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    animation: rotateFlower 3s linear infinite;
}

.petal {
    position: absolute;
    width: 20px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary-color));
    border-radius: 50% 50% 0 0;
    transform-origin: bottom center;
}

.petal:nth-child(1) { transform: rotate(0deg) translateY(-15px); }
.petal:nth-child(2) { transform: rotate(72deg) translateY(-15px); }
.petal:nth-child(3) { transform: rotate(144deg) translateY(-15px); }
.petal:nth-child(4) { transform: rotate(216deg) translateY(-15px); }
.petal:nth-child(5) { transform: rotate(288deg) translateY(-15px); }

@keyframes rotateFlower {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-screen p {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(249, 247, 254, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-highlight {
    color: var(--primary-color);
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.logo:hover .logo-highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    font-weight: 400;
}

.dropdown-content a:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    position: relative;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-round);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    background: none;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-link {
    margin-bottom: 10px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-newsletter-text {
    margin-bottom: 15px;
    opacity: 0.8;
}

.input-group {
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: var(--bg-white);
    font-family: var(--font-body);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 0 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: var(--secondary-color);
    margin: 0 5px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius-round);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-dropdown .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 20px;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-content {
        display: block;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    font-size: 0.9em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-white {
    background-color: white;
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(157, 123, 206, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(157, 123, 206, 0); }
    100% { box-shadow: 0 0 0 0 rgba(157, 123, 206, 0); }
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: var(--radius-md);
    z-index: -1;
    animation: glowing 3s linear infinite;
    background-size: 400%;
    filter: blur(2px);
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f5f1ff 100%);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-light), var(--secondary-light));
    opacity: 0.3;
    filter: blur(40px);
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    animation-delay: 10s;
}

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

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

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

.hero-text {
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.highlight-word {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    opacity: 0.4;
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

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

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .image-container {
    transform: perspective(1000px) rotateY(0deg);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover .main-image img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: 30px;
    right: -15px;
    background: white;
    padding: 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

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

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

.badge-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    display: none;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background-color: white;
    padding: 60px 0;
    border-radius: var(--radius-xl);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background-color: var(--primary-light);
    color: white;
    transform: rotateY(180deg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== FEATURED EXPERIENCES ===== */
.featured-section {
    padding: 100px 0;
    position: relative;
}

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

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

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Flip Card */
.flip-card {
    height: 400px;
    perspective: 1000px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.flip-card-front {
    background-color: white;
    color: var(--text-dark);
}

.flip-card-back {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.flip-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 25px;
    text-align: left;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    min-height: 40px;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

.back-content h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--accent-color);
}

.card-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

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

/* ===== PARALLAX BANNER ===== */
.parallax-banner {
    height: 500px;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.parallax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1513530534585-c7b1394c6d51?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.7);
    z-index: -1;
}

.parallax-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.banner-text {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.banner-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
}

.banner-title::after {
    background: linear-gradient(to right, white, var(--secondary-color));
    left: 50%;
    transform: translateX(-50%);
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100px;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-light), var(--secondary-color));
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    width: 100px;
    text-align: center;
}

.step-content {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-left: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.step-description {
    color: var(--text-light);
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: white;
}

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

.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-prev,
.carousel-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    border-radius: var(--radius-xl);
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
}

.cta-title::after {
    display: none;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: white;
    border-radius: var(--radius-xl);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    transform: translateY(50px);
    transition: transform 0.5s ease;
    box-shadow: var(--shadow-lg);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

/* ===== ANIMATION CLASSES ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-animation="fade-up"].animated {
    transform: translateY(0);
}

.animate-on-scroll[data-animation="fade-left"].animated {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="fade-right"].animated {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="flip"].animated {
    transform: rotateY(0);
}

.animate-on-scroll[data-animation="flip"] {
    transform: rotateY(90deg);
}

.animate-on-scroll[data-animation="zoom-in"].animated {
    transform: scale(1);
}

.animate-on-scroll[data-animation="zoom-in"] {
    transform: scale(0.8);
}

.animate-on-scroll[data-animation="slide-right"].animated {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="slide-right"] {
    transform: translateX(-100px);
}

.animate-on-scroll[data-animation="slide-left"].animated {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="slide-left"] {
    transform: translateX(100px);
}

.animate-on-scroll[data-animation="slide-up"].animated {
    transform: translateY(0);
}

.animate-on-scroll[data-animation="slide-up"] {
    transform: translateY(100px);
}

.animate-on-scroll[data-animation="scale"].animated {
    transform: scale(1);
}

.animate-on-scroll[data-animation="scale"] {
    transform: scale(0.5);
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        width: auto;
        margin-bottom: 20px;
    }
    
    .step-content {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flip-card {
        height: 350px;
    }
    
    .flip-card-back {
        padding: 20px;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .parallax-banner {
        height: 400px;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .flip-card {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(135deg, #f9f7fe 0%, #f0ebff 100%);
}

.experiences-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-search {
    max-width: 600px;
    width: 100%;
    margin: 30px 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--radius-xl);
    padding: 5px;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.search-box i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 15px;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 15px 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    outline: none;
}
input{
    outline: none !important;
}
.search-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-bubble {
    background: white;
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: floatBubble 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.stat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.stat-bubble:nth-child(2) {
    animation-delay: 2s;
}

.stat-bubble:nth-child(3) {
    animation-delay: 4s;
}

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

.bubble-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.bubble-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FILTER SECTION ===== */
.filter-section {
    background-color: white;
    padding: 60px 0 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.filter-header h2 {
    margin-bottom: 0;
}

.filter-header h2::after {
    left: 0;
}

.filter-reset {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.filter-reset:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.filter-category:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.filter-category.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.filter-category.active .category-icon {
    background-color: white;
    color: var(--primary-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.filter-category span {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.filter-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.price-filter h3,
.duration-filter h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-slider {
    position: relative;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    margin: 30px 0;
}

.slider-track {
    position: absolute;
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    border-radius: 2px;
}

.price-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
    cursor: pointer;
    pointer-events: all;
    box-shadow: var(--shadow-sm);
}

.price-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
    cursor: pointer;
    pointer-events: all;
    box-shadow: var(--shadow-sm);
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-dark);
}

.duration-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.duration-option {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duration-option:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.duration-option.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 50px;
    align-items: center;
}

.active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.active-filter-remove {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.active-filter-remove:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* ===== EXPERIENCES GRID SECTION ===== */
.experiences-grid-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.grid-header h2 {
    margin-bottom: 0;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 10px 15px;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    background: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 123, 206, 0.1);
}

.experiences-loading {
    text-align: center;
    padding: 60px 0;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.loading-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: loadingDot 1.4s ease-in-out infinite;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadingDot {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-15px); }
}

.experiences-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.experience-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: cardAppear 0.6s forwards;
}

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

.experience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.experience-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.experience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-card-image img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.experience-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.experience-favorite:hover,
.experience-favorite.active {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.experience-card-content {
    padding: 25px;
}

.experience-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.experience-card-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.experience-card-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.experience-card-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

.experience-card-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.experience-card-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.experience-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.experience-feature i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.experience-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.rating-stars {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.rating-value {
    font-weight: 600;
    color: var(--text-dark);
}

.rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.experience-card-actions {
    display: flex;
    gap: 10px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-results-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.no-results h3 {
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

#loadMoreBtn {
    transition: all 0.3s ease;
}

#loadMoreBtn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

#loadMoreBtn.loading i {
    animation: spin 1s linear infinite;
}

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

/* ===== CATEGORIES INFO ===== */
.categories-info {
    padding: 100px 0;
    background-color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    height: 350px;
    perspective: 1000px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.category-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.category-card:hover .category-card-inner {
    transform: rotateY(180deg);
}

.category-card-front,
.category-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.category-card-front {
    background-color: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.category-card-back {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.category-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.category-card-back h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.category-card-back p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.category-card-back ul {
    list-style: none;
    text-align: left;
}

.category-card-back li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.category-card-back li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===== EXPERIENCES CTA ===== */
.experiences-cta {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-image {
    height: 100%;
    min-height: 400px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-advanced {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
    }
    
    .cta-image {
        order: -1;
        min-height: 300px;
    }
    
    .grid-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-options {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .experiences-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .filter-categories {
        justify-content: flex-start;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .experience-card-actions {
        flex-direction: column;
    }
    
    .experience-card-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-search {
        flex-direction: column;
    }
    
    .search-box {
        flex-direction: column;
        padding: 15px;
    }
    
    .search-box input {
        width: 100%;
        margin: 15px 0;
        padding: 10px;
        border: 1px solid var(--bg-light);
        border-radius: var(--radius-md);
    }
    
    .search-btn {
        width: 100%;
    }
    
    .experiences-container {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 30px;
    }
}
/* Add to existing CSS */
.no-experiences {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.no-experiences p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.experiences-loading {
    display: none;
    text-align: center;
    padding: 60px 0;
    grid-column: 1 / -1;
}
/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* About Hero */
.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero .hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about-hero .stat-item {
    text-align: center;
}

.about-hero .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-hero .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero .image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-hero .image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.floating-quote {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: floatQuote 6s ease-in-out infinite;
}

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

.quote-content i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    display: block;
}

.quote-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    transform: rotateY(180deg) scale(1.1);
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-light));
    transform: translateX(-50%);
    z-index: 1;
}

.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height 2s ease;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.marker-dot {
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
    z-index: 4;
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-dot {
    transform: scale(1.3);
    background-color: var(--primary-color);
    box-shadow: 0 0 0 8px rgba(157, 123, 206, 0.2);
}

.marker-year {
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    width: calc(50% - 60px);
    padding: 0 30px;
}

.timeline-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item:hover .timeline-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

.timeline-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 20px;
}

.timeline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-card:hover .timeline-image img {
    transform: scale(1.05);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.team-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.team-filter {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-filter:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.team-filter.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: cardAppear 0.6s forwards;
}

.team-member:nth-child(2) { animation-delay: 0.1s; }
.team-member:nth-child(3) { animation-delay: 0.2s; }
.team-member:nth-child(4) { animation-delay: 0.3s; }
.team-member:nth-child(5) { animation-delay: 0.4s; }
.team-member:nth-child(6) { animation-delay: 0.5s; }

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

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.team-member-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.team-member:hover .team-member-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.team-member-content {
    padding: 25px;
    text-align: center;
}

.team-member-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.team-member-department {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.team-member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-member-btn {
    width: 100%;
    padding: 10px;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: white;
}

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

.values-text h2 {
    margin-bottom: 20px;
}

.values-text > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.values-image {
    position: relative;
}

.values-image .image-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.values-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.impact-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.impact-stat {
    text-align: center;
    flex: 1;
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.impact-label {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    border-radius: var(--radius-xl);
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.about-cta .cta-content {
    position: relative;
    z-index: 1;
}

.about-cta .cta-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
}

.about-cta .cta-title::after {
    display: none;
}

.about-cta .cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Team Modal Styles */
.team-modal .modal-content {
    max-width: 900px;
}

.team-member-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.team-member-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-member-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.team-member-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.team-member-department-detail {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.team-member-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.team-member-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

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

.team-stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.team-member-quote {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    position: relative;
}

.team-member-quote i {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

.team-member-quote p {
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .about-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-hero .hero-stats {
        justify-content: center;
    }
    
    .values-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 60px;
    }
    
    .timeline-content {
        width: 100%;
        padding: 0;
        margin-top: 40px;
    }
    
    .timeline-marker {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .team-member-detail {
        grid-template-columns: 1fr;
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .impact-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .team-member-stats {
        grid-template-columns: 1fr;
    }
    
    .about-cta .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .team-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .team-filter {
        width: 100%;
        max-width: 250px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-quote {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
    }
}
/* ===== GIFTS PAGE SPECIFIC STYLES ===== */

/* Gifts Hero */
.gifts-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gifts-hero .hero-features {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.gifts-hero .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    font-size: 0.9rem;
}

.gifts-hero .feature i {
    color: var(--primary-color);
}

.gifts-hero .hero-search {
    max-width: 500px;
    margin-top: 30px;
}

.gifts-hero .image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.gifts-hero .image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.gifts-hero .image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

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

.badge-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Collections Section */
.collections-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.collections-nav {
    display: flex;
    gap: 15px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.collection-filter {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collection-filter:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.collection-filter.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.price-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 20px;
}

.price-filter-container .price-filter {
    flex: 1;
    min-width: 300px;
}

.price-filter-container .sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Gifts Grid */
.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gift-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: cardAppear 0.6s forwards;
}

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

.gift-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gift-card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.gift-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gift-card:hover .gift-card-image img {
    transform: scale(1.1);
}

.gift-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.gift-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.gift-wishlist:hover,
.gift-wishlist.active {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.gift-card-content {
    padding: 25px;
}

.gift-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.gift-card-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    flex: 1;
}

.gift-card-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 10px;
}

.gift-card-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    min-height: 60px;
}

.gift-card-collection {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.gift-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.gift-card-actions {
    display: flex;
    gap: 10px;
}

.gift-card-actions .btn {
    flex: 1;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.gifts-loading {
    display: none;
    text-align: center;
    padding: 60px 0;
    grid-column: 1 / -1;
}

/* Bundles Section */
.bundles-section {
    padding: 100px 0;
    background-color: white;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.bundle-card {
    background: linear-gradient(135deg, #f9f7fe 0%, #f5f1ff 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

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

.bundle-header {
    padding: 30px 30px 20px;
    background: white;
    position: relative;
}

.bundle-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.bundle-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.bundle-description {
    color: var(--text-light);
    font-size: 1rem;
}

.bundle-content {
    padding: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.bundle-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bundle-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.bundle-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.item-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.bundle-pricing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.price-comparison {
    margin-bottom: 10px;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.bundle-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.savings {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.add-bundle-btn {
    width: 100%;
}

/* Guide Section */
.guide-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.guide-text h2 {
    margin-bottom: 20px;
}

.guide-text > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.guide-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.guide-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.guide-feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.guide-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.guide-feature p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.guide-image {
    position: relative;
}

.guide-image .image-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.guide-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.guide-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: white;
}

.guarantee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.guarantee-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.guarantee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.guarantee-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Gifts CTA */
.gifts-cta {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.gifts-cta .cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gifts-cta .cta-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gifts-cta .cta-content h2 {
    margin-bottom: 20px;
}

.gifts-cta .cta-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.gifts-cta .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gifts-cta .cta-image {
    height: 100%;
    min-height: 400px;
}

.gifts-cta .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-sidebar.active {
    opacity: 1;
    visibility: visible;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.cart-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-lg);
}

.cart-sidebar.active .cart-content {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--bg-light);
}

.cart-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.cart-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    display: block;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-light);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: var(--primary-color);
}

.cart-summary {
    padding: 25px;
    border-top: 1px solid var(--bg-light);
    background: var(--bg-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    border-top: 2px solid var(--primary-light);
    padding-top: 15px;
    margin-top: 15px;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 15px;
}

.continue-btn {
    width: 100%;
    text-align: center;
}

/* Gift Modal Styles */
.gift-modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gift-modal-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gift-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gift-main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gift-thumbnails {
    display: flex;
    gap: 10px;
}

.gift-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gift-thumbnail.active {
    border-color: var(--primary-color);
}

.gift-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gift-modal-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.gift-modal-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.gift-modal-collection {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.gift-modal-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.gift-modal-options {
    margin-bottom: 25px;
}

.gift-option {
    margin-bottom: 15px;
}

.gift-option label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.gift-option select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
}

.gift-modal-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.gift-modal-quantity label {
    font-weight: 500;
    color: var(--text-dark);
}

.gift-modal-actions {
    display: flex;
    gap: 15px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bundle-pricing {
        order: -1;
    }
}

@media (max-width: 992px) {
    .gifts-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .gifts-hero .hero-features {
        justify-content: center;
    }
    
    .gifts-hero .hero-search {
        margin-left: auto;
        margin-right: auto;
    }
    
    .guide-content {
        grid-template-columns: 1fr;
    }
    
    .gifts-cta .cta-card {
        grid-template-columns: 1fr;
    }
    
    .gifts-cta .cta-image {
        order: -1;
        min-height: 300px;
    }
    
    .gift-modal-details {
        grid-template-columns: 1fr;
    }
    
    .cart-content {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .collections-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .collection-filter {
        width: 100%;
        max-width: 250px;
    }
    
    .price-filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .gifts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gift-card-actions {
        flex-direction: column;
    }
    
    .gifts-cta .cta-buttons {
        flex-direction: column;
    }
    
    .gifts-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cart-content {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .gifts-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .gift-modal-actions {
        flex-direction: column;
    }
    
    .gift-modal-actions .btn {
        width: 100%;
    }
}
/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Contact Hero */
.contact-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-hero .hero-features {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.contact-hero .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-hero .feature i {
    color: var(--primary-color);
}

.contact-hero .image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-hero .image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

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

/* Contact Methods */
.contact-methods {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.method-card:hover::before {
    transform: scaleX(1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.method-card:hover .method-icon {
    transform: rotateY(180deg) scale(1.1);
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.method-description {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.method-details {
    text-align: left;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.phone-number,
.email-address,
.chat-status,
.consultation-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.phone-number i,
.email-address i,
.consultation-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.phone-number a,
.email-address a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number a:hover,
.email-address a:hover {
    color: var(--primary-color);
}

.hours,
.response-time,
.wait-time,
.availability {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 10px;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}

.status-indicator.online {
    background: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-weight: 600;
    color: var(--text-dark);
}

.method-card .btn {
    width: 100%;
    margin-top: 10px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: white;
}

.contact-wrapper {

}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    position: relative;
}
.contact-form:after{
    content: "Thank you for submitting the form.";
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 0, .5);
    border-radius: 20px;
    font-size: 40px;
    color: #fff;
    font-weight: 700;

}
.contact-form.active:after{
    display: flex;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 123, 206, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
}

.form-error {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.form-checkbox label {
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.submit-btn {
    min-width: 200px;
}

.form-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


@media screen and (max-width: 992px){
 .contact-hero .hero-content{
    display: block;
 }
}
@media screen and (max-width: 574px){
    .contact-form{
        padding: 15px;
    }
}

/* ===== VYTHERION CUSTOM ADDITIONS ===== */

.bg-white-section {
    background-color: var(--bg-white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-panel {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

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

.contact-form-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-container .form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-container .form-header p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-image-wrapper img {
    object-fit: cover;
    max-height: 400px;
}

#features .experiences-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    #features .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    #features .experiences-grid {
        grid-template-columns: 1fr;
    }
}
