/* GLOBAL STYLES & RESET */
:root {
    --color-primary: #1a374d; /* Deep Blue for header/text */
    --color-accent-cta: #00b894; /* Bright Green/Teal for main action */
    --color-secondary-cta: #0984e3; /* Vibrant Blue */
    --color-background-soft: #f5f6fa; /* Soft Grey background */
    --color-text: #333;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.15);
    /* NEW: Celebration Accent Color */
    --color-celebration: #ff6b81; /* Vibrant Pink/Magenta for festive pages */
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background-soft);
}

a {
    transition: color 0.3s ease;
}

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

/* HEADER STYLES */
header {
    background-color: var(--color-primary);
    color: white;
    padding: 1em 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

/* FANCY TEXT LOGO STYLES */
.text-logo {
    /* Using Montserrat (must be imported in base.html) for a modern, bold look */
    font-family: 'Montserrat', sans-serif; 
    font-size: 2.2em; 
    font-weight: 800;
    text-transform: uppercase;
    /* Gradient text effect */
    background: linear-gradient(45deg, var(--color-accent-cta) 30%, #a29bfe 90%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    color: var(--color-accent-cta); /* Fallback */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    transition: transform 0.2s ease, text-shadow 0.3s ease;
    display: inline-block;
}

.logo-link:hover .text-logo {
    transform: translateY(-2px);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

/* Modern Hover/Active Indicator */
header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--color-accent-cta);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: 100%;
}

header nav ul li a:hover {
    color: var(--color-accent-cta);
}

header nav ul li a.active {
    font-weight: 700;
    color: var(--color-accent-cta);
}

/* BUTTON STYLES (GENERAL) */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.button.secondary {
    background-color: var(--color-secondary-cta);
    color: white;
}

/* SECTIONS STYLING */
.section-title {
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.section-light-bg {
    background-color: var(--color-background-soft);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

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

/* ========================================= */
/* INDEX PAGE STYLES */
/* ========================================= */

/* APP DOWNLOAD HERO SECTION (INDEX.HTML) */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-background-soft), #e0f2f7);
    text-align: center;
    margin-bottom: 20px;
    border-radius: 0 0 15px 15px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Base style for download links */
.download-buttons a {
    display: inline-block;
    padding: 5px; /* Added padding to create a colored frame around the badge */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

/* Colored Frame for Apple Badge (Secondary/Blue) */
.download-buttons a.button.secondary.apple {
    background-color: var(--color-secondary-cta); 
    padding: 5px; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(9, 132, 227, 0.4);
}

/* Colored Frame for Google Play Badge (Primary/Green) */
.download-buttons a.button.primary.android {
    background-color: var(--color-accent-cta);
    padding: 5px; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 184, 148, 0.4);
}

.download-buttons a:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.download-buttons a img {
    height: 55px;
    vertical-align: middle;
}

/* VIDEO SECTION */
.video-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
    box-shadow: var(--shadow-light);
    margin-bottom: 20px;
    border-radius: 10px;
}

.video-section .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9/16 = 0.5625) */
    /* FIX 1: Removed height: 0; */
    overflow: hidden;
    max-width: 650px; 
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* FIX 3: Add z-index to container to fix overlap on refresh */
    z-index: 10;
}

.video-section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* FIX 4: Add z-index to iframe to ensure controls are clickable */
    z-index: 10;
}

/* APP FEATURES SECTION */
.features {
    padding: 50px 0;
    background-color: var(--color-background-soft);
    text-align: center;
}

.features h2 {
    font-size: 2.2em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.features .intro {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

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

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-item h3 {
    color: var(--color-secondary-cta);
    margin-bottom: 10px;
    font-weight: 500;
}

/* HOW TO DOWNLOAD SECTION */
.how-to-download {
    padding: 60px 0;
    background-color: #f0f8ff; 
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
}

.how-to-download h2 {
    color: var(--color-primary);
    margin-bottom: 40px;
}

.how-to-download .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-accent-cta);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 1.2em;
    margin: 0 auto 15px;
}

.step-item h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 500;
}

/* RELEASE NOTES CTA */
.release-notes-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.release-notes-section .section-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.release-notes-section .button {
    background-color: var(--color-primary);
}

.release-notes-section .button:hover {
    background-color: #2a5270;
}

/* GET THE APP CTA (Footer-like) */
.get-the-app {
    padding: 60px 0;
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    border-radius: 10px;
    margin: 20px auto;
}

.get-the-app h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.get-the-app p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* ========================================= */
/* FOOTER STYLES */
/* ========================================= */

footer {
    background-color: var(--color-primary);
    color: white;
    padding: 1.5em 0;
    border-top: 5px solid var(--color-accent-cta); 
}

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

.social-media {
    order: 3; 
    display: flex;
    gap: 15px;
}

.social-media a i {
    font-size: 24px;
    color: white;
    transition: transform 0.2s ease, color 0.3s ease;
}

.social-media a:hover i {
    transform: scale(1.1);
    color: var(--color-accent-cta);
}

footer .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px;
}

footer .footer-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

footer .footer-nav ul li a:hover {
    text-decoration: underline;
    color: var(--color-accent-cta);
}

/* ========================================= */
/* CONTACT & SUCCESS PAGE STYLES */
/* ========================================= */

.contact {
    padding: 60px 0;
    background-color: white; 
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.contact form {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: var(--color-background-soft); 
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-primary);
}

/* **MODERN & ELEGANT INPUT STYLES** */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="search"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px; 
    border: 1px solid #dcdcdc; 
    border-radius: 10px; 
    box-sizing: border-box;
    font-size: 1em;
    font-weight: 300; 
    color: var(--color-text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* **TEXTAREA SPECIFIC STYLES** */
.form-group textarea {
    min-height: 150px; 
    resize: vertical; 
}

/* **ENHANCED FOCUS STATE** */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-cta); 
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 184, 148, 0.2); 
    background-color: #ffffff; 
}

.contact form .button {
    width: 100%;
    font-size: 1.1em;
    padding: 15px;
    margin-top: 10px;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.contact-info h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-secondary-cta);
    margin: 0 15px;
    font-weight: 500;
}

.social-links a i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* SUCCESS PAGE STYLES (Used by contact_success.html) */
.success-page-message {
    padding: 80px 0;
    text-align: center;
    background-color: #e8f8f5; 
    min-height: 400px;
}

.success-card {
    background-color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--color-accent-cta); 
}

.success-icon {
    font-size: 4em;
    color: var(--color-accent-cta);
    margin-bottom: 20px;
}

.success-card h2 {
    font-size: 2em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.success-text, .follow-up {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.mt-4 {
    margin-top: 20px;
}


/* ========================================= */
/* ANALYTICS PAGE STYLES */
/* ========================================= */

.hero-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--color-background-soft) 0%, #ffffff 100%);
    border-bottom: 3px solid var(--color-primary);
}

.hero-headline {
    font-size: 3.5em;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.text-gradient {
    /* Uses the fancy logo gradient for impact */
    background: linear-gradient(45deg, var(--color-accent-cta) 30%, var(--color-secondary-cta) 90%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.hero-subheadline {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button i {
    margin-right: 8px;
}

.features-grid.three-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    background-color: white;
}

.feature-card.elevate {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card.elevate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-icon.accent { color: var(--color-accent-cta); }
.feature-icon.secondary { color: var(--color-secondary-cta); }
.feature-icon.primary { color: var(--color-primary); }

.feature-card h3 {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.3em;
}

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

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-number.primary { background-color: var(--color-primary); }
.step-number.secondary { background-color: var(--color-secondary-cta); }
.step-number.accent { background-color: var(--color-accent-cta); }

.step-item h4 {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 0;
}

/* Final CTA for Marketing pages */
.cta-final {
    background-color: var(--color-primary);
    color: white;
    padding: 80px 0;
}

.cta-final .section-title.white {
    color: white;
    font-size: 2.5em;
}

.cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button.lg {
    padding: 15px 40px;
    font-size: 1.1em;
}

/* ========================================= */
/* PRIVACY & TERMS PAGE STYLES (FIXED CONTRAST) */
/* ========================================= */

.policy-page-section {
    background-color: white;
}

.policy-header {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
    /* FIX: Set background to white for high contrast */
    background-color: white; 
    border-bottom: 3px solid var(--color-accent-cta); /* Vibrant accent line */
}

.policy-title {
    font-size: 2.5em;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-intro {
    font-size: 1.1em;
    /* Ensure text uses the dark body color */
    color: var(--color-text); 
    max-width: 800px;
    margin: 0 auto;
}

.policy-divider {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}

.policy-section {
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-light); /* Subtle lift */
    background-color: #ffffff;
}

.policy-section.section-light-bg {
    background-color: var(--color-background-soft); /* Alternating background for readability */
}

.section-heading {
    font-size: 1.8em;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-heading i {
    margin-right: 15px;
    font-size: 1.2em;
}

.icon-accent { color: var(--color-accent-cta); }
.icon-secondary { color: var(--color-secondary-cta); }

.policy-list {
    list-style-type: none;
    padding-left: 0;
}

.policy-list li {
    /* Uses SVG for checkmark */
    background: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2300b894%22%20class%3D%22bi%20bi-check-circle-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M16%208A8%208%200%201%201%200%208a8%208%200%200%201%2016%200zm-3.97%203.03a.75.75%200%200%200%201.08%201.06l-4.14%204.14a.75.75%200%200%200%20-.18.12l-.46.38a.75.75%200%200%200-.77.01l-2.14-2.14a.75.75%200%201%200-1.06%201.06l2.14%202.14a.75.75%200%200%200%20.77.01l3.52-2.8a.75.75%200%200%200%20.18-.12L12.03%208.03z%22%2F%3E%0A%3C%2Fsvg%3E") no-repeat left 6px;
    background-size: 16px;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--color-text);
}

.policy-list strong {
    color: var(--color-primary);
    font-weight: 700;
}

.sub-list {
    list-style-type: disc;
    padding-left: 40px;
    margin-top: 10px;
    color: #555;
}

.contact-section p.contact-details {
    font-size: 1.1em;
    line-height: 2;
}

.contact-section p.contact-details i {
    color: var(--color-accent-cta);
    margin-right: 10px;
}

/* ========================================= */
/* ADVERTISE PAGE STYLES */
/* ========================================= */

.hero-special-bg {
    /* Slightly different gradient for the ad page hero to give it a unique feel */
    background: linear-gradient(135deg, var(--color-background-soft) 0%, #ffffff 70%); 
    border-bottom: 5px solid var(--color-secondary-cta); /* Stronger border accent */
}

/* Feature Grid Adjustments (Used for both Analytics and Advertise pages) */
.features-grid.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* Base Card Style */
.feature-card.cta-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Special CTA Card Background for Advertise */
.primary-bg-light {
    background-color: #f0fdf4; /* Very light green/teal background */
    border: 1px solid var(--color-accent-cta);
}

.card-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.card-title i {
    margin-right: 12px;
}

.card-text {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Custom list for Value Prop section */
.policy-list.check-list {
    padding-left: 0;
}

.policy-list.check-list li {
    /* Use the primary color for the checkmark */
    background: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2300b894%22%20class%3D%22bi%20bi-check-circle-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M16%208A8%208%200%201%201%200%208a8%208%200%200%201%2016%200zm-3.97%203.03a.75.75%200%200%200%201.08%201.06l-4.14%204.14a.75.75%200%200%200%20-.18.12l-.46.38a.75.75%200%200%200-.77.01l-2.14-2.14a.75.75%200%201%200-1.06%201.06l2.14%202.14a.75.75%200%200%200%20.77.01l3.52-2.8a.75.75%200%200%200%20.18-.12L12.03%208.03z%22%2F%3E%0A%3C%2Fsvg%3E") no-repeat left 6px;
    background-size: 16px;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Placement Details Section */
.placement-details {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.key-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.metric-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    border-top: 3px solid var(--color-primary);
}

.metric-item i {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.metric-item h4 {
    color: var(--color-primary);
    margin-top: 0;
}


/* ========================================= */
/* CELEBRATION PAGE STYLES */
/* ========================================= */

.celebration-hero-bg {
    /* Using a soft, gradient background for a celebratory feel */
    background: linear-gradient(135deg, #fef0f4 0%, #ffffff 70%); 
    border-bottom: 5px solid var(--color-celebration); 
}

.celebration-color {
    color: var(--color-celebration) !important;
}

/* Packages Grid */
.packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid #ddd;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.package-card.standard {
    border-top: 5px solid var(--color-celebration);
}

.package-card.premium {
    background-color: #fff0f5; /* Light pink background */
    border: 2px solid var(--color-celebration);
    box-shadow: 0 8px 25px rgba(255, 107, 129, 0.3); /* Stronger shadow accent */
}

.package-description {
    color: #666;
    min-height: 40px; /* Standardize card height */
}

.price-box {
    margin: 20px 0;
    padding: 15px;
    background-color: var(--color-background-soft);
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.price-tag {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--color-celebration);
    display: block;
}

.price-tag-custom {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-secondary-cta);
    display: block;
}

/* Booking Details */
.booking-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 50px;
}

.email-details-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--color-background-soft);
    border-radius: 15px;
    border-left: 5px solid var(--color-accent-cta);
    box-shadow: var(--shadow-light);
}

.instruction-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.email-address-highlight {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-primary);
    margin: 15px 0;
    padding: 10px;
    background-color: #e6f7f2;
    border-radius: 8px;
    display: block;
}

.email-address-highlight i {
    color: var(--color-accent-cta);
    margin-right: 10px;
}

.submission-list li {
    line-height: 2;
    color: #333;
}

/* Final CTA Section adjustments for Celebration page */
.cta-final .button.secondary {
    background-color: var(--color-celebration);
}

.cta-final .button.secondary:hover {
    background-color: #e55c70;
}

/* ========================================= */
/* RESPONSIVE MEDIA QUERIES (Updated) */
/* ========================================= */

/* Tablet & Smaller (Max 992px) */
@media (max-width: 992px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav {
        margin-top: 15px;
    }

    header nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    header nav ul li {
        margin: 5px 10px;
    }
    
    .video-section .video-container {
        max-width: 90%;
    }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }

    .hero-content h2 {
        font-size: 2em;
    }
    
    .hero-headline {
        font-size: 2.5em; /* Adjusted for smaller screens */
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Stack feature/details grids vertically */
    .features-grid.two-col,
    .features-grid.three-col,
    .steps-grid.four-col,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    /* Stack the main footer sections vertically */
    footer .container {
        flex-direction: column; 
        align-items: center;    
        text-align: center;
        gap: 20px;
    }

    .footer-left {
        order: 1; 
    }
    
    .social-media {
        order: 2; 
    }

    .footer-nav {
        order: 3; 
    }

    /* Ensure footer nav links are centered and wrap */
    footer .footer-nav ul {
        justify-content: center;
    }
    
    footer .footer-nav ul li {
        margin: 0 10px 10px 10px; 
    }
    
    /* Contact Form: Stack inputs vertically on small screens */
    .form-grid {
        grid-template-columns: 1fr; 
    }
}