:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.logo-text {
    font-size: 2rem;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}

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

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

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Header & Nav */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

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

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}



.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    position: relative;
    font-weight: 500;
    color: var(--text-main);
    padding-bottom: 4px;
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links li a:not(.btn):hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05), transparent);
    position: relative;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-text h1 span {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    position: relative;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-card i {
    width: 40px;
    height: 40px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-card span {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.c1 { top: 20%; left: -20px; animation: float 3s ease-in-out infinite; }
.c2 { bottom: 10%; right: -20px; animation: float 3s ease-in-out 1.5s infinite; }

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

/* Services */
.services {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.2);
}

.card-img {
    height: 250px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 25px;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-card ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-card ul li i {
    color: #22c55e;
}

/* Vacation Classes */
.vacation-classes {
    padding: 100px 0;
    background: #0f172a;
    color: white;
}

.vacation-classes .section-header p {
    color: #94a3b8;
}

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

.vacation-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.vacation-card:hover {
    background: rgba(79, 70, 229, 0.15);
    border-color: var(--primary);
    transform: scale(1.05);
}

.vacation-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.vacation-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vacation-card h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.vacation-card p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.class-photos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.class-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.class-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

/* About Section Enhancements */
.about {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
}

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

.about-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.goals-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0 40px;
}

.goal-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.goal-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.goal-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    background: rgba(245, 158, 11, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.goal-card h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.goal-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Founder Section */
.founder-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.founder-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
}

.founder-info {
    padding: 40px;
    text-align: center;
}

.founder-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.founder-info span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.founder-info p {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.founder-social a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
}

.founder-social a:hover {
    background: var(--primary);
    color: white;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: var(--transition);
}

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

/* Reviews Slider Section */
.reviews-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.reviews-header p {
    color: var(--text-muted);
}

.reviews-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: 100%;
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    opacity: 0.5;
    transform: scale(0.9);
    transition: var(--transition);
}

.review-card.current {
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.1);
}

.review-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reviewer-meta {
    text-align: left;
}

.reviewer-name {
    display: block;
    font-weight: 600;
    color: var(--text-main);
}

.review-source {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-source i {
    color: #4285F4; /* Google Blue */
}

/* Dots Navigation */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .review-card {
        padding: 30px 20px;
    }
    .review-text {
        font-size: 1rem;
    }
}

/* Mobile Responsive Updates */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .founder-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Contact */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.contact-info {
    padding: 60px;
    background: var(--primary);
    color: white;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 40px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    padding: 60px;
}

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

input, select, textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-message {
    margin-bottom: 20px;
    padding: 12px 20px;
    border-radius: 12px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #0f172a;
    color: white;
}

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

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo p {
    color: #94a3b8;
    margin-top: 10px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-links a {
    font-size: 1.5rem;
    color: #94a3b8;
}

.social-links a:hover {
    color: white;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-up.appear {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-fade {
    opacity: 0;
    transform: scale(0.98);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-fade.appear {
    opacity: 1;
    transform: scale(1);
}

.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content, .services-grid, .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        margin-right: auto;
    }

    .hero-btns {
        justify-content: flex-start;
    }

    .hero-image {
        margin-top: 40px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    nav .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .contact-info, .contact-form {
        padding: 40px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* ======================== */
/* BLOG SECTION & BLOG PAGE */
/* ======================== */
.blog-teaser {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(79, 70, 229, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.blog-hero {
    padding: 180px 0 80px;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.05), transparent);
}

.blog-posts {
    padding-bottom: 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    /* 3D float logic */
    transform: perspective(1000px) rotateX(0deg) translateY(0);
}

.blog-card:hover {
    transform: perspective(1000px) rotateX(2deg) translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.2);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.12);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
}

.read-more {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more {
    color: var(--primary-dark);
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* ======================== */
/* FULL ARTICLE PAGE        */
/* ======================== */
.article-container {
    max-width: 800px;
    margin: 120px auto 100px;
    padding: 0 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.article-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
}

.article-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

.article-body {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin: 40px 0 20px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.article-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: decimal;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    margin: 30px 0;
    font-style: italic;
    color: var(--text-muted);
    background: rgba(79, 70, 229, 0.05);
    padding: 20px 20px 20px 30px;
    border-radius: 0 12px 12px 0;
}
/* Location Map Section */
.location {
    padding: 100px 0;
    background: var(--bg-white);
}

.map-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    filter: grayscale(0.2) contrast(1.1);
    transition: var(--transition);
}

.map-wrapper:hover iframe {
    filter: grayscale(0) contrast(1);
}

@media (max-width: 768px) {
    .location {
        padding: 60px 0;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}
