html {
    scroll-behavior: smooth;
}

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

:root {
    --primary-pink: #C44E6E;      /* Updated Brand Pink */
    --bg-light: #F2F2F2;          /* Standard Light Gray Background */
    --text-dark: #2D2D2D;
    --text-muted: #777777;
    --text-light: #ffffff;
    --footer-tan: #C44E6E;        /* Unified Brand Pink */
    --border-soft: #FADADD;
}

/* Base Layout */
a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

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

/* Header & Main Nav */
header {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    background-image: url('https://static.wixstatic.com/media/nsplsh_726b4d306b3848696c6b32~mv2.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.logo-container h1 {
    font-size: 4.5rem;
    color: var(--primary-pink);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sticky-nav {
    background: #fff;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* More defined shadow */
}

.sticky-nav a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 25px;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.sticky-nav a:hover, .sticky-nav a.active {
    color: var(--primary-pink);
    font-weight: 700;
}

/* Section Templates */
.page-hero {
    background-color: var(--primary-pink); /* Original Hot Pink Hero */
    color: white;
    text-align: center;
    padding: 40px 20px; /* Reduced for a more compact look */
}

.page-hero h2 {
    font-size: 3.5rem;
    font-weight: 400;
    text-transform: uppercase;
}

.page-hero p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: 10px;
}

.white-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.light-section {
    padding: 100px 0;
    background: var(--bg-light); /* Standard gray branded bg */
    color: var(--text-dark);
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-pink); /* Hot Pink headers */
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 60px;
}

/* Component: Image Banner */
.image-banner {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    line-height: 0;
}

.image-banner img {
    width: 100%;
    display: block;
    border: 1px solid rgba(255,255,255,0.4);
}

.image-label {
    background-color: #fff;
    color: var(--primary-pink);
    padding: 20px 60px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 5;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    white-space: nowrap;
    text-transform: uppercase;
}

/* Component: Feature Cards */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: #ffffff;
    padding: 50px;
    border: 2px solid rgba(255,255,255,0.3); /* Subtle white frame */
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
}

.card-num {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(224, 43, 109, 0.05);
}

.card h3 {
    font-size: 1.6rem;
    color: var(--primary-pink); /* Hot Pink headers */
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.card h4 {
    font-size: 0.9rem;
    color: #666; /* Defined color for readability */
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card p {
    color: #333; /* Darker text inside white cards */
    line-height: 1.7;
}

/* Component: Callout Boxes */
.callout {
    background: #ffffff;
    padding: 50px;
    border: 1px solid var(--border-soft);
    border-top: 8px solid var(--footer-tan); 
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column; /* Allows footnote to stick to bottom */
}

.callout h3 {
    color: var(--primary-pink);
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.callout p {
    color: #444;
}

/* Price Callout Specifics */
.price-callout {
    background: var(--primary-pink) !important;
    color: white !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none !important;
}

.price-title {
    color: white !important;
    margin: 0 !important;
    font-size: 1.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .price-callout {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .price-value {
        font-size: 1.8rem;
    }
    .price-title {
        font-size: 1.2rem;
    }
}

.footnote {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 40px;
    line-height: 1.4;
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr; /* Widened sidebar for single-line info */
    gap: 40px;
}

/* Disable Hover Effects on Contact Page Boxes */
.contact-grid .card:hover,
.contact-grid .callout:hover {
    transform: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

.contact-grid .callout:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
    border-color: var(--border-soft) !important;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.contact-form-container {
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(196, 78, 110, 0.1);
}

.contact-form .submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form .submit-btn:hover {
    background-color: #a33d59;
}

.contact-form .submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Cloudflare Turnstile Styling */
.cf-turnstile {
    width: 100%;
    margin: 10px auto;
    text-align: center;
    padding: 1% 0 !important;
}

.cf-turnstile iframe {
    width: 100% !important;
    border: 1px solid #eee !important;
    border-radius: 6px !important;
}



.form-offline-notice {
    background: #fff8f9;
    border: 1px solid #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: center;
}

.price-pill {
    background-color: var(--primary-pink);
    color: white;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    align-self: flex-start; /* Prevents stretching */
}

/* Footer */
.footer-container {
    margin-top: auto;
}

.footer-top {
    background-color: var(--footer-tan);
    padding: 15px;
    text-align: center;
}

.footer-top a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    padding: 60px 20px;
    text-align: center;
    background: #fdfdfd; /* Very subtle light gray */
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid #eee;
}

footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    gap: 40px;
}

.footer-bottom .footnote {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    max-width: 60%;
    text-align: right;
    font-size: 0.75rem;
}

/* Responsive Hardening */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVE HARDENING (Template-Wide)
   ========================================================================== */

@media (max-width: 768px) {
    /* 1. Header & Typography Scaling */
    .logo-container h1 { 
        font-size: 2rem; 
        letter-spacing: 3px;
    }
    
    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* 2. Global Container Edge-to-Edge */
    .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    /* 3. Universal Grid & Stack Alignment */
    .grid-layout, 
    .contact-grid, 
    .contact-info-stack {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 4. Universal Card & Callout Hardening (No Hovers/Shadows) */
    .card, 
    .callout {
        padding: 40px 20px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: 1px solid #eee !important;
        margin-bottom: 20px !important;
        transform: none !important;
        transition: none !important;
    }

    /* Neutralize all interactive effects on mobile tap while preserving background colors */
    .card:hover, .callout:hover, 
    .card:active, .callout:active {
        transform: none !important;
        box-shadow: none !important;
        /* background is NOT overridden here to preserve custom colors */
    }

    /* 5. Clean Mobile Navigation (Standard) */
    .sticky-nav {
        background: white;
        padding: 15px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .sticky-nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .sticky-nav li {
        margin: 0;
        display: flex;
        align-items: center;
    }

    .sticky-nav li:not(:last-child):after {
        content: "•";
        color: #ccc;
        margin-left: 15px;
        font-size: 0.8rem;
    }

    .sticky-nav a {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-dark);
        padding: 5px;
    }

    .sticky-nav a.active {
        color: var(--primary-pink);
    }

    /* 6. Footer Scaling */
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom .footnote {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-container h1 { font-size: 1.8rem; }
    
    .container {
        padding: 0 10px; /* Use more screen width */
    }

    .grid-layout {
        grid-template-columns: 1fr;
        gap: 15px; /* Tighter gap for mobile */
    }

    .card, .callout {
        padding: 25px 15px;
        border-radius: 0; /* Edge-to-edge feel */
        box-shadow: none; /* Cleaner look on mobile */
        border-left: none;
        border-right: none;
    }
}
