@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-light: #ff6b6b;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: rgba(212, 175, 55, 0.3);
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --text-dark: #1a1a2e;
    --text-muted: #a0a0a0;
    --dark: #0d0d0d;
    --dark-lighter: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-accent: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.sg-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sg-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.sg-preloader-content {
    text-align: center;
}

.sg-preloader-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
    text-align: center;
}

.sg-preloader-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.sg-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.sg-navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-medium);
}

.sg-navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sg-navbar-logo img {
    height: 50px;
    transition: var(--transition);
}

.sg-navbar.scrolled .sg-navbar-logo img {
    height: 40px;
}

.sg-navbar-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.sg-navbar-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.sg-navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.sg-navbar-menu a:hover::after {
    width: 100%;
}

.sg-navbar-menu a:hover {
    color: var(--gold);
}

.sg-navbar-cta {
    background: var(--gradient-gold);
    color: var(--primary) !important;
    padding: 12px 30px !important;
    border-radius: 50px;
    font-weight: 600 !important;
}

.sg-navbar-cta::after {
    display: none !important;
}

.sg-navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.sg-navbar-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.sg-navbar-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.sg-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.sg-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.sg-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sg-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sg-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.1s linear;
}

.sg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.7) 50%, rgba(15, 52, 96, 0.8) 100%);
}

.sg-signature-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 5;
    pointer-events: none;
    will-change: transform, filter, opacity;
    transition: all 0.15s linear;
    opacity: 0;
    filter: blur(30px);
}

.sg-hero.animations-ready .sg-signature-bg {
    animation: signatureReveal 2s ease 0.3s forwards;
}

@keyframes signatureReveal {
    0% {
        opacity: 0;
        filter: blur(30px);
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
    }
}

.sg-signature-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(5rem, 18vw, 16rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.02em;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.1);
}

.sg-signature-svg {
    width: clamp(400px, 80vw, 1200px);
    height: auto;
    color: rgba(255, 255, 255, 0.45);
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.15));
    user-select: none;
}

.sg-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}

.sg-hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.sg-hero.animations-ready .sg-hero-badge {
    animation: blurReveal 1.2s ease 0.1s forwards;
}

.sg-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.sg-hero.animations-ready .sg-hero-title {
    animation: blurReveal 1.5s ease 0.4s forwards;
}

.sg-hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.sg-hero.animations-ready .sg-hero-subtitle {
    animation: blurReveal 1.2s ease 1s forwards;
}

.sg-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.sg-hero.animations-ready .sg-hero-buttons {
    animation: blurReveal 1.2s ease 1.4s forwards;
}

@keyframes blurReveal {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.sg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.sg-btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.sg-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.sg-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

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

.sg-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.sg-hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sg-hero-scroll .scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    position: relative;
}

.sg-hero-scroll .scroll-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

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

@keyframes scrollDown {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sg-section {
    padding: 120px 0;
    position: relative;
}

.sg-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.sg-section-badge {
    display: inline-block;
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.sg-section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.sg-section-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-section-desc {
    color: var(--gray);
    font-size: 1.1rem;
}

.sg-parallax-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sg-parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    z-index: -1;
}

.sg-parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.85) 100%);
}

.sg-schedule {
    background: var(--gray-light);
}

.sg-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sg-schedule-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sg-schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.sg-schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

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

.sg-schedule-card.today {
    background: var(--gradient-primary);
    color: var(--white);
}

.sg-schedule-card.today::before {
    transform: scaleX(1);
}

.sg-schedule-card.today .sg-schedule-day {
    color: var(--gold);
}

.sg-schedule-card.today .sg-schedule-hours {
    color: rgba(255,255,255,0.9);
}

.sg-schedule-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.sg-schedule-hours {
    color: var(--gray);
    font-size: 0.95rem;
}

.sg-schedule-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 10px;
}

.sg-prices {
    background: var(--white);
}

.sg-prices-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sg-prices-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
}

.sg-prices-image:hover {
    transform: scale(1.02);
}

.sg-prices-image img {
    width: 100%;
    display: block;
}

.sg-stats {
    position: relative;
    z-index: 10;
    padding: 80px 30px;
}

.sg-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sg-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.sg-stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.sg-stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.sg-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.sg-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sg-contact {
    position: relative;
    z-index: 10;
    padding: 120px 0;
}

.sg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.sg-contact-content {
    color: var(--white);
}

.sg-contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.sg-contact-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-contact-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.sg-contact-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.sg-contact-phone-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.sg-contact-phone-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
}

.sg-contact-phone-number a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.sg-contact-phone-number a:hover {
    color: var(--gold);
}

.sg-contact-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    color: rgba(255,255,255,0.5);
}

.sg-contact-divider::before,
.sg-contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.sg-contact-map {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    height: 450px;
}

.sg-contact-map #map {
    width: 100%;
    height: 100%;
}

.sg-footer {
    background: var(--primary);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.sg-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.sg-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.sg-footer-brand {
    max-width: 300px;
}

.sg-footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.sg-footer-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.sg-footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.sg-footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.sg-footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.sg-footer-links {
    list-style: none;
}

.sg-footer-links li {
    margin-bottom: 12px;
}

.sg-footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sg-footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.sg-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.sg-footer-contact-item i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
}

.sg-footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.sg-footer-contact-item a:hover {
    color: var(--gold);
}

.sg-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.sg-footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.sg-floating-shapes {
    display: none;
}

.sg-floating-shape {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 15px) rotate(3deg);
    }
}

.sg-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sg-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.sg-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sg-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.sg-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sg-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .sg-navbar-menu {
        display: none;
    }
    
    .sg-mobile-toggle {
        display: flex;
    }
    
    .sg-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sg-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .sg-footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sg-section {
        padding: 80px 0;
    }
    
    .sg-schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sg-stats {
        padding: 60px 20px;
    }
    
    .sg-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sg-stat-card {
        padding: 25px 15px;
    }
    
    .sg-signature-text {
        font-size: clamp(3rem, 15vw, 8rem);
    }
    
    .sg-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sg-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sg-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sg-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.marker {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    cursor: pointer;
    animation: markerPulse 2s infinite;
}

.marker::after {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(45deg);
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(212, 175, 55, 0.8);
    }
}

.sg-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: right 0.4s ease;
    padding: 100px 40px 40px;
}

.sg-mobile-menu.active {
    right: 0;
}

.sg-mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.sg-mobile-menu-close:hover {
    background: var(--gold);
    color: var(--primary);
}

.sg-mobile-menu-list {
    list-style: none;
}

.sg-mobile-menu-list li {
    margin-bottom: 20px;
}

.sg-mobile-menu-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    transition: var(--transition);
}

.sg-mobile-menu-list a:hover {
    color: var(--gold);
}

.sg-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sg-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

