:root {
    --primary: #1E2A3D;
    --secondary: #111822; /* Dark navy */
    --background: #ffffff; /* White background */
    --accent: #C2A35C; /* Muted Gold Accent */
    --neutral: #334155; /* Slate Navy for body text */
    --heading-color: #1E2A3D; /* Deep Navy for headings */
    --white: #ffffff;
    --light-gray: #f5f6f8; /* Light contrast */
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(30, 42, 61, 0.3); /* Deep Navy shadow */
}

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

html {
    scroll-behavior: smooth;
}

body, input, button, textarea, select {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--neutral);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
    animation: continuousFade 4s ease-in-out infinite;
}

p, span, li, a {
    animation: continuousFade 4s ease-in-out infinite;
}

@keyframes continuousFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

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

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

.section {
    padding: 100px 0;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.section:hover {
    box-shadow: inset 0 0 50px rgba(194, 163, 92, 0.08);
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }
.bg-light { background-color: var(--white); }
.bg-dark { background-color: var(--light-gray); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 163, 92, 0.4);
    filter: brightness(1.05);
}

.btn-primary:disabled {
    background-color: #d4ccb8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

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

.btn-outline-accent {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 163, 92, 0.4);
}

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

.btn-white:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-text {
    background: transparent;
    color: var(--neutral);
    text-decoration: underline;
    padding: 8px;
}

.btn-text:hover {
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(30, 42, 61, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    white-space: nowrap;
}

.mobile-only {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(194, 163, 92, 0.4);
}

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

/* Hero Section */
.hero-new {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: #f5f1eb; /* Light cream fallback */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-bg .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s ease-in-out, transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-bg .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 241, 235, 0.85); /* Overlay to keep text perfectly legible */
    z-index: 1;
}

.hero-new-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(217, 83, 79, 0.1);
    color: #d9534f;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-new-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    color: #1e2a3d;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.hero-new-desc {
    font-size: 1.25rem;
    color: #5a6662;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
}

.hero-new-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-red {
    background-color: var(--accent); /* Muted gold */
    color: white;
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(194, 163, 92, 0.3);
    animation: pulseGlow 2.5s infinite;
    position: relative;
    overflow: hidden;
}

.btn-red:hover {
    background-color: #a38747; /* Darker muted gold */
    color: white;
}

.btn-white-outline {
    background-color: white;
    color: var(--primary); /* Navy blue */
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: none;
}

.btn-white-outline:hover {
    background-color: #f0f0f0;
}

/* Right Card */
.hero-new-card {
    position: relative;
}


.hero-card-inner {
    background: #faf6ef; /* Light related cream color instead of pure white */
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(194, 163, 92, 0.15); /* Subtle gold border to tie it together */
}

.hero-card-header {
    background-color: var(--accent); /* Muted gold */
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(194, 163, 92, 0.2);
}

.hero-card-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.hero-card-date {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-card-location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-card-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.regular-price {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.offer-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent); /* Muted gold */
    line-height: 1;
    margin-bottom: 5px;
}

.offer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.btn-green {
    background-color: var(--accent); /* Muted gold */
    color: white;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s infinite;
}

.btn-green:hover {
    background-color: #a38747; /* Darker muted gold */
    color: white;
}

.hero-card-alert {
    background-color: rgba(217, 83, 79, 0.1);
    color: #9a3324;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.hero-countdown {
    display: flex !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 0 !important;
}

.hero-countdown .countdown-box {
    flex: 1;
    background-color: var(--accent); /* Muted gold */
    color: var(--white);
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(194, 163, 92, 0.2);
}

.hero-countdown .countdown-box .val {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-countdown .countdown-box .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .hero-new-container {
        grid-template-columns: 1fr;
    }
    .hero-new-title {
        font-size: 3.5rem;
    }
    .hero-new-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-new-buttons .btn {
        text-align: center;
    }
}

/* Sections General */
.section-label {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.section-title:hover {
    transform: scale(1.02);
    text-shadow: 0 5px 15px rgba(194, 163, 92, 0.2);
}

.final-cta .section-title:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.section-title em {
    color: var(--accent);
    font-style: italic;
}

.title-underline {
    height: 3px;
    width: 60px;
    background-color: var(--accent);
    margin: 0 auto 40px;
}

/* Problem Section */
.problem {
    background-color: var(--white);
    color: var(--neutral);
}
.problem h2 {
    color: var(--heading-color);
}
.problem h2 em {
    color: var(--accent);
}
.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--neutral);
    margin-bottom: 30px;
}
.final-cta .lead-text {
    color: var(--white);
}

.symptom-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tag {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tag:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: var(--white);
}

.fade-text {
    font-style: italic;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 40px;
}

.solution-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: left;
    border-left: 5px solid var(--primary);
}

.solution-box p {
    color: var(--neutral);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.solution-box p:last-child {
    margin-bottom: 0;
}

/* About Section */
.about { background-color: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--neutral);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent);
    z-index: -1;
    border-radius: 20px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.approach-card {
    background: var(--background);
    color: var(--neutral);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.approach-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary);
}

/* Experience Section */
.experience {
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(194, 163, 92, 0.1) 0%, transparent 70%);
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.exp-tag {
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.exp-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.exp-tag:hover .text-accent {
    color: var(--white) !important;
}

/* Experts Section */
.experts { background-color: var(--white); }
.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expert-card {
    background: var(--white);
    color: var(--neutral);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expert-card h4 {
    color: var(--primary);
}

.expert-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--accent);
}

.expert-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: var(--shadow);
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Expert Popup */
.expert-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 42, 61, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.expert-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.expert-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    background: var(--white);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 15px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: left;
}

.expert-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.expert-popup .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.05);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--neutral);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.expert-popup .close-popup:hover {
    background: var(--accent);
    color: var(--white);
    transform: rotate(90deg);
}

.expert-popup-content {
    padding: 30px;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.popup-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.popup-header h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.expert-main-line {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}

.popup-desc {
    color: var(--neutral);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.expert-popup-content h6 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.popup-list {
    list-style: none;
}

.popup-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.popup-list li::before {
    content: "•";
    color: var(--accent);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -5px;
}

.popup-list li strong {
    color: var(--primary);
}

.expert-icon {
    display: none;
}

.expert-role {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Who This Is For & CTA */
.who-for { background-color: var(--background); }
.checklist {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    padding: 15px 20px;
    border-radius: 10px;
}

.check {
    color: var(--primary);
    background: var(--background);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.cta-box {
    background: var(--white);
    color: var(--neutral);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.price-badge {
    background: var(--accent);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
}

.price-badge strong {
    font-size: 2rem;
    display: block;
    margin-top: 5px;
}

.cta-includes {
    flex: 1;
    background: var(--white);
    padding: 50px;
    color: var(--neutral);
}

.cta-includes h4 {
    color: var(--neutral);
    margin-bottom: 20px;
}

.cta-includes ul {
    list-style: none;
}

.cta-includes li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--neutral);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(rgba(30, 42, 61, 0.8), rgba(30, 42, 61, 0.8)), url('image/hero_bg_1.png') no-repeat center center / cover;
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.footer-brand p {
    opacity: 0.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: var(--transition);
}

.contact-item:hover {
    opacity: 1;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: inherit;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.contact-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-item a:hover::after {
    width: 100%;
}

.social-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link-icon:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(194, 163, 92, 0.3);
}

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

/* Sticky Register Bar */
.sticky-register-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
}

.sticky-register-bar.show {
    transform: translateY(0);
}

.bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar-text strong {
    color: var(--primary);
    font-size: 1.1rem;
    margin-right: 15px;
}

.bar-text span.desktop-only {
    color: var(--neutral);
    font-size: 0.9rem;
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    vertical-align: middle;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 50px;
    box-shadow: 0 4px 10px rgba(194, 163, 92, 0.3);
}

.countdown-box .val {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.countdown-box .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.95;
    margin-top: 3px;
    letter-spacing: 0.5px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 42, 61, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2000;
}

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

.modal-container {
    background: var(--background);
    color: var(--neutral);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 20px;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--neutral);
    cursor: pointer;
    z-index: 10;
}

.modal-content {
    padding: 40px;
}

.step-card {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-header {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.workshop-summary {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.price-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 10px;
}

.modal-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: var(--neutral);
}

/* Checkbox Styles */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 15px;
    user-select: none;
    color: var(--neutral);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: var(--white);
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #eee;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent);
    border-color: var(--accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    flex: 1;
}

.details-form input,
.details-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--neutral);
    transition: var(--transition);
}

.details-form input:focus,
.details-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(194, 163, 92, 0.2);
}

/* Payment */
.success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.pay-method {
    background: var(--white);
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.pay-method:hover {
    border-color: var(--accent);
    background: rgba(194, 163, 92, 0.05);
}

/* Success */
.success-icon {
    font-size: 60px;
    margin-bottom: 10px;
}

.next-steps-box {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.next-steps-box h4 {
    margin-bottom: 15px;
}

.next-steps-box ol {
    padding-left: 20px;
    font-size: 15px;
}

.next-steps-box li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .cta-box {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        gap: 0;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .checklist {
        grid-template-columns: 1fr;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: inline-block !important;
    }
    
    .logo-text.mobile-only {
        font-size: 1.2rem;
    }
    
    .sticky-register-bar {
        padding: 8px 5px;
    }
    
    .bar-text {
        gap: 4px;
        margin-right: 0;
    }
    
    .bar-text strong {
        font-size: 0.8rem;
        margin-right: 5px;
        white-space: nowrap;
    }

    .countdown-timer {
        gap: 3px;
        margin-left: 0;
    }

    .countdown-box {
        padding: 3px 4px;
        min-width: 32px;
    }
    
    .countdown-box .val {
        font-size: 0.85rem;
    }
    
    .countdown-box .label {
        font-size: 0.5rem;
    }
    
    .bar-content {
        gap: 5px;
        padding: 0 5px;
        flex-wrap: nowrap;
    }
    
    .sticky-register-bar .btn {
        padding: 6px 8px;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: fit-content;
    }
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(194, 163, 92, 0.5);
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 75px;
        left: 10px;
    }
    
    .scroll-top {
        width: 36px;
        height: 36px;
        font-size: 18px;
        bottom: 75px;
        right: 10px;
    }
}

/* Custom Tooltip Styling */
.custom-tooltip {
    position: relative;
    cursor: help;
}

.custom-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    width: max-content;
    max-width: 280px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 100;
    pointer-events: none;
    margin-bottom: 10px;
}

.custom-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    margin-bottom: -2px;
}

.custom-tooltip:hover::after,
.custom-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Floating Background Icons */
.floating-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Ignore mouse interactions */
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(30, 42, 61, 0.4);
    opacity: 0.7;
    animation: floatIcon 6s ease-in-out infinite;
    white-space: nowrap;
}

.floating-icon i {
    font-size: 1.2rem;
    color: var(--primary); /* Blue */
    opacity: 0.8;
}

@keyframes floatIcon {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(3deg); }
    66% { transform: translateY(-5px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(194, 163, 92, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(194, 163, 92, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 163, 92, 0); }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.btn-primary, .btn-red, .btn-green {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-red::after, .btn-green::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

/* Hero Detail Pill Buttons */
.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(194, 163, 92, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.detail-item i {
    font-size: 1.2rem;
    color: var(--primary);
}
