* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    resize: none;
}

:root {
    /* Enhanced Mineral Green Palette */
    --mineral-green: #3d6b5c;
    --mineral-green-light: #4d8570;
    --mineral-green-dark: #2d5548;
    --mineral-green-pale: #e8f3ef;
    --off-white: #faf9f7;
    --off-white-dark: #f5f4f2;
    --cream: #f0ede8;
    --accent-gold: #c9a961;
    
    /* Text Colors */
    --text-dark: #2a2a2a;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    
    /* Functional Colors */
    --white: #ffffff;
    --success: #4d8570;
    --warning: #c9a961;
    --error: #c97361;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(61, 107, 92, 0.12);
    --shadow-medium: 0 15px 50px rgba(61, 107, 92, 0.18);
    --shadow-intense: 0 20px 60px rgba(61, 107, 92, 0.25);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: all 0.2s ease;
    
    /* Layout */
    --width-lg: 85%;
    --width-sm: 95%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    height: 0.5rem;
    width: 0.5rem;
}

::-webkit-scrollbar-track {
    background: var(--mineral-green-pale);
}

::-webkit-scrollbar-thumb {
    background: var(--mineral-green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mineral-green-dark);
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

span {
    font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

h5 {
    font-size: 1.1rem;
    font-weight: 500;
}

.container {
    margin: 0 auto;
    width: var(--width-lg);
    max-width: 1400px;
}

section {
    padding: 6rem 0;
}

.title {
    text-align: center;
    margin-bottom: 4rem;
}

.title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--mineral-green);
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--mineral-green), var(--accent-gold));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--mineral-green);
    text-align: center;
    margin-bottom: 1rem;
}

.btn {
    padding: 1rem 2.5rem;
    background: var(--mineral-green);
    color: var(--off-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(61, 107, 92, 0.2);
}

.btn:hover {
    background: var(--mineral-green-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(61, 107, 92, 0.3);
}

/* ======= Navbar ======= */
nav {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(61, 107, 92, 0.08);
    transition: var(--transition-fast);
}

nav.scrolled {
    background: rgba(250, 249, 247, 0.98);
    box-shadow: 0 4px 30px rgba(61, 107, 92, 0.15);
}

.logo {
    color: var(--mineral-green);
    padding: 1.2rem 0;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo div:first-child {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo div:first-child span {
    font-weight: 800;
    color: var(--mineral-green-light);
}

.logo div:last-child {
    line-height: 1;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.2rem;
    color: var(--text-medium);
    font-family: 'Jost', sans-serif;
    margin-top: 4px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .navlist {
    display: flex;
    gap: 2rem;
}

nav .navlist li {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
}

nav .navlist li a {
    color: var(--text-dark);
    padding: 0.8rem 1.2rem;
    position: relative;
    font-weight: 600;
    transition: var(--transition-fast);
}

nav .navlist li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--mineral-green);
    transition: width 0.3s ease;
}

nav .navlist li a:hover,
nav .navlist li a.active {
    color: var(--mineral-green);
}

nav .navlist li a:hover::after,
nav .navlist li a.active::after {
    width: 80%;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icons .lnr {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.nav-icons .lnr:hover {
    color: var(--mineral-green);
    transform: translateY(-2px);
}

/* ======= Home Section with Map Background ======= */
.home {
    padding: 0;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(61, 107, 92, 0.85) 0%,
        rgba(77, 133, 112, 0.75) 50%,
        rgba(201, 169, 97, 0.7) 100%
    );
    z-index: 1;
}

.home-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    width: var(--width-lg);
    margin: 0 auto;
    max-width: 1400px;
}

.home-content-wrapper {
    max-width: 700px;
}

.content {
    color: var(--off-white);
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home h1 {
    font-size: 4rem;
    text-transform: capitalize;
    font-weight: 900;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.home .content p {
    margin: 0 0 2rem;
    color: var(--off-white);
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(250, 249, 247, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(250, 249, 247, 0.2);
}

.location-badge .lnr {
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.location-badge span:last-child {
    color: var(--off-white);
    font-weight: 500;
}

.home .home-search {
    display: flex;
    margin-bottom: 2rem;
}

.home .home-search input {
    height: 4.5rem;
    width: 100%;
    max-width: 450px;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: rgba(250, 249, 247, 0.95);
    color: var(--text-dark);
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.home .home-search input:focus {
    border-color: var(--accent-gold);
    background: var(--off-white);
}

.home .home-search input::placeholder {
    color: var(--text-light);
}

.home .home-search .btn {
    height: 4.5rem;
    width: 4.5rem;
    margin-left: -4.5rem;
    padding: 0;
    border-radius: 50%;
    background: var(--mineral-green);
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .home-search .btn:hover {
    background: var(--mineral-green-dark);
}

.home-search .lnr {
    font-size: 1.3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(250, 249, 247, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(250, 249, 247, 0.15);
}

.feature-item .lnr {
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.feature-item span:last-child {
    color: var(--off-white);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ======= About Section ======= */
.about {
    background: var(--off-white);
    padding: 7rem 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    color: var(--mineral-green);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--mineral-green);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 107, 92, 0.1), transparent);
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
}

/* ======= Shop Section ======= */
.shop {
    background: var(--cream);
    padding: 6rem 0;
}

.shop .title {
    margin-bottom: 3rem;
}

.shop .swiper-slide {
    margin-bottom: 2rem;
}

.shop .swiper-slide .box {
    text-align: center;
    transition: var(--transition);
}

.shop .swiper-slide .image {
    padding: 1.5rem;
    background: var(--off-white);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.shop .image img {
    height: 280px;
    width: 280px;
    padding: 1rem;
    margin: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop .swiper-slide:hover .image img {
    transform: scale(1.1);
}

.shop .swiper-slide .add {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--mineral-green);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    z-index: 11;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.shop .swiper-slide .add .lnr {
    padding: 0.8rem;
    font-size: 1.2rem;
    color: var(--off-white);
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 50%;
}

.shop .swiper-slide .add .lnr:hover {
    background: var(--mineral-green-dark);
}

.shop .swiper-slide .info {
    padding: 2rem 1rem 1rem;
    position: relative;
    transition: var(--transition);
}

.shop .swiper-slide .info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.shop .swiper-slide .info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.shop .swiper-slide .info span {
    color: var(--mineral-green);
    font-size: 1.3rem;
    font-weight: 700;
}

.shop .swiper-slide:hover .add {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shop .swiper-slide:hover .info {
    background: var(--off-white);
    box-shadow: var(--shadow-soft);
    border-radius: 0 0 20px 20px;
}

.shop .swiper-pagination-bullet {
    background: var(--mineral-green);
    opacity: 0.3;
}

.shop .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--mineral-green);
}

/* ======= Testimonials Section ======= */
.testimonials {
    padding: 7rem 2rem;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: var(--mineral-green-pale);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mineral-green) 0%, var(--mineral-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--off-white);
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--mineral-green-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ======= Footer ======= */
footer {
    background: linear-gradient(135deg, var(--mineral-green-dark) 0%, var(--mineral-green) 100%);
    color: var(--off-white);
    padding: 5rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--off-white);
    font-size: 1.4rem;
}

.footer-section p {
    color: rgba(250, 249, 247, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(250, 249, 247, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(250, 249, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    border: 1px solid rgba(250, 249, 247, 0.2);
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 249, 247, 0.15);
    color: rgba(250, 249, 247, 0.7);
    font-size: 0.95rem;
}

/* ======= Scroll to Top Button ======= */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--mineral-green);
    color: var(--off-white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(61, 107, 92, 0.3);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--mineral-green-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 107, 92, 0.4);
}

/* ======= Leaflet Map Customization ======= */
.leaflet-container {
    font-family: 'Jost', sans-serif;
}

.custom-marker {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ======= Responsive Design ======= */
@media screen and (max-width: 1150px) {
    .container {
        width: var(--width-sm);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .home h1 {
        font-size: 2.8rem;
    }
    
    .home .content p {
        font-size: 1rem;
    }
    
    .home .home-search input {
        max-width: 100%;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 350px;
    }
    
    nav .navlist {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .home h1 {
        font-size: 2.2rem;
    }
    
    .location-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .title h2,
    .section-title {
        font-size: 2rem;
    }
    
    .shop .image img {
        height: 220px;
        width: 220px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card::before {
        font-size: 6rem;
        top: -15px;
        left: 20px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    resize: none;
}

:root {
    /* Enhanced Mineral Green Palette */
    --mineral-green: #3d6b5c;
    --mineral-green-light: #4d8570;
    --mineral-green-dark: #2d5548;
    --mineral-green-pale: #e8f3ef;
    --off-white: #faf9f7;
    --off-white-dark: #f5f4f2;
    --cream: #f0ede8;
    --accent-gold: #c9a961;
    
    /* Text Colors */
    --text-dark: #2a2a2a;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    
    /* Functional Colors */
    --white: #ffffff;
    --success: #4d8570;
    --warning: #c9a961;
    --error: #c97361;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(61, 107, 92, 0.12);
    --shadow-medium: 0 15px 50px rgba(61, 107, 92, 0.18);
    --shadow-intense: 0 20px 60px rgba(61, 107, 92, 0.25);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: all 0.2s ease;
    
    /* Layout */
    --width-lg: 85%;
    --width-sm: 95%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    height: 0.5rem;
    width: 0.5rem;
}

::-webkit-scrollbar-track {
    background: var(--mineral-green-pale);
}

::-webkit-scrollbar-thumb {
    background: var(--mineral-green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mineral-green-dark);
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

span {
    font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

h5 {
    font-size: 1.1rem;
    font-weight: 500;
}

.container {
    margin: 0 auto;
    width: var(--width-lg);
    max-width: 1400px;
}

section {
    padding: 6rem 0;
}

.title {
    text-align: center;
    margin-bottom: 4rem;
}

.title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--mineral-green);
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--mineral-green), var(--accent-gold));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--mineral-green);
    text-align: center;
    margin-bottom: 1rem;
}

.btn {
    padding: 1rem 2.5rem;
    background: var(--mineral-green);
    color: var(--off-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(61, 107, 92, 0.2);
}

.btn:hover {
    background: var(--mineral-green-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(61, 107, 92, 0.3);
}

/* ======= Navbar ======= */
nav {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(61, 107, 92, 0.08);
    transition: var(--transition-fast);
}

nav.scrolled {
    background: rgba(250, 249, 247, 0.98);
    box-shadow: 0 4px 30px rgba(61, 107, 92, 0.15);
}

.logo {
    color: var(--mineral-green);
    padding: 1.2rem 0;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo div:first-child {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo div:first-child span {
    font-weight: 800;
    color: var(--mineral-green-light);
}

.logo div:last-child {
    line-height: 1;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.2rem;
    color: var(--text-medium);
    font-family: 'Jost', sans-serif;
    margin-top: 4px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .navlist {
    display: flex;
    gap: 2rem;
}

nav .navlist li {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
}

nav .navlist li a {
    color: var(--text-dark);
    padding: 0.8rem 1.2rem;
    position: relative;
    font-weight: 600;
    transition: var(--transition-fast);
}

nav .navlist li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--mineral-green);
    transition: width 0.3s ease;
}

nav .navlist li a:hover,
nav .navlist li a.active {
    color: var(--mineral-green);
}

nav .navlist li a:hover::after,
nav .navlist li a.active::after {
    width: 80%;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icons .lnr {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.nav-icons .lnr:hover {
    color: var(--mineral-green);
    transform: translateY(-2px);
}

/* ======= Home Section with Map Background ======= */
.home {
    padding: 0;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(61, 107, 92, 0.85) 0%,
        rgba(77, 133, 112, 0.75) 50%,
        rgba(201, 169, 97, 0.7) 100%
    );
    z-index: 1;
}

.home-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    width: var(--width-lg);
    margin: 0 auto;
    max-width: 1400px;
}

.home-content-wrapper {
    max-width: 700px;
}

.content {
    color: var(--off-white);
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home h1 {
    font-size: 4rem;
    text-transform: capitalize;
    font-weight: 900;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.home .content p {
    margin: 0 0 2rem;
    color: var(--off-white);
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(250, 249, 247, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(250, 249, 247, 0.2);
}

.location-badge .lnr {
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.location-badge span:last-child {
    color: var(--off-white);
    font-weight: 500;
}

.home .home-search {
    display: flex;
    margin-bottom: 2rem;
}

.home .home-search input {
    height: 4.5rem;
    width: 100%;
    max-width: 450px;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: rgba(250, 249, 247, 0.95);
    color: var(--text-dark);
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.home .home-search input:focus {
    border-color: var(--accent-gold);
    background: var(--off-white);
}

.home .home-search input::placeholder {
    color: var(--text-light);
}

.home .home-search .btn {
    height: 4.5rem;
    width: 4.5rem;
    margin-left: -4.5rem;
    padding: 0;
    border-radius: 50%;
    background: var(--mineral-green);
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .home-search .btn:hover {
    background: var(--mineral-green-dark);
}

.home-search .lnr {
    font-size: 1.3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(250, 249, 247, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(250, 249, 247, 0.15);
}

.feature-item .lnr {
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.feature-item span:last-child {
    color: var(--off-white);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ======= About Section ======= */
.about {
    background: var(--off-white);
    padding: 7rem 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    color: var(--mineral-green);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--mineral-green);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 107, 92, 0.1), transparent);
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
}

/* ======= Shop Section ======= */
.shop {
    background: var(--cream);
    padding: 6rem 0;
}

.shop .title {
    margin-bottom: 3rem;
}

.shop .swiper-slide {
    margin-bottom: 2rem;
}

.shop .swiper-slide .box {
    text-align: center;
    transition: var(--transition);
}

.shop .swiper-slide .image {
    padding: 1.5rem;
    background: var(--off-white);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.shop .image img {
    height: 280px;
    width: 280px;
    padding: 1rem;
    margin: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop .swiper-slide:hover .image img {
    transform: scale(1.1);
}

.shop .swiper-slide .add {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--mineral-green);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    z-index: 11;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.shop .swiper-slide .add .lnr {
    padding: 0.8rem;
    font-size: 1.2rem;
    color: var(--off-white);
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 50%;
}

.shop .swiper-slide .add .lnr:hover {
    background: var(--mineral-green-dark);
}

.shop .swiper-slide .info {
    padding: 2rem 1rem 1rem;
    position: relative;
    transition: var(--transition);
}

.shop .swiper-slide .info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.shop .swiper-slide .info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.shop .swiper-slide .info span {
    color: var(--mineral-green);
    font-size: 1.3rem;
    font-weight: 700;
}

.shop .swiper-slide:hover .add {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shop .swiper-slide:hover .info {
    background: var(--off-white);
    box-shadow: var(--shadow-soft);
    border-radius: 0 0 20px 20px;
}

.shop .swiper-pagination-bullet {
    background: var(--mineral-green);
    opacity: 0.3;
}

.shop .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--mineral-green);
}

/* ======= Testimonials Section ======= */
.testimonials {
    padding: 7rem 2rem;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: var(--mineral-green-pale);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mineral-green) 0%, var(--mineral-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--off-white);
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--mineral-green-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ======= Footer ======= */
footer {
    background: linear-gradient(135deg, var(--mineral-green-dark) 0%, var(--mineral-green) 100%);
    color: var(--off-white);
    padding: 5rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--off-white);
    font-size: 1.4rem;
}

.footer-section p {
    color: rgba(250, 249, 247, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(250, 249, 247, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(250, 249, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    border: 1px solid rgba(250, 249, 247, 0.2);
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 249, 247, 0.15);
    color: rgba(250, 249, 247, 0.7);
    font-size: 0.95rem;
}

/* ======= Scroll to Top Button ======= */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--mineral-green);
    color: var(--off-white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(61, 107, 92, 0.3);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--mineral-green-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 107, 92, 0.4);
}

/* ======= Leaflet Map Customization ======= */
.leaflet-container {
    font-family: 'Jost', sans-serif;
}

.custom-marker {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ======= Responsive Design ======= */
@media screen and (max-width: 1150px) {
    .container {
        width: var(--width-sm);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .home h1 {
        font-size: 2.8rem;
    }
    
    .home .content p {
        font-size: 1rem;
    }
    
    .home .home-search input {
        max-width: 100%;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 350px;
    }
    
    nav .navlist {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .home h1 {
        font-size: 2.2rem;
    }
    
    .location-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .title h2,
    .section-title {
        font-size: 2rem;
    }
    
    .shop .image img {
        height: 220px;
        width: 220px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card::before {
        font-size: 6rem;
        top: -15px;
        left: 20px;
    }
}


/* Hero Section with Parallax */
.courses-hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mineral-green-pale) 0%, var(--off-white) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(61, 107, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: 19px;
    color: var(--text-medium);
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--mineral-green);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3D Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.float-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(61, 107, 92, 0.15) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.float-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
    top: 20%;
    right: -150px;
    animation-delay: 3s;
}

.float-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(61, 107, 92, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Course Categories Filter */
.course-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 60px 0 80px;
    padding: 0 24px;
}

.filter-btn {
    padding: 14px 32px;
    background: var(--off-white-dark);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--mineral-green);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--off-white);
    border-color: var(--mineral-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(61, 107, 92, 0.2);
}

.filter-btn.active::before, .filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced 3D Course Cards */
.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 48px;
    padding: 0 0 100px;
    perspective: 2000px;
}

.course-card {
    position: relative;
    height: 520px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.course-card:hover {
    transform: rotateY(12deg) rotateX(4deg) translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.course-card.flipped {
    transform: rotateY(180deg);
}

.course-front, .course-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
    background: var(--off-white);
}

.course-front {
    display: flex;
    flex-direction: column;
}

.course-image {
    height: 55%;
    overflow: hidden;
    position: relative;
}

.course-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(250, 249, 247, 0.9), transparent);
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: brightness(0.95);
}

.course-card:hover .course-image img {
    transform: scale(1.08);
    filter: brightness(1);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--mineral-green);
    color: var(--off-white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(61, 107, 92, 0.3);
}

.course-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.course-category {
    display: inline-block;
    background: var(--mineral-green-pale);
    color: var(--mineral-green-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.course-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.course-desc {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--off-white-dark);
}

.course-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--mineral-green);
}

.course-duration {
    font-size: 14px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-back {
    background: linear-gradient(135deg, var(--mineral-green) 0%, var(--mineral-green-light) 100%);
    color: var(--off-white);
    transform: rotateY(180deg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.course-back::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.back-content {
    position: relative;
    z-index: 1;
}

.back-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.back-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.95;
}

.course-features {
    list-style: none;
    margin-bottom: 32px;
}

.course-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features li::before {
    content: '✓';
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-gold);
}

.enroll-btn {
    background: var(--off-white);
    color: var(--mineral-green);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    text-decoration: none;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.enroll-btn:hover {
    background: var(--accent-gold);
    color: var(--off-white);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Interactive Course Showcase */
.showcase-section {
    padding: 100px 0;
    background: var(--mineral-green-pale);
    position: relative;
    overflow: hidden;
}

.showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.showcase-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    line-height: 1.7;
}

.showcase-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
}

.showcase-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 20px 0;
}

.showcase-track::-webkit-scrollbar {
    display: none;
}

.showcase-item {
    flex: 0 0 350px;
    scroll-snap-align: center;
    background: var(--off-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.showcase-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--mineral-green), var(--mineral-green-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(61, 107, 92, 0.2);
}

.showcase-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.showcase-item-desc {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--off-white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--off-white-dark);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--mineral-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--off-white);
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-course {
    font-size: 13px;
    color: var(--text-medium);
}


        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 56px;
            height: 56px;
            background: var(--mineral-green);
            color: var(--off-white);
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(61, 107, 92, 0.3);
            z-index: 999;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            background: var(--mineral-green-light);
            transform: translateY(-5px);
        }
        
        /* Loading Animation */
        .course-card.loading .course-image::after {
            animation: shimmer 2s infinite;
        }
        
        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .courses-container {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
                gap: 40px;
            }
            
            .hero-stats {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .navlist {
                display: none;
            }
            
            .page-title {
                font-size: 42px;
            }
            
            .page-subtitle {
                font-size: 17px;
            }
            
            .courses-container {
                grid-template-columns: 1fr;
                padding: 0 0 60px;
            }
            
            .course-card {
                height: 500px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 30px;
            }
            
            .showcase-item {
                flex: 0 0 280px;
            }
            
            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 36px;
            }
            
            .page-subtitle {
                font-size: 16px;
            }
            
            .course-filters {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
                margin: 40px 0 60px;
            }
            
            .filter-btn {
                flex-shrink: 0;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 36px;
            }
        }

               /* Hero Section */
               .services-hero {
                padding: 120px 0 80px;
                background: linear-gradient(135deg, var(--mineral-green-pale) 0%, var(--off-white) 100%);
                position: relative;
                overflow: hidden;
            }
    
            .hero-pattern {
                position: absolute;
                width: 100%;
                height: 100%;
                background-image: 
                    radial-gradient(circle at 20% 30%, rgba(61, 107, 92, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
            }
    
            .hero-content {
                position: relative;
                z-index: 1;
                text-align: center;
            }
    
            .hero-title {
                font-family: 'Playfair Display', serif;
                font-size: 64px;
                font-weight: 900;
                color: var(--mineral-green);
                margin-bottom: 24px;
                letter-spacing: -1px;
                animation: fadeInUp 0.8s ease-out;
            }
    
            .hero-subtitle {
                font-size: 19px;
                color: var(--text-medium);
                max-width: 720px;
                margin: 0 auto 48px;
                line-height: 1.7;
                animation: fadeInUp 0.8s ease-out 0.2s backwards;
            }
    
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            /* Service Categories Filter */
            .service-filters {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 16px;
                margin: 60px 0 80px;
            }
    
            .filter-btn {
                padding: 14px 32px;
                background: var(--off-white-dark);
                border: 2px solid transparent;
                border-radius: 50px;
                cursor: pointer;
                font-family: 'Jost', sans-serif;
                font-weight: 600;
                font-size: 15px;
                letter-spacing: 0.3px;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                color: var(--text-dark);
                position: relative;
                overflow: hidden;
            }
    
            .filter-btn::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                border-radius: 50%;
                background: var(--mineral-green);
                transform: translate(-50%, -50%);
                transition: width 0.5s ease, height 0.5s ease;
                z-index: -1;
            }
    
            .filter-btn.active,
            .filter-btn:hover {
                color: var(--off-white);
                border-color: var(--mineral-green);
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(61, 107, 92, 0.2);
            }
    
            .filter-btn.active::before,
            .filter-btn:hover::before {
                width: 300px;
                height: 300px;
            }
    
            /* 3D Services Grid */
            .services-container {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
                gap: 48px;
                padding: 0 0 100px;
                perspective: 2000px;
            }
    
            .service-card {
                position: relative;
                height: 500px;
                transform-style: preserve-3d;
                transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                cursor: pointer;
            }
    
            .service-card:hover {
                transform: rotateY(10deg) rotateX(5deg) translateY(-15px);
            }
    
            .service-card.flipped {
                transform: rotateY(180deg);
            }
    
            .card-front,
            .card-back {
                position: absolute;
                width: 100%;
                height: 100%;
                backface-visibility: hidden;
                border-radius: 24px;
                overflow: hidden;
                box-shadow: var(--shadow-soft);
            }
    
            .card-front {
                background: var(--white);
                display: flex;
                flex-direction: column;
            }
    
            .service-image {
                height: 60%;
                position: relative;
                overflow: hidden;
            }
    
            .service-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 1s ease;
                filter: brightness(0.95);
            }
    
            .service-card:hover .service-image img {
                transform: scale(1.1);
                filter: brightness(1);
            }
    
            .service-badge {
                position: absolute;
                top: 20px;
                right: 20px;
                background: var(--mineral-green);
                color: var(--off-white);
                padding: 8px 18px;
                border-radius: 50px;
                font-size: 11px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                box-shadow: 0 4px 15px rgba(61, 107, 92, 0.3);
                z-index: 10;
            }
    
            .discount-badge {
                position: absolute;
                top: 70px;
                right: 20px;
                background: var(--accent-gold);
                color: var(--off-white);
                padding: 8px 18px;
                border-radius: 50px;
                font-size: 11px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
                z-index: 10;
            }
    
            .service-content {
                padding: 32px;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
            }
    
            .service-title {
                font-family: 'Playfair Display', serif;
                font-size: 26px;
                font-weight: 700;
                color: var(--text-dark);
                margin-bottom: 16px;
                line-height: 1.3;
            }
    
            .service-description {
                font-size: 15px;
                color: var(--text-medium);
                line-height: 1.6;
                margin-bottom: 24px;
                flex-grow: 1;
            }
    
            .price-container {
                display: flex;
                align-items: center;
                gap: 16px;
                margin-bottom: 20px;
            }
    
            .current-price {
                font-family: 'Playfair Display', serif;
                font-size: 36px;
                font-weight: 800;
                color: var(--mineral-green);
            }
    
            .original-price {
                font-size: 24px;
                color: var(--text-light);
                text-decoration: line-through;
            }
    
            .book-btn {
                background: var(--mineral-green);
                color: var(--off-white);
                padding: 16px 32px;
                border: none;
                border-radius: 50px;
                font-family: 'Jost', sans-serif;
                font-weight: 700;
                font-size: 16px;
                cursor: pointer;
                transition: all 0.4s ease;
                box-shadow: 0 8px 20px rgba(61, 107, 92, 0.2);
            }
    
            .book-btn:hover {
                background: var(--mineral-green-light);
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(61, 107, 92, 0.3);
            }
    
            /* Card Back */
            .card-back {
                background: linear-gradient(135deg, var(--mineral-green) 0%, var(--mineral-green-light) 100%);
                color: var(--off-white);
                transform: rotateY(180deg);
                padding: 40px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                position: relative;
                overflow: hidden;
            }
    
            .card-back::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                animation: pulse 15s infinite ease-in-out;
            }
    
            @keyframes pulse {
                0%, 100% {
                    transform: scale(1);
                    opacity: 0.3;
                }
                50% {
                    transform: scale(1.2);
                    opacity: 0.5;
                }
            }
    
            .back-content {
                position: relative;
                z-index: 1;
            }
    
            .back-title {
                font-family: 'Playfair Display', serif;
                font-size: 28px;
                font-weight: 800;
                margin-bottom: 20px;
                line-height: 1.2;
            }
    
            .service-details {
                list-style: none;
                margin-bottom: 32px;
            }
    
            .service-details li {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                font-size: 15px;
                display: flex;
                align-items: center;
                gap: 12px;
            }
    
            .service-details li:last-child {
                border-bottom: none;
            }
    
            .service-details li::before {
                content: '✓';
                font-size: 18px;
                font-weight: bold;
                color: var(--accent-gold);
            }
    
            /* Floating Elements */
            .floating-element {
                position: absolute;
                border-radius: 50%;
                z-index: 0;
                filter: blur(60px);
                animation: float 20s infinite ease-in-out;
            }
    
            .float-1 {
                width: 300px;
                height: 300px;
                background: radial-gradient(circle, rgba(61, 107, 92, 0.15) 0%, transparent 70%);
                top: -150px;
                left: -100px;
                animation-delay: 0s;
            }
    
            .float-2 {
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
                top: 20%;
                right: -150px;
                animation-delay: 3s;
            }
    
            .float-3 {
                width: 250px;
                height: 250px;
                background: radial-gradient(circle, rgba(61, 107, 92, 0.1) 0%, transparent 70%);
                bottom: -100px;
                left: 20%;
                animation-delay: 6s;
            }
    
            @keyframes float {
                0%, 100% {
                    transform: translate(0, 0) scale(1);
                }
                33% {
                    transform: translate(30px, -40px) scale(1.1);
                }
                66% {
                    transform: translate(-20px, 20px) scale(0.9);
                }
            }
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                list-style: none;
                text-decoration: none;
                border: none;
                outline: none;
                resize: none;
            }
            
            :root {
                /* Enhanced Mineral Green Palette */
                --mineral-green: #3d6b5c;
                --mineral-green-light: #4d8570;
                --mineral-green-dark: #2d5548;
                --mineral-green-pale: #e8f3ef;
                --off-white: #faf9f7;
                --off-white-dark: #f5f4f2;
                --cream: #f0ede8;
                --accent-gold: #c9a961;
                
                /* Text Colors */
                --text-dark: #2a2a2a;
                --text-medium: #5a5a5a;
                --text-light: #8a8a8a;
                
                /* Functional Colors */
                --white: #ffffff;
                --success: #4d8570;
                --warning: #c9a961;
                --error: #c97361;
                
                /* Shadows */
                --shadow-soft: 0 10px 40px rgba(61, 107, 92, 0.12);
                --shadow-medium: 0 15px 50px rgba(61, 107, 92, 0.18);
                --shadow-intense: 0 20px 60px rgba(61, 107, 92, 0.25);
                
                /* Transitions */
                --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                --transition-fast: all 0.2s ease;
                
                /* Layout */
                --width-lg: 85%;
                --width-sm: 95%;
            }
            
            html {
                scroll-behavior: smooth;
            }
            
            body {
                font-family: 'Jost', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                line-height: 1.7;
                color: var(--text-dark);
                background-color: var(--off-white);
                overflow-x: hidden;
            }
            
            ::-webkit-scrollbar {
                height: 0.5rem;
                width: 0.5rem;
            }
            
            ::-webkit-scrollbar-track {
                background: var(--mineral-green-pale);
            }
            
            ::-webkit-scrollbar-thumb {
                background: var(--mineral-green);
                border-radius: 10px;
            }
            
            ::-webkit-scrollbar-thumb:hover {
                background: var(--mineral-green-dark);
            }
            
            img {
                display: block;
                width: 100%;
                object-fit: cover;
            }
            
            a {
                color: var(--text-dark);
                transition: var(--transition-fast);
            }
            
            span {
                font-size: 0.9rem;
            }
            
            h1, h2, h3, h4, h5, h6 {
                line-height: 1.2;
                font-family: 'Playfair Display', serif;
            }
            
            h1 {
                font-size: 3.5rem;
                font-weight: 800;
            }
            
            h2 {
                font-size: 2.5rem;
                font-weight: 700;
            }
            
            h3 {
                font-size: 1.8rem;
                font-weight: 600;
            }
            
            h4 {
                font-size: 1.4rem;
                font-weight: 600;
            }
            
            h5 {
                font-size: 1.1rem;
                font-weight: 500;
            }
            
            .container {
                margin: 0 auto;
                width: var(--width-lg);
                max-width: 1400px;
            }
            
            section {
                padding: 6rem 0;
            }
            
            .title {
                text-align: center;
                margin-bottom: 4rem;
            }
            
            .title h2 {
                font-size: 3rem;
                font-weight: 700;
                color: var(--mineral-green);
                display: inline-block;
                position: relative;
                margin-bottom: 1rem;
            }
            
            .title h2::after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: linear-gradient(90deg, var(--mineral-green), var(--accent-gold));
                border-radius: 2px;
            }
            
            .section-subtitle {
                color: var(--text-medium);
                font-size: 1.1rem;
                margin-top: 0.5rem;
            }
            
            .section-title {
                font-size: 3rem;
                font-weight: 700;
                color: var(--mineral-green);
                text-align: center;
                margin-bottom: 1rem;
            }
            
            .btn {
                padding: 1rem 2.5rem;
                background: var(--mineral-green);
                color: var(--off-white);
                border: none;
                border-radius: 50px;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: var(--transition);
                box-shadow: 0 8px 20px rgba(61, 107, 92, 0.2);
            }
            
            .btn:hover {
                background: var(--mineral-green-light);
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(61, 107, 92, 0.3);
            }
            
            /* ======= Navbar ======= */
            nav {
                background: rgba(250, 249, 247, 0.95);
                backdrop-filter: blur(20px);
                position: sticky;
                top: 0;
                z-index: 1000;
                box-shadow: 0 4px 20px rgba(61, 107, 92, 0.08);
                transition: var(--transition-fast);
            }
            
            nav.scrolled {
                background: rgba(250, 249, 247, 0.98);
                box-shadow: 0 4px 30px rgba(61, 107, 92, 0.15);
            }
            
            .logo {
                color: var(--mineral-green);
                padding: 1.2rem 0;
                transition: var(--transition-fast);
            }
            
            .logo:hover {
                transform: translateY(-2px);
            }
            
            .logo div:first-child {
                font-weight: 800;
                text-transform: uppercase;
                font-size: 2.2rem;
                line-height: 1;
                letter-spacing: 0.5px;
            }
            
            .logo div:first-child span {
                font-weight: 800;
                color: var(--mineral-green-light);
            }
            
            .logo div:last-child {
                line-height: 1;
                text-transform: uppercase;
                font-size: 0.65rem;
                letter-spacing: 0.2rem;
                color: var(--text-medium);
                font-family: 'Jost', sans-serif;
                margin-top: 4px;
            }
            
            .nav-container {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            
            nav .navlist {
                display: flex;
                gap: 2rem;
            }
            
            nav .navlist li {
                text-transform: uppercase;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
                cursor: pointer;
            }
            
            nav .navlist li a {
                color: var(--text-dark);
                padding: 0.8rem 1.2rem;
                position: relative;
                font-weight: 600;
                transition: var(--transition-fast);
            }
            
            nav .navlist li a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 2px;
                background: var(--mineral-green);
                transition: width 0.3s ease;
            }
            
            nav .navlist li a:hover,
            nav .navlist li a.active {
                color: var(--mineral-green);
            }
            
            nav .navlist li a:hover::after,
            nav .navlist li a.active::after {
                width: 80%;
            }
            
            .nav-icons {
                display: flex;
                gap: 1.5rem;
            }
            
            .nav-icons .lnr {
                font-size: 1.2rem;
                cursor: pointer;
                color: var(--text-dark);
                transition: var(--transition-fast);
            }
            
            .nav-icons .lnr:hover {
                color: var(--mineral-green);
                transform: translateY(-2px);
            }
            
            /* ======= Home Section with Map Background ======= */
            .home {
                padding: 0;
                position: relative;
                height: 100vh;
                overflow: hidden;
            }
            
            #map-background {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
            }
            
            .map-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(
                    135deg,
                    rgba(61, 107, 92, 0.85) 0%,
                    rgba(77, 133, 112, 0.75) 50%,
                    rgba(201, 169, 97, 0.7) 100%
                );
                z-index: 1;
            }
            
            .home-container {
                position: relative;
                z-index: 2;
                height: 100%;
                display: flex;
                align-items: center;
                width: var(--width-lg);
                margin: 0 auto;
                max-width: 1400px;
            }
            
            .home-content-wrapper {
                max-width: 700px;
            }
            
            .content {
                color: var(--off-white);
            }
            
            .animate-fade-in {
                animation: fadeInUp 1s ease-out;
            }
            
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .home h1 {
                font-size: 4rem;
                text-transform: capitalize;
                font-weight: 900;
                color: var(--off-white);
                line-height: 1.1;
                margin-bottom: 1.5rem;
                text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            }
            
            .home .content p {
                margin: 0 0 2rem;
                color: var(--off-white);
                font-size: 1.2rem;
                line-height: 1.8;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            }
            
            .location-badge {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                background: rgba(250, 249, 247, 0.15);
                backdrop-filter: blur(10px);
                padding: 0.8rem 1.5rem;
                border-radius: 50px;
                margin-bottom: 2rem;
                border: 1px solid rgba(250, 249, 247, 0.2);
            }
            
            .location-badge .lnr {
                font-size: 1.1rem;
                color: var(--accent-gold);
            }
            
            .location-badge span:last-child {
                color: var(--off-white);
                font-weight: 500;
            }
            
            .home .home-search {
                display: flex;
                margin-bottom: 2rem;
            }
            
            .home .home-search input {
                height: 4.5rem;
                width: 100%;
                max-width: 450px;
                border-radius: 50px;
                padding: 1rem 2rem;
                font-size: 1rem;
                background: rgba(250, 249, 247, 0.95);
                color: var(--text-dark);
                border: 2px solid transparent;
                transition: var(--transition-fast);
            }
            
            .home .home-search input:focus {
                border-color: var(--accent-gold);
                background: var(--off-white);
            }
            
            .home .home-search input::placeholder {
                color: var(--text-light);
            }
            
            .home .home-search .btn {
                height: 4.5rem;
                width: 4.5rem;
                margin-left: -4.5rem;
                padding: 0;
                border-radius: 50%;
                background: var(--mineral-green);
                color: var(--off-white);
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .home .home-search .btn:hover {
                background: var(--mineral-green-dark);
            }
            
            .home-search .lnr {
                font-size: 1.3rem;
            }
            
            .hero-features {
                display: flex;
                gap: 2rem;
                flex-wrap: wrap;
            }
            
            .feature-item {
                display: flex;
                align-items: center;
                gap: 0.8rem;
                background: rgba(250, 249, 247, 0.1);
                backdrop-filter: blur(10px);
                padding: 1rem 1.5rem;
                border-radius: 50px;
                border: 1px solid rgba(250, 249, 247, 0.15);
            }
            
            .feature-item .lnr {
                font-size: 1.3rem;
                color: var(--accent-gold);
            }
            
            .feature-item span:last-child {
                color: var(--off-white);
                font-weight: 500;
                font-size: 0.95rem;
            }
            
            /* ======= About Section ======= */
            .about {
                background: var(--off-white);
                padding: 7rem 0;
            }
            
            .about-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
                align-items: center;
            }
            
            .about-text h2 {
                color: var(--mineral-green);
                font-size: 3rem;
                margin-bottom: 1.5rem;
            }
            
            .about-text p {
                color: var(--text-medium);
                margin-bottom: 1.5rem;
                line-height: 1.9;
                font-size: 1.05rem;
            }
            
            .stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                margin: 3rem 0;
            }
            
            .stat-box {
                text-align: center;
                padding: 2rem 1.5rem;
                background: var(--white);
                border-radius: 20px;
                box-shadow: var(--shadow-soft);
                transition: var(--transition);
            }
            
            .stat-box:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-medium);
            }
            
            .stat-number {
                font-family: 'Playfair Display', serif;
                font-size: 3rem;
                font-weight: 800;
                color: var(--mineral-green);
                display: block;
                line-height: 1;
            }
            
            .stat-label {
                font-size: 0.9rem;
                color: var(--text-medium);
                margin-top: 0.8rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            
            .about-image {
                height: 550px;
                border-radius: 24px;
                overflow: hidden;
                box-shadow: var(--shadow-medium);
                position: relative;
            }
            
            .about-image::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(61, 107, 92, 0.1), transparent);
                z-index: 1;
            }
            
            .image-placeholder {
                width: 100%;
                height: 100%;
            }
            
            /* ======= Shop Section ======= */
            .shop {
                background: var(--cream);
                padding: 6rem 0;
            }
            
            .shop .title {
                margin-bottom: 3rem;
            }
            
            .shop .swiper-slide {
                margin-bottom: 2rem;
            }
            
            .shop .swiper-slide .box {
                text-align: center;
                transition: var(--transition);
            }
            
            .shop .swiper-slide .image {
                padding: 1.5rem;
                background: var(--off-white);
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                transition: var(--transition);
            }
            
            .shop .image img {
                height: 280px;
                width: 280px;
                padding: 1rem;
                margin: auto;
                object-fit: cover;
                transition: transform 0.5s ease;
            }
            
            .shop .swiper-slide:hover .image img {
                transform: scale(1.1);
            }
            
            .shop .swiper-slide .add {
                position: absolute;
                bottom: 0;
                left: 0;
                background: var(--mineral-green);
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 1rem;
                padding: 1rem;
                z-index: 11;
                transition: var(--transition);
                opacity: 0;
                visibility: hidden;
                transform: translateY(100%);
            }
            
            .shop .swiper-slide .add .lnr {
                padding: 0.8rem;
                font-size: 1.2rem;
                color: var(--off-white);
                cursor: pointer;
                transition: var(--transition-fast);
                border-radius: 50%;
            }
            
            .shop .swiper-slide .add .lnr:hover {
                background: var(--mineral-green-dark);
            }
            
            .shop .swiper-slide .info {
                padding: 2rem 1rem 1rem;
                position: relative;
                transition: var(--transition);
            }
            
            .shop .swiper-slide .info p {
                color: var(--text-medium);
                font-size: 0.9rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 0.5rem;
            }
            
            .shop .swiper-slide .info h4 {
                font-weight: 600;
                color: var(--text-dark);
                margin-bottom: 0.8rem;
                font-size: 1.2rem;
            }
            
            .shop .swiper-slide .info span {
                color: var(--mineral-green);
                font-size: 1.3rem;
                font-weight: 700;
            }
            
            .shop .swiper-slide:hover .add {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            .shop .swiper-slide:hover .info {
                background: var(--off-white);
                box-shadow: var(--shadow-soft);
                border-radius: 0 0 20px 20px;
            }
            
            .shop .swiper-pagination-bullet {
                background: var(--mineral-green);
                opacity: 0.3;
            }
            
            .shop .swiper-pagination-bullet-active {
                opacity: 1;
                background: var(--mineral-green);
            }
            
            /* ======= Testimonials Section ======= */
            .testimonials {
                padding: 7rem 2rem;
                background: var(--off-white);
            }
            
            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 3rem;
                max-width: 1200px;
                margin: 0 auto;
            }
            
            .testimonial-card {
                background: var(--white);
                padding: 3rem;
                border-radius: 24px;
                box-shadow: var(--shadow-soft);
                position: relative;
                transition: var(--transition);
            }
            
            .testimonial-card:hover {
                transform: translateY(-10px);
                box-shadow: var(--shadow-medium);
            }
            
            .testimonial-card::before {
                content: '"';
                position: absolute;
                top: -20px;
                left: 30px;
                font-size: 8rem;
                color: var(--mineral-green-pale);
                font-family: Georgia, serif;
                line-height: 1;
            }
            
            .testimonial-text {
                color: var(--text-medium);
                line-height: 1.9;
                margin-bottom: 2rem;
                font-style: italic;
                font-size: 1.05rem;
                position: relative;
                z-index: 1;
            }
            
            .testimonial-author {
                display: flex;
                align-items: center;
                gap: 1.2rem;
            }
            
            .author-avatar {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--mineral-green) 0%, var(--mineral-green-light) 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--off-white);
                font-size: 1.6rem;
                font-weight: 700;
                flex-shrink: 0;
            }
            
            .author-info h4 {
                color: var(--mineral-green-dark);
                margin-bottom: 0.3rem;
                font-size: 1.1rem;
            }
            
            .author-info p {
                color: var(--text-medium);
                font-size: 0.9rem;
            }
            
            /* ======= Footer ======= */
            footer {
                background: linear-gradient(135deg, var(--mineral-green-dark) 0%, var(--mineral-green) 100%);
                color: var(--off-white);
                padding: 5rem 2rem 2rem;
            }
            
            .footer-content {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 3rem;
                max-width: 1400px;
                margin: 0 auto 3rem;
            }
            
            .footer-section h3 {
                margin-bottom: 1.5rem;
                color: var(--off-white);
                font-size: 1.4rem;
            }
            
            .footer-section p {
                color: rgba(250, 249, 247, 0.85);
                line-height: 1.8;
                margin-bottom: 1.5rem;
            }
            
            .footer-section ul {
                list-style: none;
            }
            
            .footer-section ul li {
                margin-bottom: 0.8rem;
            }
            
            .footer-section a {
                color: rgba(250, 249, 247, 0.85);
                text-decoration: none;
                transition: var(--transition-fast);
                display: inline-block;
            }
            
            .footer-section a:hover {
                color: var(--accent-gold);
                transform: translateX(5px);
            }
            
            .social-icons {
                display: flex;
                gap: 1rem;
                margin-top: 1.5rem;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                background: rgba(250, 249, 247, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.3rem;
                transition: var(--transition);
                border: 1px solid rgba(250, 249, 247, 0.2);
            }
            
            .social-icon:hover {
                background: var(--accent-gold);
                transform: translateY(-5px);
                border-color: var(--accent-gold);
            }
            
            .footer-bottom {
                text-align: center;
                padding-top: 2rem;
                border-top: 1px solid rgba(250, 249, 247, 0.15);
                color: rgba(250, 249, 247, 0.7);
                font-size: 0.95rem;
            }
            
            /* ======= Scroll to Top Button ======= */
            .scroll-top {
                position: fixed;
                bottom: 40px;
                right: 40px;
                width: 56px;
                height: 56px;
                background: var(--mineral-green);
                color: var(--off-white);
                border: none;
                border-radius: 50%;
                font-size: 24px;
                cursor: pointer;
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(61, 107, 92, 0.3);
                z-index: 999;
            }
            
            .scroll-top.visible {
                opacity: 1;
                visibility: visible;
            }
            
            .scroll-top:hover {
                background: var(--mineral-green-light);
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(61, 107, 92, 0.4);
            }
            
            /* ======= Leaflet Map Customization ======= */
            .leaflet-container {
                font-family: 'Jost', sans-serif;
            }
            
            .custom-marker {
                animation: pulse 2s infinite;
            }
            
            @keyframes pulse {
                0%, 100% {
                    transform: scale(1);
                    opacity: 1;
                }
                50% {
                    transform: scale(1.1);
                    opacity: 0.8;
                }
            }
            
            /* ======= Responsive Design ======= */
            @media screen and (max-width: 1150px) {
                .container {
                    width: var(--width-sm);
                }
                
                .about-container {
                    grid-template-columns: 1fr;
                    gap: 3rem;
                }
                
                .about-image {
                    height: 450px;
                }
            }
            
            @media screen and (max-width: 768px) {
                h1 {
                    font-size: 2.5rem;
                }
                
                h2 {
                    font-size: 2rem;
                }
                
                .home h1 {
                    font-size: 2.8rem;
                }
                
                .home .content p {
                    font-size: 1rem;
                }
                
                .home .home-search input {
                    max-width: 100%;
                }
                
                .hero-features {
                    gap: 1rem;
                }
                
                .feature-item {
                    flex: 1 1 calc(50% - 0.5rem);
                    justify-content: center;
                }
                
                .stats {
                    grid-template-columns: 1fr;
                }
                
                .about-image {
                    height: 350px;
                }
                
                nav .navlist {
                    display: none;
                }
                
                .testimonials-grid {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }
                
                .scroll-top {
                    bottom: 20px;
                    right: 20px;
                    width: 50px;
                    height: 50px;
                    font-size: 20px;
                }
                
                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }
            }
            
            @media screen and (max-width: 576px) {
                .home h1 {
                    font-size: 2.2rem;
                }
                
                .location-badge {
                    font-size: 0.85rem;
                    padding: 0.6rem 1.2rem;
                }
                
                .hero-features {
                    flex-direction: column;
                }
                
                .feature-item {
                    width: 100%;
                }
                
                .title h2,
                .section-title {
                    font-size: 2rem;
                }
                
                .shop .image img {
                    height: 220px;
                    width: 220px;
                }
                
                .testimonial-card {
                    padding: 2rem;
                }
                
                .testimonial-card::before {
                    font-size: 6rem;
                    top: -15px;
                    left: 20px;
                }
            }
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                list-style: none;
                text-decoration: none;
                border: none;
                outline: none;
                resize: none;
            }
            
            :root {
                /* Enhanced Mineral Green Palette */
                --mineral-green: #3d6b5c;
                --mineral-green-light: #4d8570;
                --mineral-green-dark: #2d5548;
                --mineral-green-pale: #e8f3ef;
                --off-white: #faf9f7;
                --off-white-dark: #f5f4f2;
                --cream: #f0ede8;
                --accent-gold: #c9a961;
                
                /* Text Colors */
                --text-dark: #2a2a2a;
                --text-medium: #5a5a5a;
                --text-light: #8a8a8a;
                
                /* Functional Colors */
                --white: #ffffff;
                --success: #4d8570;
                --warning: #c9a961;
                --error: #c97361;
                
                /* Shadows */
                --shadow-soft: 0 10px 40px rgba(61, 107, 92, 0.12);
                --shadow-medium: 0 15px 50px rgba(61, 107, 92, 0.18);
                --shadow-intense: 0 20px 60px rgba(61, 107, 92, 0.25);
                
                /* Transitions */
                --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                --transition-fast: all 0.2s ease;
                
                /* Layout */
                --width-lg: 85%;
                --width-sm: 95%;
            }
            
            html {
                scroll-behavior: smooth;
            }
            
            body {
                font-family: 'Jost', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                line-height: 1.7;
                color: var(--text-dark);
                background-color: var(--off-white);
                overflow-x: hidden;
            }
            
            ::-webkit-scrollbar {
                height: 0.5rem;
                width: 0.5rem;
            }
            
            ::-webkit-scrollbar-track {
                background: var(--mineral-green-pale);
            }
            
            ::-webkit-scrollbar-thumb {
                background: var(--mineral-green);
                border-radius: 10px;
            }
            
            ::-webkit-scrollbar-thumb:hover {
                background: var(--mineral-green-dark);
            }
            
            img {
                display: block;
                width: 100%;
                object-fit: cover;
            }
            
            a {
                color: var(--text-dark);
                transition: var(--transition-fast);
            }
            
            span {
                font-size: 0.9rem;
            }
            
            h1, h2, h3, h4, h5, h6 {
                line-height: 1.2;
                font-family: 'Playfair Display', serif;
            }
            
            h1 {
                font-size: 3.5rem;
                font-weight: 800;
            }
            
            h2 {
                font-size: 2.5rem;
                font-weight: 700;
            }
            
            h3 {
                font-size: 1.8rem;
                font-weight: 600;
            }
            
            h4 {
                font-size: 1.4rem;
                font-weight: 600;
            }
            
            h5 {
                font-size: 1.1rem;
                font-weight: 500;
            }
            
            .container {
                margin: 0 auto;
                width: var(--width-lg);
                max-width: 1400px;
            }
            
            section {
                padding: 6rem 0;
            }
            
            .title {
                text-align: center;
                margin-bottom: 4rem;
            }
            
            .title h2 {
                font-size: 3rem;
                font-weight: 700;
                color: var(--mineral-green);
                display: inline-block;
                position: relative;
                margin-bottom: 1rem;
            }
            
            .title h2::after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: linear-gradient(90deg, var(--mineral-green), var(--accent-gold));
                border-radius: 2px;
            }
            
            .section-subtitle {
                color: var(--text-medium);
                font-size: 1.1rem;
                margin-top: 0.5rem;
            }
            
            .section-title {
                font-size: 3rem;
                font-weight: 700;
                color: var(--mineral-green);
                text-align: center;
                margin-bottom: 1rem;
            }
            
            .btn {
                padding: 1rem 2.5rem;
                background: var(--mineral-green);
                color: var(--off-white);
                border: none;
                border-radius: 50px;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: var(--transition);
                box-shadow: 0 8px 20px rgba(61, 107, 92, 0.2);
            }
            
            .btn:hover {
                background: var(--mineral-green-light);
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(61, 107, 92, 0.3);
            }
            
            /* ======= Navbar ======= */
            nav {
                background: rgba(250, 249, 247, 0.95);
                backdrop-filter: blur(20px);
                position: sticky;
                top: 0;
                z-index: 1000;
                box-shadow: 0 4px 20px rgba(61, 107, 92, 0.08);
                transition: var(--transition-fast);
            }
            
            nav.scrolled {
                background: rgba(250, 249, 247, 0.98);
                box-shadow: 0 4px 30px rgba(61, 107, 92, 0.15);
            }
            
            .logo {
                color: var(--mineral-green);
                padding: 1.2rem 0;
                transition: var(--transition-fast);
            }
            
            .logo:hover {
                transform: translateY(-2px);
            }
            
            .logo div:first-child {
                font-weight: 800;
                text-transform: uppercase;
                font-size: 2.2rem;
                line-height: 1;
                letter-spacing: 0.5px;
            }
            
            .logo div:first-child span {
                font-weight: 800;
                color: var(--mineral-green-light);
            }
            
            .logo div:last-child {
                line-height: 1;
                text-transform: uppercase;
                font-size: 0.65rem;
                letter-spacing: 0.2rem;
                color: var(--text-medium);
                font-family: 'Jost', sans-serif;
                margin-top: 4px;
            }
            
            .nav-container {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            
            nav .navlist {
                display: flex;
                gap: 2rem;
            }
            
            nav .navlist li {
                text-transform: uppercase;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
                cursor: pointer;
            }
            
            nav .navlist li a {
                color: var(--text-dark);
                padding: 0.8rem 1.2rem;
                position: relative;
                font-weight: 600;
                transition: var(--transition-fast);
            }
            
            nav .navlist li a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 2px;
                background: var(--mineral-green);
                transition: width 0.3s ease;
            }
            
            nav .navlist li a:hover,
            nav .navlist li a.active {
                color: var(--mineral-green);
            }
            
            nav .navlist li a:hover::after,
            nav .navlist li a.active::after {
                width: 80%;
            }
            
            .nav-icons {
                display: flex;
                gap: 1.5rem;
            }
            
            .nav-icons .lnr {
                font-size: 1.2rem;
                cursor: pointer;
                color: var(--text-dark);
                transition: var(--transition-fast);
            }
            
            .nav-icons .lnr:hover {
                color: var(--mineral-green);
                transform: translateY(-2px);
            }
            
            /* ======= Home Section with Map Background ======= */
            .home {
                padding: 0;
                position: relative;
                height: 100vh;
                overflow: hidden;
            }
            
            #map-background {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
            }
            
            .map-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(
                    135deg,
                    rgba(61, 107, 92, 0.85) 0%,
                    rgba(77, 133, 112, 0.75) 50%,
                    rgba(201, 169, 97, 0.7) 100%
                );
                z-index: 1;
            }
            
            .home-container {
                position: relative;
                z-index: 2;
                height: 100%;
                display: flex;
                align-items: center;
                width: var(--width-lg);
                margin: 0 auto;
                max-width: 1400px;
            }
            
            .home-content-wrapper {
                max-width: 700px;
            }
            
            .content {
                color: var(--off-white);
            }
            
            .animate-fade-in {
                animation: fadeInUp 1s ease-out;
            }
            
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .home h1 {
                font-size: 4rem;
                text-transform: capitalize;
                font-weight: 900;
                color: var(--off-white);
                line-height: 1.1;
                margin-bottom: 1.5rem;
                text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            }
            
            .home .content p {
                margin: 0 0 2rem;
                color: var(--off-white);
                font-size: 1.2rem;
                line-height: 1.8;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            }
            
            .location-badge {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                background: rgba(250, 249, 247, 0.15);
                backdrop-filter: blur(10px);
                padding: 0.8rem 1.5rem;
                border-radius: 50px;
                margin-bottom: 2rem;
                border: 1px solid rgba(250, 249, 247, 0.2);
            }
            
            .location-badge .lnr {
                font-size: 1.1rem;
                color: var(--accent-gold);
            }
            
            .location-badge span:last-child {
                color: var(--off-white);
                font-weight: 500;
            }
            
            .home .home-search {
                display: flex;
                margin-bottom: 2rem;
            }
            
            .home .home-search input {
                height: 4.5rem;
                width: 100%;
                max-width: 450px;
                border-radius: 50px;
                padding: 1rem 2rem;
                font-size: 1rem;
                background: rgba(250, 249, 247, 0.95);
                color: var(--text-dark);
                border: 2px solid transparent;
                transition: var(--transition-fast);
            }
            
            .home .home-search input:focus {
                border-color: var(--accent-gold);
                background: var(--off-white);
            }
            
            .home .home-search input::placeholder {
                color: var(--text-light);
            }
            
            .home .home-search .btn {
                height: 4.5rem;
                width: 4.5rem;
                margin-left: -4.5rem;
                padding: 0;
                border-radius: 50%;
                background: var(--mineral-green);
                color: var(--off-white);
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .home .home-search .btn:hover {
                background: var(--mineral-green-dark);
            }
            
            .home-search .lnr {
                font-size: 1.3rem;
            }
            
            .hero-features {
                display: flex;
                gap: 2rem;
                flex-wrap: wrap;
            }
            
            .feature-item {
                display: flex;
                align-items: center;
                gap: 0.8rem;
                background: rgba(250, 249, 247, 0.1);
                backdrop-filter: blur(10px);
                padding: 1rem 1.5rem;
                border-radius: 50px;
                border: 1px solid rgba(250, 249, 247, 0.15);
            }
            
            .feature-item .lnr {
                font-size: 1.3rem;
                color: var(--accent-gold);
            }
            
            .feature-item span:last-child {
                color: var(--off-white);
                font-weight: 500;
                font-size: 0.95rem;
            }
            
            /* ======= About Section ======= */
            .about {
                background: var(--off-white);
                padding: 7rem 0;
            }
            
            .about-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
                align-items: center;
            }
            
            .about-text h2 {
                color: var(--mineral-green);
                font-size: 3rem;
                margin-bottom: 1.5rem;
            }
            
            .about-text p {
                color: var(--text-medium);
                margin-bottom: 1.5rem;
                line-height: 1.9;
                font-size: 1.05rem;
            }
            
            .stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                margin: 3rem 0;
            }
            
            .stat-box {
                text-align: center;
                padding: 2rem 1.5rem;
                background: var(--white);
                border-radius: 20px;
                box-shadow: var(--shadow-soft);
                transition: var(--transition);
            }
            
            .stat-box:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-medium);
            }
            
            .stat-number {
                font-family: 'Playfair Display', serif;
                font-size: 3rem;
                font-weight: 800;
                color: var(--mineral-green);
                display: block;
                line-height: 1;
            }
            
            .stat-label {
                font-size: 0.9rem;
                color: var(--text-medium);
                margin-top: 0.8rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            
            .about-image {
                height: 550px;
                border-radius: 24px;
                overflow: hidden;
                box-shadow: var(--shadow-medium);
                position: relative;
            }
            
            .about-image::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(61, 107, 92, 0.1), transparent);
                z-index: 1;
            }
            
            .image-placeholder {
                width: 100%;
                height: 100%;
            }
            
            /* ======= Shop Section ======= */
            .shop {
                background: var(--cream);
                padding: 6rem 0;
            }
            
            .shop .title {
                margin-bottom: 3rem;
            }
            
            .shop .swiper-slide {
                margin-bottom: 2rem;
            }
            
            .shop .swiper-slide .box {
                text-align: center;
                transition: var(--transition);
            }
            
            .shop .swiper-slide .image {
                padding: 1.5rem;
                background: var(--off-white);
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                transition: var(--transition);
            }
            
            .shop .image img {
                height: 280px;
                width: 280px;
                padding: 1rem;
                margin: auto;
                object-fit: cover;
                transition: transform 0.5s ease;
            }
            
            .shop .swiper-slide:hover .image img {
                transform: scale(1.1);
            }
            
            .shop .swiper-slide .add {
                position: absolute;
                bottom: 0;
                left: 0;
                background: var(--mineral-green);
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 1rem;
                padding: 1rem;
                z-index: 11;
                transition: var(--transition);
                opacity: 0;
                visibility: hidden;
                transform: translateY(100%);
            }
            
            .shop .swiper-slide .add .lnr {
                padding: 0.8rem;
                font-size: 1.2rem;
                color: var(--off-white);
                cursor: pointer;
                transition: var(--transition-fast);
                border-radius: 50%;
            }
            
            .shop .swiper-slide .add .lnr:hover {
                background: var(--mineral-green-dark);
            }
            
            .shop .swiper-slide .info {
                padding: 2rem 1rem 1rem;
                position: relative;
                transition: var(--transition);
            }
            
            .shop .swiper-slide .info p {
                color: var(--text-medium);
                font-size: 0.9rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 0.5rem;
            }
            
            .shop .swiper-slide .info h4 {
                font-weight: 600;
                color: var(--text-dark);
                margin-bottom: 0.8rem;
                font-size: 1.2rem;
            }
            
            .shop .swiper-slide .info span {
                color: var(--mineral-green);
                font-size: 1.3rem;
                font-weight: 700;
            }
            
            .shop .swiper-slide:hover .add {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            .shop .swiper-slide:hover .info {
                background: var(--off-white);
                box-shadow: var(--shadow-soft);
                border-radius: 0 0 20px 20px;
            }
            
            .shop .swiper-pagination-bullet {
                background: var(--mineral-green);
                opacity: 0.3;
            }
            
            .shop .swiper-pagination-bullet-active {
                opacity: 1;
                background: var(--mineral-green);
            }
            
            /* ======= Testimonials Section ======= */
            .testimonials {
                padding: 7rem 2rem;
                background: var(--off-white);
            }
            
            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 3rem;
                max-width: 1200px;
                margin: 0 auto;
            }
            
            .testimonial-card {
                background: var(--white);
                padding: 3rem;
                border-radius: 24px;
                box-shadow: var(--shadow-soft);
                position: relative;
                transition: var(--transition);
            }
            
            .testimonial-card:hover {
                transform: translateY(-10px);
                box-shadow: var(--shadow-medium);
            }
            
            .testimonial-card::before {
                content: '"';
                position: absolute;
                top: -20px;
                left: 30px;
                font-size: 8rem;
                color: var(--mineral-green-pale);
                font-family: Georgia, serif;
                line-height: 1;
            }
            
            .testimonial-text {
                color: var(--text-medium);
                line-height: 1.9;
                margin-bottom: 2rem;
                font-style: italic;
                font-size: 1.05rem;
                position: relative;
                z-index: 1;
            }
            
            .testimonial-author {
                display: flex;
                align-items: center;
                gap: 1.2rem;
            }
            
            .author-avatar {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--mineral-green) 0%, var(--mineral-green-light) 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--off-white);
                font-size: 1.6rem;
                font-weight: 700;
                flex-shrink: 0;
            }
            
            .author-info h4 {
                color: var(--mineral-green-dark);
                margin-bottom: 0.3rem;
                font-size: 1.1rem;
            }
            
            .author-info p {
                color: var(--text-medium);
                font-size: 0.9rem;
            }
            
            /* ======= Footer ======= */
            footer {
                background: linear-gradient(135deg, var(--mineral-green-dark) 0%, var(--mineral-green) 100%);
                color: var(--off-white);
                padding: 5rem 2rem 2rem;
            }
            
            .footer-content {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 3rem;
                max-width: 1400px;
                margin: 0 auto 3rem;
            }
            
            .footer-section h3 {
                margin-bottom: 1.5rem;
                color: var(--off-white);
                font-size: 1.4rem;
            }
            
            .footer-section p {
                color: rgba(250, 249, 247, 0.85);
                line-height: 1.8;
                margin-bottom: 1.5rem;
            }
            
            .footer-section ul {
                list-style: none;
            }
            
            .footer-section ul li {
                margin-bottom: 0.8rem;
            }
            
            .footer-section a {
                color: rgba(250, 249, 247, 0.85);
                text-decoration: none;
                transition: var(--transition-fast);
                display: inline-block;
            }
            
            .footer-section a:hover {
                color: var(--accent-gold);
                transform: translateX(5px);
            }
            
            .social-icons {
                display: flex;
                gap: 1rem;
                margin-top: 1.5rem;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                background: rgba(250, 249, 247, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.3rem;
                transition: var(--transition);
                border: 1px solid rgba(250, 249, 247, 0.2);
            }
            
            .social-icon:hover {
                background: var(--accent-gold);
                transform: translateY(-5px);
                border-color: var(--accent-gold);
            }
            
            .footer-bottom {
                text-align: center;
                padding-top: 2rem;
                border-top: 1px solid rgba(250, 249, 247, 0.15);
                color: rgba(250, 249, 247, 0.7);
                font-size: 0.95rem;
            }
            
            /* ======= Scroll to Top Button ======= */
            .scroll-top {
                position: fixed;
                bottom: 40px;
                right: 40px;
                width: 56px;
                height: 56px;
                background: var(--mineral-green);
                color: var(--off-white);
                border: none;
                border-radius: 50%;
                font-size: 24px;
                cursor: pointer;
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(61, 107, 92, 0.3);
                z-index: 999;
            }
            
            .scroll-top.visible {
                opacity: 1;
                visibility: visible;
            }
            
            .scroll-top:hover {
                background: var(--mineral-green-light);
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(61, 107, 92, 0.4);
            }
            
            /* ======= Leaflet Map Customization ======= */
            .leaflet-container {
                font-family: 'Jost', sans-serif;
            }
            
            .custom-marker {
                animation: pulse 2s infinite;
            }
            
            @keyframes pulse {
                0%, 100% {
                    transform: scale(1);
                    opacity: 1;
                }
                50% {
                    transform: scale(1.1);
                    opacity: 0.8;
                }
            }
            
            /* ======= Responsive Design ======= */
            @media screen and (max-width: 1150px) {
                .container {
                    width: var(--width-sm);
                }
                
                .about-container {
                    grid-template-columns: 1fr;
                    gap: 3rem;
                }
                
                .about-image {
                    height: 450px;
                }
            }
            
            @media screen and (max-width: 768px) {
                h1 {
                    font-size: 2.5rem;
                }
                
                h2 {
                    font-size: 2rem;
                }
                
                .home h1 {
                    font-size: 2.8rem;
                }
                
                .home .content p {
                    font-size: 1rem;
                }
                
                .home .home-search input {
                    max-width: 100%;
                }
                
                .hero-features {
                    gap: 1rem;
                }
                
                .feature-item {
                    flex: 1 1 calc(50% - 0.5rem);
                    justify-content: center;
                }
                
                .stats {
                    grid-template-columns: 1fr;
                }
                
                .about-image {
                    height: 350px;
                }
                
                nav .navlist {
                    display: none;
                }
                
                .testimonials-grid {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }
                
                .scroll-top {
                    bottom: 20px;
                    right: 20px;
                    width: 50px;
                    height: 50px;
                    font-size: 20px;
                }
                
                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }
            }
            
            @media screen and (max-width: 576px) {
                .home h1 {
                    font-size: 2.2rem;
                }
                
                .location-badge {
                    font-size: 0.85rem;
                    padding: 0.6rem 1.2rem;
                }
                
                .hero-features {
                    flex-direction: column;
                }
                
                .feature-item {
                    width: 100%;
                }
                
                .title h2,
                .section-title {
                    font-size: 2rem;
                }
                
                .shop .image img {
                    height: 220px;
                    width: 220px;
                }
                
                .testimonial-card {
                    padding: 2rem;
                }
                
                .testimonial-card::before {
                    font-size: 6rem;
                    top: -15px;
                    left: 20px;
                }
            }
            
            
            /* Hero Section with Parallax */
            .courses-hero {
                padding: 120px 0 80px;
                text-align: center;
                position: relative;
                overflow: hidden;
                background: linear-gradient(135deg, var(--mineral-green-pale) 0%, var(--off-white) 100%);
            }
            
            .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
                opacity: 0.4;
            }
            
            .hero-pattern {
                position: absolute;
                width: 100%;
                height: 100%;
                background-image: 
                    radial-gradient(circle at 20% 30%, rgba(61, 107, 92, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
            }
            
            .hero-content {
                position: relative;
                z-index: 1;
            }
            
            .page-title {
                font-family: 'Playfair Display', serif;
                font-size: 64px;
                font-weight: 900;
                margin-bottom: 24px;
                color: var(--text-dark);
                letter-spacing: -1px;
                animation: fadeInUp 0.8s ease-out;
            }
            
            .page-subtitle {
                font-size: 19px;
                color: var(--text-medium);
                max-width: 720px;
                margin: 0 auto 48px;
                line-height: 1.7;
                animation: fadeInUp 0.8s ease-out 0.2s backwards;
            }
            
            .hero-stats {
                display: flex;
                justify-content: center;
                gap: 60px;
                margin-top: 48px;
                animation: fadeInUp 0.8s ease-out 0.4s backwards;
            }
            
            .stat-item {
                text-align: center;
            }
            
            .stat-number {
                font-family: 'Playfair Display', serif;
                font-size: 48px;
                font-weight: 800;
                color: var(--mineral-green);
                display: block;
                line-height: 1;
            }
            
            .stat-label {
                font-size: 14px;
                color: var(--text-medium);
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-top: 8px;
            }
            
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            /* 3D Floating Elements */
            .floating-element {
                position: absolute;
                border-radius: 50%;
                z-index: 0;
                filter: blur(60px);
                animation: float 20s infinite ease-in-out;
            }
            
            .float-1 {
                width: 300px;
                height: 300px;
                background: radial-gradient(circle, rgba(61, 107, 92, 0.15) 0%, transparent 70%);
                top: -150px;
                left: -100px;
                animation-delay: 0s;
            }
            
            .float-2 {
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
                top: 20%;
                right: -150px;
                animation-delay: 3s;
            }
            
            .float-3 {
                width: 250px;
                height: 250px;
                background: radial-gradient(circle, rgba(61, 107, 92, 0.1) 0%, transparent 70%);
                bottom: -100px;
                left: 20%;
                animation-delay: 6s;
            }
            
            @keyframes float {
                0%, 100% {
                    transform: translate(0, 0) scale(1);
                }
                33% {
                    transform: translate(30px, -40px) scale(1.1);
                }
                66% {
                    transform: translate(-20px, 20px) scale(0.9);
                }
            }
            
            /* Course Categories Filter */
            .course-filters {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 16px;
                margin: 60px 0 80px;
                padding: 0 24px;
            }
            
            .filter-btn {
                padding: 14px 32px;
                background: var(--off-white-dark);
                border: 2px solid transparent;
                border-radius: 50px;
                cursor: pointer;
                font-family: 'Jost', sans-serif;
                font-weight: 600;
                font-size: 15px;
                letter-spacing: 0.3px;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                color: var(--text-dark);
                position: relative;
                overflow: hidden;
            }
            
            .filter-btn::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                border-radius: 50%;
                background: var(--mineral-green);
                transform: translate(-50%, -50%);
                transition: width 0.5s ease, height 0.5s ease;
                z-index: -1;
            }
            
            .filter-btn.active, .filter-btn:hover {
                color: var(--off-white);
                border-color: var(--mineral-green);
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(61, 107, 92, 0.2);
            }
            
            .filter-btn.active::before, .filter-btn:hover::before {
                width: 300px;
                height: 300px;
            }
            
            /* Enhanced 3D Course Cards */
            .courses-container {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
                gap: 48px;
                padding: 0 0 100px;
                perspective: 2000px;
            }
            
            .course-card {
                position: relative;
                height: 520px;
                transform-style: preserve-3d;
                transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                border-radius: 24px;
                cursor: pointer;
                box-shadow: var(--shadow-soft);
            }
            
            .course-card:hover {
                transform: rotateY(12deg) rotateX(4deg) translateY(-12px);
                box-shadow: var(--shadow-hover);
            }
            
            .course-card.flipped {
                transform: rotateY(180deg);
            }
            
            .course-front, .course-back {
                position: absolute;
                width: 100%;
                height: 100%;
                backface-visibility: hidden;
                border-radius: 24px;
                overflow: hidden;
                background: var(--off-white);
            }
            
            .course-front {
                display: flex;
                flex-direction: column;
            }
            
            .course-image {
                height: 55%;
                overflow: hidden;
                position: relative;
            }
            
            .course-image::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 100px;
                background: linear-gradient(to top, rgba(250, 249, 247, 0.9), transparent);
            }
            
            .course-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 1s ease;
                filter: brightness(0.95);
            }
            
            .course-card:hover .course-image img {
                transform: scale(1.08);
                filter: brightness(1);
            }
            
            .course-badge {
                position: absolute;
                top: 20px;
                right: 20px;
                background: var(--mineral-green);
                color: var(--off-white);
                padding: 8px 18px;
                border-radius: 50px;
                font-size: 11px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                z-index: 10;
                box-shadow: 0 4px 15px rgba(61, 107, 92, 0.3);
            }
            
            .course-content {
                padding: 32px;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                position: relative;
            }
            
            .course-category {
                display: inline-block;
                background: var(--mineral-green-pale);
                color: var(--mineral-green-dark);
                padding: 6px 18px;
                border-radius: 50px;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.8px;
                margin-bottom: 16px;
                align-self: flex-start;
            }
            
            .course-title {
                font-family: 'Playfair Display', serif;
                font-size: 26px;
                font-weight: 700;
                margin-bottom: 12px;
                color: var(--text-dark);
                line-height: 1.3;
            }
            
            .course-desc {
                font-size: 15px;
                color: var(--text-medium);
                line-height: 1.6;
                margin-bottom: 24px;
                flex-grow: 1;
            }
            
            .course-meta {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding-top: 20px;
                border-top: 2px solid var(--off-white-dark);
            }
            
            .course-price {
                font-family: 'Playfair Display', serif;
                font-size: 32px;
                font-weight: 800;
                color: var(--mineral-green);
            }
            
            .course-duration {
                font-size: 14px;
                color: var(--text-medium);
                display: flex;
                align-items: center;
                gap: 6px;
            }
            
            .course-back {
                background: linear-gradient(135deg, var(--mineral-green) 0%, var(--mineral-green-light) 100%);
                color: var(--off-white);
                transform: rotateY(180deg);
                padding: 40px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                position: relative;
                overflow: hidden;
            }
            
            .course-back::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                animation: pulse 15s infinite ease-in-out;
            }
            
            @keyframes pulse {
                0%, 100% { transform: scale(1); opacity: 0.3; }
                50% { transform: scale(1.2); opacity: 0.5; }
            }
            
            .back-content {
                position: relative;
                z-index: 1;
            }
            
            .back-title {
                font-family: 'Playfair Display', serif;
                font-size: 28px;
                font-weight: 800;
                margin-bottom: 20px;
                line-height: 1.2;
            }
            
            .back-description {
                font-size: 15px;
                line-height: 1.7;
                margin-bottom: 28px;
                opacity: 0.95;
            }
            
            .course-features {
                list-style: none;
                margin-bottom: 32px;
            }
            
            .course-features li {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                font-size: 15px;
                display: flex;
                align-items: center;
                gap: 12px;
            }
            
            .course-features li:last-child {
                border-bottom: none;
            }
            
            .course-features li::before {
                content: '✓';
                font-size: 18px;
                font-weight: bold;
                color: var(--accent-gold);
            }
            
            .enroll-btn {
                background: var(--off-white);
                color: var(--mineral-green);
                border: none;
                padding: 16px 32px;
                border-radius: 50px;
                font-family: 'Jost', sans-serif;
                font-weight: 700;
                font-size: 16px;
                letter-spacing: 0.5px;
                cursor: pointer;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                text-align: center;
                text-decoration: none;
                display: block;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                position: relative;
                z-index: 1;
            }
            
            .enroll-btn:hover {
                background: var(--accent-gold);
                color: var(--off-white);
                transform: translateY(-4px);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            }
            
            /* Interactive Course Showcase */
            .showcase-section {
                padding: 100px 0;
                background: var(--mineral-green-pale);
                position: relative;
                overflow: hidden;
            }
            
            .showcase-title {
                font-family: 'Playfair Display', serif;
                font-size: 48px;
                font-weight: 800;
                text-align: center;
                margin-bottom: 20px;
                color: var(--text-dark);
            }
            
            .showcase-subtitle {
                font-size: 18px;
                color: var(--text-medium);
                text-align: center;
                max-width: 700px;
                margin: 0 auto 80px;
                line-height: 1.7;
            }
            
            .showcase-carousel {
                position: relative;
                max-width: 1000px;
                margin: 0 auto;
                padding: 40px;
            }
            
            .showcase-track {
                display: flex;
                gap: 30px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                padding: 20px 0;
            }
            
            .showcase-track::-webkit-scrollbar {
                display: none;
            }
            
            .showcase-item {
                flex: 0 0 350px;
                scroll-snap-align: center;
                background: var(--off-white);
                border-radius: 24px;
                padding: 40px;
                box-shadow: var(--shadow-soft);
                transition: all 0.5s ease;
            }
            
            .showcase-item:hover {
                transform: translateY(-10px);
                box-shadow: var(--shadow-hover);
            }
            
            .showcase-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, var(--mineral-green), var(--mineral-green-light));
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 36px;
                margin-bottom: 24px;
                box-shadow: 0 10px 30px rgba(61, 107, 92, 0.2);
            }
            
            .showcase-item-title {
                font-family: 'Playfair Display', serif;
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 12px;
                color: var(--text-dark);
            }
            
            .showcase-item-desc {
                font-size: 15px;
                color: var(--text-medium);
                line-height: 1.6;
            }
            
            /* Testimonials Section */
            .testimonials-section {
                padding: 100px 0;
                background: var(--off-white);
            }
            
            .section-title {
                font-family: 'Playfair Display', serif;
                font-size: 48px;
                font-weight: 800;
                text-align: center;
                margin-bottom: 60px;
                color: var(--text-dark);
            }
            
            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 40px;
                max-width: 1200px;
                margin: 0 auto;
            }
            
            .testimonial-card {
                background: var(--off-white-dark);
                padding: 40px;
                border-radius: 20px;
                position: relative;
                transition: all 0.4s ease;
            }
            
            .testimonial-card:hover {
                transform: translateY(-8px);
                box-shadow: var(--shadow-soft);
            }
            
            .testimonial-text {
                font-size: 16px;
                line-height: 1.7;
                color: var(--text-dark);
                margin-bottom: 24px;
                font-style: italic;
            }
            
            .testimonial-author {
                display: flex;
                align-items: center;
                gap: 16px;
            }
            
            .author-avatar {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background: var(--mineral-green);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--off-white);
                font-weight: 700;
                font-size: 18px;
            }
            
            .author-name {
                font-weight: 600;
                color: var(--text-dark);
            }
            
            .author-course {
                font-size: 13px;
                color: var(--text-medium);
            }
            
            
                    /* Scroll to Top Button */
                    .scroll-top {
                        position: fixed;
                        bottom: 40px;
                        right: 40px;
                        width: 56px;
                        height: 56px;
                        background: var(--mineral-green);
                        color: var(--off-white);
                        border: none;
                        border-radius: 50%;
                        font-size: 20px;
                        cursor: pointer;
                        opacity: 0;
                        visibility: hidden;
                        transition: all 0.4s ease;
                        box-shadow: 0 10px 30px rgba(61, 107, 92, 0.3);
                        z-index: 999;
                    }
                    
                    .scroll-top.visible {
                        opacity: 1;
                        visibility: visible;
                    }
                    
                    .scroll-top:hover {
                        background: var(--mineral-green-light);
                        transform: translateY(-5px);
                    }
                    
                    /* Loading Animation */
                    .course-card.loading .course-image::after {
                        animation: shimmer 2s infinite;
                    }
                    
                    @keyframes shimmer {
                        0% { background-position: -1000px 0; }
                        100% { background-position: 1000px 0; }
                    }
                    
                    /* Responsive Design */
                    @media (max-width: 1024px) {
                        .courses-container {
                            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
                            gap: 40px;
                        }
                        
                        .hero-stats {
                            gap: 40px;
                        }
                    }
                    
                    @media (max-width: 768px) {
                        .navlist {
                            display: none;
                        }
                        
                        .page-title {
                            font-size: 42px;
                        }
                        
                        .page-subtitle {
                            font-size: 17px;
                        }
                        
                        .courses-container {
                            grid-template-columns: 1fr;
                            padding: 0 0 60px;
                        }
                        
                        .course-card {
                            height: 500px;
                        }
                        
                        .hero-stats {
                            flex-direction: column;
                            gap: 30px;
                        }
                        
                        .showcase-item {
                            flex: 0 0 280px;
                        }
                        
                        .scroll-top {
                            bottom: 20px;
                            right: 20px;
                            width: 50px;
                            height: 50px;
                        }
                    }
                    
                    @media (max-width: 576px) {
                        .page-title {
                            font-size: 36px;
                        }
                        
                        .page-subtitle {
                            font-size: 16px;
                        }
                        
                        .course-filters {
                            justify-content: flex-start;
                            overflow-x: auto;
                            padding-bottom: 10px;
                            margin: 40px 0 60px;
                        }
                        
                        .filter-btn {
                            flex-shrink: 0;
                        }
                        
                        .stat-number {
                            font-size: 36px;
                        }
                        
                        .section-title {
                            font-size: 36px;
                        }
                    }
            
                           /* Hero Section */
                           .services-hero {
                            padding: 120px 0 80px;
                            background: linear-gradient(135deg, var(--mineral-green-pale) 0%, var(--off-white) 100%);
                            position: relative;
                            overflow: hidden;
                        }
                
                        .hero-pattern {
                            position: absolute;
                            width: 100%;
                            height: 100%;
                            background-image: 
                                radial-gradient(circle at 20% 30%, rgba(61, 107, 92, 0.08) 0%, transparent 50%),
                                radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
                        }
                
                        .hero-content {
                            position: relative;
                            z-index: 1;
                            text-align: center;
                        }
                
                        .hero-title {
                            font-family: 'Playfair Display', serif;
                            font-size: 64px;
                            font-weight: 900;
                            color: var(--mineral-green);
                            margin-bottom: 24px;
                            letter-spacing: -1px;
                            animation: fadeInUp 0.8s ease-out;
                        }
                
                        .hero-subtitle {
                            font-size: 19px;
                            color: var(--text-medium);
                            max-width: 720px;
                            margin: 0 auto 48px;
                            line-height: 1.7;
                            animation: fadeInUp 0.8s ease-out 0.2s backwards;
                        }
                
                        @keyframes fadeInUp {
                            from {
                                opacity: 0;
                                transform: translateY(30px);
                            }
                            to {
                                opacity: 1;
                                transform: translateY(0);
                            }
                        }
                
                        /* Service Categories Filter */
                        .service-filters {
                            display: flex;
                            justify-content: center;
                            flex-wrap: wrap;
                            gap: 16px;
                            margin: 60px 0 80px;
                        }
                
                        .filter-btn {
                            padding: 14px 32px;
                            background: var(--off-white-dark);
                            border: 2px solid transparent;
                            border-radius: 50px;
                            cursor: pointer;
                            font-family: 'Jost', sans-serif;
                            font-weight: 600;
                            font-size: 15px;
                            letter-spacing: 0.3px;
                            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                            color: var(--text-dark);
                            position: relative;
                            overflow: hidden;
                        }
                
                        .filter-btn::before {
                            content: '';
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            width: 0;
                            height: 0;
                            border-radius: 50%;
                            background: var(--mineral-green);
                            transform: translate(-50%, -50%);
                            transition: width 0.5s ease, height 0.5s ease;
                            z-index: -1;
                        }
                
                        .filter-btn.active,
                        .filter-btn:hover {
                            color: var(--off-white);
                            border-color: var(--mineral-green);
                            transform: translateY(-3px);
                            box-shadow: 0 12px 30px rgba(61, 107, 92, 0.2);
                        }
                
                        .filter-btn.active::before,
                        .filter-btn:hover::before {
                            width: 300px;
                            height: 300px;
                        }
                
                        /* 3D Services Grid */
                        .services-container {
                            display: grid;
                            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
                            gap: 48px;
                            padding: 0 0 100px;
                            perspective: 2000px;
                        }
                
                        .service-card {
                            position: relative;
                            height: 500px;
                            transform-style: preserve-3d;
                            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                            cursor: pointer;
                        }
                
                        .service-card:hover {
                            transform: rotateY(10deg) rotateX(5deg) translateY(-15px);
                        }
                
                        .service-card.flipped {
                            transform: rotateY(180deg);
                        }
                
                        .card-front,
                        .card-back {
                            position: absolute;
                            width: 100%;
                            height: 100%;
                            backface-visibility: hidden;
                            border-radius: 24px;
                            overflow: hidden;
                            box-shadow: var(--shadow-soft);
                        }
                
                        .card-front {
                            background: var(--white);
                            display: flex;
                            flex-direction: column;
                        }
                
                        .service-image {
                            height: 60%;
                            position: relative;
                            overflow: hidden;
                        }
                
                        .service-image img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            transition: transform 1s ease;
                            filter: brightness(0.95);
                        }
                
                        .service-card:hover .service-image img {
                            transform: scale(1.1);
                            filter: brightness(1);
                        }
                
                        .service-badge {
                            position: absolute;
                            top: 20px;
                            right: 20px;
                            background: var(--mineral-green);
                            color: var(--off-white);
                            padding: 8px 18px;
                            border-radius: 50px;
                            font-size: 11px;
                            font-weight: 700;
                            text-transform: uppercase;
                            letter-spacing: 1px;
                            box-shadow: 0 4px 15px rgba(61, 107, 92, 0.3);
                            z-index: 10;
                        }
                
                        .discount-badge {
                            position: absolute;
                            top: 70px;
                            right: 20px;
                            background: var(--accent-gold);
                            color: var(--off-white);
                            padding: 8px 18px;
                            border-radius: 50px;
                            font-size: 11px;
                            font-weight: 700;
                            text-transform: uppercase;
                            letter-spacing: 1px;
                            box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
                            z-index: 10;
                        }
                
                        .service-content {
                            padding: 32px;
                            flex-grow: 1;
                            display: flex;
                            flex-direction: column;
                        }
                
                        .service-title {
                            font-family: 'Playfair Display', serif;
                            font-size: 26px;
                            font-weight: 700;
                            color: var(--text-dark);
                            margin-bottom: 16px;
                            line-height: 1.3;
                        }
                
                        .service-description {
                            font-size: 15px;
                            color: var(--text-medium);
                            line-height: 1.6;
                            margin-bottom: 24px;
                            flex-grow: 1;
                        }
                
                        .price-container {
                            display: flex;
                            align-items: center;
                            gap: 16px;
                            margin-bottom: 20px;
                        }
                
                        .current-price {
                            font-family: 'Playfair Display', serif;
                            font-size: 36px;
                            font-weight: 800;
                            color: var(--mineral-green);
                        }
                
                        .original-price {
                            font-size: 24px;
                            color: var(--text-light);
                            text-decoration: line-through;
                        }
                
                        .book-btn {
                            background: var(--mineral-green);
                            color: var(--off-white);
                            padding: 16px 32px;
                            border: none;
                            border-radius: 50px;
                            font-family: 'Jost', sans-serif;
                            font-weight: 700;
                            font-size: 16px;
                            cursor: pointer;
                            transition: all 0.4s ease;
                            box-shadow: 0 8px 20px rgba(61, 107, 92, 0.2);
                        }
                
                        .book-btn:hover {
                            background: var(--mineral-green-light);
                            transform: translateY(-3px);
                            box-shadow: 0 12px 30px rgba(61, 107, 92, 0.3);
                        }
                
                        /* Card Back */
                        .card-back {
                            background: linear-gradient(135deg, var(--mineral-green) 0%, var(--mineral-green-light) 100%);
                            color: var(--off-white);
                            transform: rotateY(180deg);
                            padding: 40px;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;
                            position: relative;
                            overflow: hidden;
                        }
                
                        .card-back::before {
                            content: '';
                            position: absolute;
                            top: -50%;
                            right: -50%;
                            width: 200%;
                            height: 200%;
                            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                            animation: pulse 15s infinite ease-in-out;
                        }
                
                        @keyframes pulse {
                            0%, 100% {
                                transform: scale(1);
                                opacity: 0.3;
                            }
                            50% {
                                transform: scale(1.2);
                                opacity: 0.5;
                            }
                        }
                
                        .back-content {
                            position: relative;
                            z-index: 1;
                        }
                
                        .back-title {
                            font-family: 'Playfair Display', serif;
                            font-size: 28px;
                            font-weight: 800;
                            margin-bottom: 20px;
                            line-height: 1.2;
                        }
                
                        .service-details {
                            list-style: none;
                            margin-bottom: 32px;
                        }
                
                        .service-details li {
                            padding: 12px 0;
                            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                            font-size: 15px;
                            display: flex;
                            align-items: center;
                            gap: 12px;
                        }
                
                        .service-details li:last-child {
                            border-bottom: none;
                        }
                
                        .service-details li::before {
                            content: '✓';
                            font-size: 18px;
                            font-weight: bold;
                            color: var(--accent-gold);
                        }
                
                        /* Floating Elements */
                        .floating-element {
                            position: absolute;
                            border-radius: 50%;
                            z-index: 0;
                            filter: blur(60px);
                            animation: float 20s infinite ease-in-out;
                        }
                
                        .float-1 {
                            width: 300px;
                            height: 300px;
                            background: radial-gradient(circle, rgba(61, 107, 92, 0.15) 0%, transparent 70%);
                            top: -150px;
                            left: -100px;
                            animation-delay: 0s;
                        }
                
                        .float-2 {
                            width: 400px;
                            height: 400px;
                            background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
                            top: 20%;
                            right: -150px;
                            animation-delay: 3s;
                        }
                
                        .float-3 {
                            width: 250px;
                            height: 250px;
                            background: radial-gradient(circle, rgba(61, 107, 92, 0.1) 0%, transparent 70%);
                            bottom: -100px;
                            left: 20%;
                            animation-delay: 6s;
                        }
                
                        @keyframes float {
                            0%, 100% {
                                transform: translate(0, 0) scale(1);
                            }
                            33% {
                                transform: translate(30px, -40px) scale(1.1);
                            }
                            66% {
                                transform: translate(-20px, 20px) scale(0.9);
                            }
                        }
                