/* =========================================
   Variables & Theme
   ========================================= */
:root {
    --primary: #A4D65E;       /* Lime Green from Logo */
    --primary-dark: #8cbb4c;
    --dark: #121212;
    --dark-grey: #1E1E1E;
    --light-grey: #FFFFFF;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
    --shadow-premium: 0 15px 35px rgba(164, 214, 94, 0.2);
    
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--light-grey);
}

.highlight {
    color: var(--primary);
}

/* =========================================
   Typography & Utilities
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(164, 214, 94, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 214, 94, 0.4);
}

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-text {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 35px;
    width: auto;
    transition: var(--transition);
}

.logo-black {
    display: none;
}

.navbar.scrolled .logo-white {
    display: none;
}

.navbar.scrolled .logo-black {
    display: block;
}

/* Footer always shows white logo */
.footer-brand .logo-white {
    display: block !important;
}

.footer-brand .logo-black {
    display: none !important;
}

.footer-brand .logo-img {
    height: 50px;
}



.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--white); /* White on hero initially */
    position: relative;
}

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

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

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax */
    background-image: url('assets/Gemini_Generated_Image_b85y2db85y2db85y.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.93) 0%, rgba(18, 18, 18, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    padding-top: 5rem;
}

.floating-text {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* ---- Google Flow Sideways Hero Animation ---- */
.hero-slide-side {
    opacity: 0;
    transform: translateX(-60px);
    filter: blur(5px);
    /* Google Material Design Easing (Decelerated curve) */
    transition: opacity 1.2s cubic-bezier(0.4, 0.0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1),
                filter 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.hero-slide-side.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

h1.hero-slide-side {
    transition-delay: 0.2s;
}

p.hero-slide-side {
    transition-delay: 0.4s;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 1rem;
    font-weight: 300;
}

a.hero-slide-side {
    transition-delay: 0.6s;
}

/* =========================================
   Core Pillars
   ========================================= */
.pillars {
    position: relative;
    z-index: 20;
    background: var(--white);
    margin-top: -3rem;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(164, 214, 94, 0.1);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

/* =========================================
   Service Packages
   ========================================= */
.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
    width: calc(33.333% - 1.34rem);
    min-width: 280px;
}

/* Apple/Google-style slow pop-up animation for package cards */
@keyframes packagePopUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.88);
        filter: blur(4px);
    }
    60% {
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.package-card.reveal.active {
    animation: packagePopUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.package-card.reveal.active:nth-child(3n+1) { animation-delay: 0s; }
.package-card.reveal.active:nth-child(3n+2) { animation-delay: 0.15s; }
.package-card.reveal.active:nth-child(3n+3) { animation-delay: 0.3s; }

.package-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-top-color: var(--primary);
    z-index: 10;
}

.package-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
}

.package-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.package-best-for {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.package-highlights {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.package-highlights li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.package-highlights i {
    color: var(--primary);
    margin-top: 4px;
}

.package-card .btn {
    width: 100%;
}

/* Special Cards */
.package-card.popular {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-premium);
    z-index: 2;
}

.package-card.popular:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(164, 214, 94, 1);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-card.premium {
    background: var(--dark);
    color: var(--white);
}

.package-card.premium:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(164, 214, 94, 1);
    z-index: 10;
}

.package-card.premium h3,
.package-card.premium .package-best-for {
    color: var(--white);
}

.package-card.premium .package-price {
    color: var(--primary);
}

.package-card.premium .package-highlights i {
    color: var(--primary);
}

/* Express / Same-Day Delivery Card */
.package-card.express {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    border-top: 4px solid #f5a623;
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.25);
}

.package-card.express:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(245, 166, 35, 0.5);
    border-top-color: #f5a623;
    z-index: 10;
}

.package-card.express h3,
.package-card.express .package-number {
    color: #f5a623;
}

.package-card.express .package-price {
    color: #f5a623;
}

.package-card.express .package-best-for {
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(245, 166, 35, 0.2);
}

.package-card.express .package-highlights i {
    color: #f5a623;
}

.package-card.express .package-highlights li {
    color: rgba(255, 255, 255, 0.9);
}

.express-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f5a623, #f7c948);
    color: #1a1a2e;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.5);
    animation: expressGlow 2s ease-in-out infinite;
}

@keyframes expressGlow {
    0%, 100% { box-shadow: 0 4px 12px rgba(245, 166, 35, 0.5); }
    50%       { box-shadow: 0 4px 22px rgba(245, 166, 35, 0.9); }
}

/* =========================================
   Premium Add-Ons & Tech (Horizontal Scroll)
   ========================================= */
.gear {
    overflow: hidden;
}

.horizontal-scroll-container {
    width: 100%;
    padding: 2rem 0 4rem;
    /* Hide scrollbar for standard browsers */
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.gear-track {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gear-item {
    width: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    background: var(--dark);
    border: 1px solid rgba(164, 214, 94, 0.1);
    transition: var(--transition);
}

.gear-item:hover {
    box-shadow: 0 15px 35px rgba(164, 214, 94, 0.2);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.gear-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.8;
}

.gear-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.gear-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(18,18,18,0.95), transparent);
    color: var(--white);
}

.gear-info h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gear-info p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* =========================================
   Footer / Contact
   ========================================= */
.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}



.footer-brand p {
    margin-top: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 300px;
}

.footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-list i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
}

.contact-list a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* =========================================
   Animations (Scroll Reveal)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

.footer-booking {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 400px;
    width: 100%;
}

.footer-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.footer-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(164, 214, 94, 0.2);
}

/* =========================================
   Responsive Design
   ========================================= */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .hamburger {
    color: var(--dark);
}

@media (max-width: 992px) {
    .floating-text { font-size: 4rem; }
    .packages-grid { justify-content: center; }
    .package-card { width: calc(50% - 1rem); }
    .section-padding { padding: 4rem 0; }
}

@media (max-width: 768px) {
    .hamburger { display: block; z-index: 1001; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links a:not(.btn) { color: var(--white); font-size: 1.4rem; margin: 1rem 0; }
    .nav-links .btn { margin-top: 1rem; }

    .hero { background-attachment: scroll; }
    .hero-content { text-align: center; }
    p.hero-slide-side { margin: 0 auto 2rem; }
    .floating-text { font-size: 2.8rem; }

    .packages-grid { flex-direction: column; align-items: center; }
    .package-card { width: 100%; max-width: 480px; }
    .package-card.popular { transform: scale(1); }
    .package-card:hover,
    .package-card.popular:hover,
    .package-card.premium:hover { transform: none; }

    .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .footer-content { flex-direction: column; gap: 2rem; }
    .footer-brand,
    .footer-booking { min-width: unset !important; width: 100%; max-width: 100%; }

    .gear-track {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }
    .gear-item {
        width: 100%;
        max-width: 480px;
    }
    .gear-item img {
        height: 280px;
    }

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

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .floating-text { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .package-card { padding: 2rem 1.5rem; }
    .gear-item { width: 100%; max-width: 100%; }
    .pillars-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 3rem 0; }
}
/* =========================================
   Reveal Animations
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom.reveal-active {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Photo Grid (Media Mavericks Style) */
.featured-moments {
    background-color: var(--white);
    padding-bottom: 10rem;
}

.moment-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(10, 50px);
    gap: 1rem;
    margin-top: 5rem;
}

.moment-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.moment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.moment-item:hover img {
    transform: scale(1.1);
}

.item-1 { grid-column: 1 / 6; grid-row: 1 / 7; }
.item-2 { grid-column: 7 / 13; grid-row: 2 / 8; }
.item-3 { grid-column: 4 / 9; grid-row: 5 / 11; z-index: 5; }


.moment-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #FFFFFF; /* Explicit white */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.moment-caption h4 {
    color: #FFFFFF !important;
    margin-bottom: 0.5rem;
}

.moment-caption p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.moment-item:hover .moment-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Alignment for Camera Image (Item 2) */
.item-2 .moment-caption {
    bottom: auto;
    top: 0;
    text-align: right;
    background: linear-gradient(rgba(0,0,0,0.8), transparent);
    transform: translateY(-20px);
}

.item-2:hover .moment-caption {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .moment-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .moment-item { height: 300px; }
}

/* =========================================
   Custom Booking Confirmation Modal / Popup
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-content {
    background: #181818;
    border: 1px solid rgba(164, 214, 94, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(164, 214, 94, 0.08);
    border-radius: 24px;
    width: 92%;
    max-width: 460px;
    padding: 3.5rem 2.5rem 3rem;
    position: relative;
    color: var(--white);
    text-align: center;
    transform: scale(0.85) translateY(40px);
    transition: transform 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.18);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.modal-close-btn:hover {
    color: var(--primary);
    background: rgba(164, 214, 94, 0.1);
    transform: rotate(90deg);
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.8rem;
}

/* Premium Checkmark Drawing & Fill Animation */
.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--primary);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--primary);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s forwards;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--primary);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #121212; /* Contrasting dark check mark inside lime filled circle */
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 40px var(--primary);
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.modal-message {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.modal-message strong {
    color: var(--primary);
}

.modal-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.modal-details p {
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
}

.modal-details p:last-child {
    margin-bottom: 0;
}

.modal-details strong {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.modal-details span {
    color: var(--white);
    font-weight: 600;
}

.modal-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

