/* Reset & Base Styles */
:root {
    /* Core Colors */
    --primary-color: #030e2c;
    --primary-dark: #020817;
    --accent-color: #d4af37;
    /* Classic Gold */
    --accent-glow: rgba(212, 175, 55, 0.5);
    --accent-light: #f9eeb8;

    /* Text Colors */
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --text-dark: #1a1a1a;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 15px;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--primary-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(3, 14, 44, 1) 0%, transparent 40%);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

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

.text-gold {
    color: var(--accent-color);
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-header p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-top: 10px;
}

/* Navbar - Glass Effect */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(2, 8, 23, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(2, 8, 23, 0.95);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 6px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video always covers the area without black bars */
    z-index: -2;
    /* Reduced blur and increased brightness for better visibility */
    filter: blur(4px) brightness(0.5);
    transform: scale(1.05);
    /* Slight scale to hide blur edges */
}

/* Removed complex media query hack as object-fit: cover handles it natively */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter gradient to show more background */
    background:
        linear-gradient(to bottom, rgba(2, 8, 23, 0.2) 0%, rgba(2, 8, 23, 0.6) 100%),
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px;
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 10;
    margin-top: 60px;
}

.hero-main-logo {
    max-width: 300px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-content .subtitle {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Modern Button */
.btn {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.9rem;
}

.btn-primary {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* To stack on very small screens */
}

/* Laptop & Smaller Screen Optimization for Hero */
@media screen and (max-height: 850px),
screen and (max-width: 1366px) {
    .hero-main-logo {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .hero-content .subtitle {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
    }

    .hero-content .tagline {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
}

/* About Section */
.about {
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/logo/logo_saydam.png') no-repeat center center;
    background-size: 60%;
    opacity: 0.03;
    pointer-events: none;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 2;
}

/* Glass Cards (Services) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.1);
    /* Gold glow */
}

.service-img {
    height: 260px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Stylish Gold Gradient Overlay */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(3, 14, 44, 0.6) 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

/* Hide the old icon */
.service-overlay i {
    display: none;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section Refactored */
.contact {
    background: transparent;
    /* Use body gradient */
    padding-top: 50px;
}

.contact-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

/* Default Mobile: Vertically stacked (auto) */

/* Desktop Grid Layout */
@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "persons social"
            "map map";
    }

    .card-persons {
        grid-area: persons;
    }

    .card-social {
        grid-area: social;
    }

    .card-map {
        grid-area: map;
    }

    .card-map .map-wrapper {
        height: 400px;
        /* Larger map on desktop */
    }
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    /* Ensure full height in grid */
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 25px;
}

/* Person List styling */
.person-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Increased gap for better spacing */
}

.person-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px;
    flex: 1;
    min-width: 0;
    /* Prevent flex overflow */
}

.person-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
    white-space: nowrap;
    /* Keep names on one line if possible */
}

.person-details .role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    /* CRITICAL: Prevent phone number wrapping */
    width: auto;
}

.btn-call:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #25D366;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 1px solid #25D366;
    white-space: nowrap;
    width: auto;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.sep-line {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 10px auto;
}

/* Side-by-side persons on desktop */
@media (min-width: 600px) {

    /* Keep persons stacked vertically even on desktop for cleaner look */
    .person-list {
        flex-direction: column;
        gap: 15px;
    }

    .person-item {
        padding: 0 10px;
        width: 100%;
    }

    /* Override any previous vertical line styles if present, keep it horizontal */
    .sep-line {
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
        margin: 5px auto;
    }
}

.sep-line {
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px auto;
}

/* Map Card Styling */
.address-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-link {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-link:hover {
    text-decoration: underline;
}

/* Social Media Card styling */
.social-grid {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.social-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-box i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.social-box span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-box.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    border-color: transparent;
    transform: translateY(-5px);
}

.social-box.tiktok:hover {
    background: #000;
    border-color: #25F4EE;
    box-shadow: 2px 2px 0 #FE2C55, -2px -2px 0 #25F4EE;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Detail Page specific additions to ensure nothing breaks */
.detail-header {
    height: 60vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 14, 44, 0.3), var(--primary-dark));
}

.detail-content {
    background: var(--glass-bg);
    color: var(--text-main);
    margin-top: -100px;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--glass-shadow);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.mini-gallery-item img,
.mini-gallery-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-gallery-item:hover img,
.mini-gallery-item:hover video {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

/* Lightbox */
.lightbox {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(212, 175, 55, 0.8);
}

/* Play Icon for Videos */
.mini-gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    transition: var(--transition-fast);
}

.mini-gallery-item:hover .play-icon {
    color: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 900px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: rgba(2, 8, 23, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s ease-in-out;
        gap: 30px;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.toggle .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.toggle .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .detail-content {
        margin-top: -50px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content .subtitle {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 30px;
    }
}

/* References Section Styles */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reference-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: 15px;
    padding: 10px;
    /* Reduced padding for bigger logos */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    /* Increased height */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.reference-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
}

.reference-card img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    /* mix-blend-mode removed to support colored logos */
    transition: var(--transition-fast);
    opacity: 0.8;
}

.reference-card:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Adjust for mobile to show 2 columns */
@media (max-width: 600px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .reference-card {
        padding: 5px;
        height: 120px;
    }
}

.since-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--accent-light);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    animation: fadeInUp 0.8s ease forwards, pulse-gold 3s infinite ease-in-out;
    opacity: 0;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}