﻿/* ============================================================
   ANIL FALFUL NURSERY KRISHI FARM - PREMIUM STYLES
   Market Value: 10 Lakh+ | Nepal's No.1 Developer
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --secondary: #d97706;
    --secondary-light: #f59e0b;
    --accent: #7c3aed;
    --bg: #f0fdf4;
    --card: #ffffff;
    --text: #0f172a;
    --text-light: #64748b;
    --shadow: 0 20px 60px -15px rgba(5, 150, 105, 0.12);
    --shadow-hover: 0 30px 80px -15px rgba(5, 150, 105, 0.2);
    --radius: 24px;
    --radius-sm: 14px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, #059669, #10b981);
    --gradient-secondary: linear-gradient(135deg, #d97706, #f59e0b);
}

/* ===== DARK THEME ===== */
body.dark {
    --bg: #0f172a;
    --card: #1e293b;
    --text: #f1f5f9;
    --text-light: #94a3b8;
    --shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 30px 80px -15px rgba(0, 0, 0, 0.8);
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

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

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
    position: relative;
    width: 80px;
    height: 80px;
}
.loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid var(--primary);
    border-radius: 50%;
    animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--primary) transparent transparent transparent;
}
.loader-ring div:nth-child(1) { animation-delay: -0.45s; }
.loader-ring div:nth-child(2) { animation-delay: -0.3s; }
.loader-ring div:nth-child(3) { animation-delay: -0.15s; }
@keyframes loader-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: var(--card);
    box-shadow: var(--shadow);
    padding: 10px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}
.brand-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.brand-text small {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.85rem;
    transition: color var(--transition);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient);
    border-radius: 10px;
    transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.theme-toggle, .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-toggle:hover, .menu-toggle:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(15deg);
}
.menu-toggle { display: none; }

@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: var(--card);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-hover);
        gap: 16px;
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}
/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08), transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06), transparent 70%);
    pointer-events: none;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .hero-badge {
    display: inline-block;
    padding: 6px 22px;
    border-radius: 50px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}
.hero-text h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 6px 0 12px;
}
.hero-desc-box {
    background: var(--card);
    padding: 14px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    margin: 12px 0 20px;
}
.hero-desc-box p {
    font-weight: 500;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}
.hero-stats .stat {
    text-align: center;
}
.hero-stats .stat span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}
.hero-stats .stat label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(5, 150, 105, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.6);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text-light);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}
.hero-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-width: 460px;
    margin: 0 auto;
    border-radius: 30px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 60px -20px rgba(5, 150, 105, 0.4);
    position: relative;
    overflow: hidden;
}
.hero-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 60%);
}
.hero-placeholder i {
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.6rem; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-desc-box { text-align: left; }
    .hero-image { order: -1; }
    .hero-placeholder { max-width: 280px; font-size: 5rem; }
    .hero::before, .hero::after { display: none; }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    padding: 4px 20px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 10px auto 0;
}

/* ===== ABOUT ===== */
.about { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.about-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid transparent;
}
.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}
.about-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(5, 150, 105, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.about-card p { color: var(--text-light); }

/* ===== PAN DETAILS ===== */
.pan-details { padding: 60px 0; background: var(--bg); }
.pan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.pan-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}
.pan-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pan-card h3 i { color: var(--primary); }
.pan-card p { color: var(--text-light); margin-bottom: 6px; }
.pan-card p strong { color: var(--text); }

@media (max-width: 768px) {
    .pan-grid { grid-template-columns: 1fr; }
}
/* ===== PRODUCTS ===== */
.products { padding: 80px 0; background: var(--bg); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--card);
    border-radius: var(--radius-sm);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 2px solid transparent;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.product-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.product-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.product-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== TEAM ===== */
.team { padding: 80px 0; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 4px solid var(--primary);
}
.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
}
.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h3 { font-size: 1.2rem; }
.team-role { margin: 6px 0 12px; }
.role-badge {
    display: inline-block;
    padding: 2px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}
.role-badge.ceo { background: var(--gradient); }
.role-badge.sales { background: var(--gradient-secondary); }
.role-badge.accounts { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.team-contact p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 4px 0;
}
.team-contact i { color: var(--primary); width: 20px; }

/* ===== GALLERY ===== */
.gallery { padding: 80px 0; background: var(--bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    background: var(--card);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.gallery-item span {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== CONTACT ===== */
.contact { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item h4 { font-size: 0.8rem; font-weight: 600; opacity: 0.7; }
.contact-item p { font-weight: 500; }
.contact-item a { color: var(--primary); }
.contact-item a:hover { text-decoration: underline; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    background: var(--card);
    color: var(--text);
    font-size: 1rem;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.08);
}
.contact-form textarea { resize: vertical; }
.contact-form button { width: 100%; justify-content: center; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }
}

/* ===== DEVELOPER SECTION ===== */
.developer-section {
    padding: 80px 0;
    background: var(--bg);
    border-top: 4px solid var(--primary);
    border-bottom: 4px solid var(--secondary);
}
.developer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.dev-image {
    display: flex;
    justify-content: center;
}
.dev-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: #fff;
    box-shadow: 0 20px 60px -15px rgba(5, 150, 105, 0.3);
    transition: all var(--transition);
    overflow: hidden;
}
.dev-placeholder:hover {
    transform: scale(1.05) rotate(5deg);
}
.dev-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dev-badge {
    display: inline-block;
    padding: 4px 18px;
    border-radius: 50px;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.dev-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dev-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 4px 0 12px;
}
.dev-desc {
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 20px;
}
.dev-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-label { font-size: 0.75rem; color: var(--text-light); }
.dev-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.dev-links .btn { padding: 10px 24px; font-size: 0.85rem; }
.dev-links .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}
.dev-links .btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.dev-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.dev-badges .badge {
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.08);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(5, 150, 105, 0.15);
}

@media (max-width: 768px) {
    .developer-content { grid-template-columns: 1fr; text-align: center; }
    .dev-placeholder { width: 150px; height: 150px; font-size: 5rem; }
    .dev-stats { justify-content: center; }
    .dev-links { justify-content: center; }
    .dev-badges { justify-content: center; }
    .dev-desc { margin: 0 auto 20px; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--card);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}
.footer-bottom a { color: var(--primary); font-weight: 600; }

@media (max-width: 768px) {
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px -10px rgba(5, 150, 105, 0.4);
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===== MAP CONTAINER ===== */
.map-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(5, 150, 105, 0.1);
}
.map-container h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.map-container h3 i { color: var(--primary); }

/* ===== LARGE MAP SECTION ===== */
.map-section {
    padding: 80px 0;
    background: var(--bg);
}
.map-large-container {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}
.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 500px;
}
.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pinBounce 2s ease-in-out infinite;
}
.map-pin i {
    font-size: 3.5rem;
    color: #ef4444;
    text-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
}
.pin-label {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    white-space: nowrap;
}
@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.map-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.map-address {
    margin-top: 20px;
    padding: 18px 24px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    justify-content: center;
}
.map-address p {
    font-size: 0.95rem;
    margin: 0;
}
.map-address i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
    .map-pin i {
        font-size: 2.5rem;
    }
    .pin-label {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    .map-address {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }
}
