/* FINAL VERSION: September 28, 2025 */

/* 1. Global Variables & Body Styling
-------------------------------------------------- */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #d4af37; /* Gold accent */
    --text-color: #333;
    --light-text: #fff;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* 2. Header & Navigation
-------------------------------------------------- */
header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}


/* 3. General Section & Content Styling
-------------------------------------------------- */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.section-subtitle {
    text-align: center;
    max-width: 48rem;
    margin: -30px auto 40px auto;
    color: #555;
    font-size: 1.1em;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background-color: #c8a02b;
    transform: translateY(-2px);
}


/* 4. Homepage Sections
-------------------------------------------------- */

.hero {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/fun-glam-photo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.client-gallery-prompt {
    text-align: center;
    margin-top: 60px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.image-grid img,
.image-grid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-grid img:hover,
.image-grid video:hover {
    transform: scale(1.05);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.review-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.review-header .reviewer-name {
    font-weight: bold;
}

.review-stars {
    color: #fbbc05;
    margin-bottom: 10px;
}

.review-body {
    font-style: italic;
    color: #555;
}

.review-attribution {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 0.9em;
    color: #777;
}

.review-attribution img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.pricing-tier {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    cursor: pointer;
}

.pricing-tier.recommended {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-tier h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.pricing-tier .price {
    font-size: 3rem;
    font-weight: bold;
    margin: 20px 0;
}

.pricing-tier .price span {
    font-size: 1rem;
    font-weight: normal;
}

.pricing-tier ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-tier ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.pricing-tier ul li::before {
    content: '\2714';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.addons {
    text-align: center;
    margin-top: 60px;
}

.addons h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.addons-list {
    display: inline-block;
    text-align: left;
}
/* Find and REPLACE these rules in your style.css */

.pricing-tier.recommended {
    position: relative; /* Needed for the savings badge */
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.price .old-price {
    font-size: 1.5rem; /* Made smaller */
    font-weight: normal;
    text-decoration: line-through;
    color: #999; /* Made lighter */
    margin-right: 10px;
    opacity: 0.8; /* Slightly faded */
}
.savings-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


/* ADD this new rule to your style.css */

.savings-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
/* --- Homepage Blog Section (CORRECTED) --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-card {
    background-color: var(--secondary-color);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.blog-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.blog-card p {
    flex-grow: 1;
}

.blog-card .read-more {
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
}

.service-area-intro {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 40px;
    color: #666;
}

.map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #ddd;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.partner-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: var(--primary-color);
}

.partner-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.partner-card .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-honeypot {
    position: absolute;
    left: -5000px;
    visibility: hidden;
}

.contact-form button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #c8a02b;
}

#form-feedback {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

#form-feedback.success {
    background-color: #d4edda;
    color: #155724;
}

#form-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
}

#gallery, 
#pricing, 
#service-area,
#faq,
#contact {
    background-color: var(--secondary-color);
}

#reviews,
#blog,
#partners {
    background-color: #fff;
}


/* 5. Sub-Page Styling (Blog Index, Articles, Policy Pages)
-------------------------------------------------- */

/* --- Blog Index Page --- */
.blog-listing {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-summary {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid #ddd;
    transition: box-shadow 0.3s ease;
}

.blog-post-summary:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-post-summary h2 {
    margin-top: 0;
    font-size: 1.8rem;
}

.blog-post-summary h2 a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.blog-post-summary h2 a:hover {
    color: var(--accent-color);
}

.blog-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.blog-post-summary .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* --- Individual Article / Policy Page --- */
.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 8px;
    background-color: var(--primary-color); /* Black background */
}

.article-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--light-text); /* White text */
    line-height: 1.2;
}

.article-header .article-meta {
    color: var(--light-text); /* White text */
}

.article-content p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

.article-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 2em;
    margin-bottom: 1em;
}

.back-to-blog {
    display: inline-block;
    margin-top: 40px;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--primary-color);
}


/* 6. Modals (Popups)
-------------------------------------------------- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.modal-iframe {
    height: 85vh;
}

.modal-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 8px 8px;
}

.modal-header {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.close-button {
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}


/* 7. Footer
-------------------------------------------------- */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 40px 20px;
}

.footer-socials {
    margin-bottom: 20px;
}

.footer-socials a {
    display: inline-block;
    margin: 0 10px;
}

.footer-socials svg {
    width: 28px;
    height: 28px;
    fill: var(--light-text);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover svg {
    fill: var(--accent-color);
    transform: scale(1.1);
}

.footer-links {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
}

.footer-links li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-division-text {
    margin-top: 20px;
    font-size: 0.9em;
    color: #aaa;
}


/* 8. Media Queries for Responsiveness
-------------------------------------------------- */
@media (max-width: 1024px) {
    .pricing-tier.recommended { 
        transform: scale(1.02); 
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px; /* Adjust based on header height */
        right: 0;
        width: 100%;
        background-color: var(--primary-color);
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin: 15px 0;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .hero h1 { font-size: 2.5rem; }
    .pricing-tier.recommended { transform: scale(1); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .section-title { font-size: 2rem; }
}
/* 9. Legal Page Styling (Privacy & Terms)
-------------------------------------------------- */

.legal-page-content .article-header {
    background: none;
    border-bottom: 1px solid #444; /* Darker border for the black box */
    padding: 0 0 20px 0;
    margin-bottom: 30px;
}

.legal-page-content .article-container {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 40px 50px;
    border-radius: 8px;
}

.legal-page-content h1,
.legal-page-content h3 {
    color: var(--light-text); /* Ensures all headings are white */
}