/* ==========================================================================
   GLOBAL RESET & BASE THEME
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #0055ff; /* Royal Blue */
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #060606; /* Solid matching black */
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

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

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

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

    .nav-links a {
        color: #fff;
        text-decoration: none;
        padding: 10px 20px;
        font-size: 0.95rem;
        text-transform: uppercase;
        font-weight: 700; /* Bold links */
        transition: color 0.3s;
    }

        .nav-links a:hover, .nav-links a.active {
            color: #0055ff;
        }

.burger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
}

    .burger div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px;
        transition: all 0.3s ease;
    }

/* ==========================================================================
   HERO BANNER & SUB-HERO PANELS
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ccc;
}

.sub-hero {
    position: relative;
    height: 40vh;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.sub-hero-content {
    position: relative;
    z-index: 2;
}

    .sub-hero-content h1 {
        font-size: 2.8rem;
        color: #fff;
    }

.section-subtitle {
    text-align: center;
    color: #aaa;
    margin-top: -30px;
    margin-bottom: 50px;
}

/* ==========================================================================
   GLOBAL BUTTON COMPONENT
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0055ff;
    color: #121212;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s, background-color 0.3s;
}

    .btn:hover {
        transform: translateY(-3px);
        background-color: #0044cc; /* Deep Blue Hover */
    }

    .btn.secondary {
        background-color: transparent;
        color: #0055ff;
        border: 2px solid #0055ff;
    }

        .btn.secondary:hover {
            background-color: #0055ff;
            color: #121212;
        }

/* ==========================================================================
   ABOUT & INTERACTIVE MUSIC STYLE SECTIONS
   ========================================================================== */
.about-section {
    background-color: #1a1a1a;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.about-img-box {
    flex: 1;
}

.profile-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    border: 2px solid #333;
    box-shadow: 0 8px 24px rgba(0, 85, 255, 0.1);
    display: block;
    margin: 0 auto;
}

.about-text {
    flex: 1.5;
}

    .about-text h2 {
        text-align: left;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #ddd;
        margin-bottom: 20px;
    }

.style-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

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

.style-card {
    position: relative;
    height: 280px;
    perspective: 1000px;
    cursor: pointer;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #333;
}

.card-front {
    background-color: #121212;
}

.card-back {
    background-color: #0b0b0b;
    border-color: #0055ff;
    transform: rotateY(180deg);
}

.style-card:hover .card-front {
    transform: rotateY(-180deg);
}

.style-card:hover .card-back {
    transform: rotateY(0deg);
}

.card-front i {
    font-size: 3.5rem;
    color: #0055ff;
    margin-bottom: 20px;
}

.card-front h3 {
    font-size: 1.2rem;
    color: #fff;
}

.card-back h3 {
    font-size: 1.1rem;
    color: #0055ff;
    margin-bottom: 15px;
}

.card-back p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 15px;
}

.staples {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

/* ==========================================================================
   DESKTOP SERVICES PRICING TABLE
   ========================================================================== */
.table-container {
    width: 100%;
    margin-top: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.two-col-table {
    table-layout: fixed;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #252525;
}

.comparison-table th {
    background-color: #0b0b0b;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    padding: 25px;
}

.tagline-row td {
    font-style: italic;
    color: #aaa;
    text-align: center;
    line-height: 1.5;
    padding: 20px 30px;
    font-size: 0.95rem;
    border-bottom: 1px solid #333;
}

.table-feature-list {
    list-style: none;
    padding: 10px 15px;
}

    .table-feature-list li {
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

        .table-feature-list li i {
            color: #0055ff;
            margin-top: 3px;
            font-size: 1rem;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

.feature-details {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 15px;
    width: 100%;
}

.feature-label {
    font-weight: bold;
    color: #fff;
}

.feature-desc {
    color: #ccc;
    line-height: 1.5;
}

/* Translucent Blue Highlight Column Accent */
.highlight-col {
    background-color: rgba(0, 85, 255, 0.02);
    border-left: 1px solid rgba(0, 85, 255, 0.15);
    border-right: 1px solid rgba(0, 85, 255, 0.15);
}

.includes-previous {
    background-color: rgba(0, 85, 255, 0.08);
    border: 1px dashed #0055ff;
    padding: 12px;
    border-radius: 6px;
    margin: 10px 20px 20px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .includes-previous i {
        color: #0055ff;
    }

.price-row td {
    text-align: center;
    font-size: 1.5rem !important;
    padding: 25px !important;
    font-weight: bold;
}

    .price-row td.price {
        color: #0055ff;
    }

.action-row td {
    padding: 25px !important;
}

/* Pricing Action Buttons */
.table-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #444;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

    .table-btn:hover {
        border-color: #0055ff;
        color: #0055ff;
    }

    .table-btn.active-btn {
        background-color: #0055ff;
        color: #121212;
        border-color: #0055ff;
    }

        .table-btn.active-btn:hover {
            background-color: #0044cc;
            color: #fff;
        }

/* ==========================================================================
   OTHER EVENTS / CELEBRATIONS SECTION
   ========================================================================== */
.other-services-container {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.services-flex-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.service-block {
    flex: 1;
    background-color: #1a1a1a;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #252525;
    transition: transform 0.3s ease;
}

    .service-block:hover {
        transform: translateY(-5px);
    }

.block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .block-header i {
        font-size: 2rem;
        color: #0055ff;
    }

    .block-header h3 {
        font-size: 1.25rem;
        color: #fff;
        margin: 0;
        white-space: nowrap;
    }

.service-block p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.align-grid-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #eee;
    font-size: 0.95rem;
}

    .align-grid-list li i {
        color: #0055ff;
        margin-top: 4px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

.service-details-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 15px;
    width: 100%;
}

.service-label {
    font-weight: bold;
    color: #fff;
}

.service-desc {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

.table-cta {
    margin-top: 50px;
    text-align: center;
}

    .table-cta p {
        color: #888;
        margin-bottom: 15px;
    }

/* ==========================================================================
   PORTRAIT VIDEO GRID (GALLERY)
   ========================================================================== */
.portrait-video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This perfectly centers the 3rd "orphan" video! */
    gap: 30px;
    margin-top: 40px;
}

.portrait-video-card {
    flex: 1 1 280px; /* Tells the video cards to flow flexibly */
    max-width: 320px; /* Stops the centered video from stretching too wide on tablets */
    background-color: #0b0b0b;
    border-radius: 8px;
    border: 1px solid #252525;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .portrait-video-card .video-box {
        width: 100%;
        height: 480px;
        background-color: #000;
    }

    .portrait-video-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .portrait-video-card h3 {
        font-size: 0.95rem;
        color: #0055ff;
        padding: 15px;
        text-align: center;
        margin: 0;
        font-weight: bold;
        letter-spacing: 1px;
        border-top: 1px solid #252525;
        text-transform: uppercase;
    }

/* ==========================================================================
   PORTFOLIO MASONRY & REVIEWS CAROUSELS
   ========================================================================== */
.photo-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.photo-item {
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #252525;
    height: 250px;
}

    .photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
        display: block;
    }

    .photo-item:hover img {
        transform: scale(1.05);
    }

.review-slider-container {
    position: relative;
    max-width: 850px;
    /* margin: 0 auto; <-- Change this existing line to the one below */
    margin: 40px auto 80px auto; /* 40px gap on top, centered horizontally, 80px gap on bottom */
    overflow: hidden;
}

.review-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 380px;
}

/* Adds a safe zone on the left and right so arrows don't cover text */
.review-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    padding: 0 80px; /* Pushes the text 80px inward from the left and right edges */
    box-sizing: border-box; /* Ensures the padding doesn't break the container width */
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .review-slide-item.active {
        opacity: 1;
        visibility: visible;
    }

    /* Un-bunches the text to make it much easier to read */
    .review-slide-item p {
        line-height: 1.8; /* Gives the sentences room to breathe */
        margin-bottom: 20px; /* Adds clear spacing between paragraphs */
    }

.review-slider-container .slider-arrow {
    top: calc(50% - 22px);
}

    .review-slider-container .slider-arrow.prev {
        left: -5px;
    }

    .review-slider-container .slider-arrow.next {
        right: -5px;
    }

.reviewer-name-accent {
    font-weight: bold;
    color: #0055ff;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.slider-arrow {
    position: absolute;
    top: calc(50% - 25px);
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 10;
    transition: all 0.3s ease;
}

    .slider-arrow:hover {
        border-color: #0055ff;
        color: #0055ff;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

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

.small-card {
    background-color: #161616;
    border-radius: 8px;
    border: 1px solid #222;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-event-photo-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 2px solid #222;
}

.review-event-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.small-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

    .small-card-body blockquote {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #ccc;
        font-style: italic;
        margin-bottom: 20px;
        min-height: 70px;
    }


/* ==========================================================================
   CONTACT PAGE STYLING
   ========================================================================== */
.contact-grid-layout {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    align-items: flex-start;
}

.contact-info-side {
    flex: 1;
}

    .contact-info-side p {
        color: #aaa;
        line-height: 1.6;
        margin-bottom: 30px;
    }

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .info-item i {
        font-size: 1.5rem;
        color: #0055ff;
        width: 30px;
        text-align: center;
    }

    .info-item h4 {
        color: #fff;
        margin-bottom: 3px;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .info-item p {
        margin-bottom: 0;
        color: #eee;
    }

.whatsapp-direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    .whatsapp-direct-btn:hover {
        transform: translateY(-3px);
        background-color: #20ba5a;
    }

.contact-form-side {
    flex: 1.5;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #252525;
}

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

    .form-group label {
        display: block;
        color: #fff;
        font-size: 0.85rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        background-color: #121212;
        border: 1px solid #333;
        color: #fff;
        font-size: 0.95rem;
        border-radius: 4px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: #0055ff;
        }

        .form-group input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(1);
        }

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 15px;
}

.form-group-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

    .form-group-row .form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
    }
/* ==========================================================================
   HOMEPAGE SPECIFIC LAYOUTS (.grid & .card & quotes)
   ========================================================================== */

/* The 3-Column Services Grid */
.grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.card {
    background-color: #1a1a1a;
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #333;
    transition: border-color 0.3s;
}

    .card:hover {
        border-color: #0055ff;
    }

    .card i {
        font-size: 2.5rem;
        color: #0055ff;
        margin-bottom: 20px;
    }

    .card h3 {
        margin-bottom: 15px;
    }

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

/* Homepage Featured Review Box */
.review-quote-box {
    max-width: 800px;
    margin: 0 auto 40px auto;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #0055ff;
    position: relative;
    text-align: left;
}

.quote-icon {
    font-size: 2rem;
    color: #222;
    position: absolute;
    top: 20px;
    left: 20px;
}

.review-quote-box blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: #eee;
    margin-bottom: 20px;
}

.review-author {
    color: #0055ff;
    font-weight: bold;
    letter-spacing: 1px;
}
/* ==========================================================================
   CALL TO ACTION (CTA) BOXES
   ========================================================================== */
.reviews-cta {
    max-width: 850px;
    margin: 80px auto 60px auto; /* 'auto' forces it to the perfect center */
    background: linear-gradient(135deg, #131313 0%, #0b0b0b 100%);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box; /* Stops padding from stretching it too far */
}

    .reviews-cta h3 {
        margin-bottom: 12px;
        font-size: 1.6rem;
    }

    .reviews-cta p {
        color: #888;
        margin-bottom: 25px;
    }
/* ==========================================================================
   FOOTER RULES
   ========================================================================== */
footer {
    background-color: #0b0b0b;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-content h3 {
    margin-bottom: 15px;
}

.footer-content p {
    color: #888;
    margin-bottom: 10px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

    .socials a {
        color: #0055ff;
        font-size: 1.5rem;
        text-decoration: none;
        transition: transform 0.3s ease, color 0.3s ease;
    }

        .socials a:hover {
            color: #fff;
            transform: translateY(-3px);
        }

.copy {
    margin-top: 20px;
    font-size: 0.85rem;
}

/* ==========================================================================
   CLEAN TWO-TONE SECTION TRANSITIONS (REMOVING HARSH LINES)
   ========================================================================== */

/* Remove the top border on the Services page */
.other-services-container {
    border-top: none !important;
}

/* Remove the top and bottom borders on the Reviews container */
.reviews-section {
    border-top: none !important;
    border-bottom: none !important;
}

/* Turn any standard HTML horizontal lines (<hr>) or section dividers invisible.
   This keeps your vertical spacing intact but completely removes the awkward white/grey strokes! */
hr, .section-divider {
    border: none !important;
    background: transparent !important;
    height: 0 !important;
    margin: 60px 0; /* Keeps the breathing room between your gallery/review sections */
}
/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

    .faq-item:hover {
        border-color: #0055ff;
    }

    .faq-item summary {
        padding: 20px;
        font-size: 1.1rem;
        font-weight: bold;
        color: #fff;
        cursor: pointer;
        list-style: none; /* Hides default arrow */
        position: relative;
    }

        /* Custom Plus/Minus Icon */
        .faq-item summary::after {
            content: '\002B'; /* Plus icon */
            position: absolute;
            right: 20px;
            color: #0055ff;
            font-size: 1.5rem;
            font-weight: normal;
        }

    .faq-item[open] summary::after {
        content: '\2212'; /* Minus icon */
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

.faq-content {
    padding: 0 20px 20px 20px;
    color: #ccc;
    line-height: 1.6;
    border-top: 1px solid #222;
    margin-top: 10px;
    padding-top: 20px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES (TABLETS)
   ========================================================================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .style-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
        max-width: 750px;
        margin: 0 auto;
    }

    .feature-details {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES (MOBILE PHONE SCREENS)
   ========================================================================== */
/* Hide mobile structures on desktop by default */
.mobile-packages-view {
    display: none;
}

@media screen and (max-width: 768px) {
    .grid {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .about-grid {
        flex-direction: column;
        text-align: center;
    }

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

    .sub-hero {
        height: 30vh;
    }

    .sub-hero-content h1 {
        font-size: 2rem;
    }

    .style-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-flex-grid {
        flex-direction: column;
        gap: 25px;
    }

    .service-block {
        padding: 25px;
    }

    .block-header h3 {
        white-space: normal;
    }

    .photo-masonry-grid {
        grid-template-columns: 1fr;
    }

    .small-reviews-grid {
        grid-template-columns: 1fr;
    }

    .large-card {
        padding: 25px;
    }
    /* Fixes the cramped review slider text layout on phones */
    .review-slider-wrapper {
        position: relative;
        width: 100%;
        min-height: auto !important; /* Removes the rigid locked height restriction */
        display: flex;
        flex-direction: column;
    }

    .review-slide-item {
        position: relative;
        display: none;
        width: 100%;
        opacity: 0;
        /* Change the padding line to this: */
        padding: 0 15px 70px 15px; /* 0 top, 15px right, 70px bottom (for arrows), 15px left */
        box-sizing: border-box;
        transition: opacity 0.5s ease;
    }

        .review-slide-item.active {
            display: block;
            opacity: 1;
            visibility: visible;
        }

    /* Repositions the left and right arrows cleanly beneath the long text instead of floating on top of it */
    .review-slider-container .slider-arrow {
        top: auto;
        bottom: 5px; /* Pins them nicely right above the 'MORE FEEDBACK' line */
    }

        .review-slider-container .slider-arrow.prev {
            left: calc(50% - 60px); /* Centers the back arrow slightly to the left of the middle */
        }

        .review-slider-container .slider-arrow.next {
            right: calc(50% - 60px); /* Centers the forward arrow slightly to the right of the middle */
        }

    .contact-grid-layout {
        flex-direction: column;
        gap: 40px;
    }

    .form-group-row {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form-side {
        padding: 25px;
        width: 100%;
    }

    /* Interactive Responsive Mobile Hamburger System Toggle */
    .burger {
        display: block !important;
        z-index: 1001;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #060606;
        border-bottom: 2px solid #0055ff;
        padding: 20px 0;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

        /* CHANGED .open-menu TO .nav-active HERE TO MATCH YOUR SCRIPT */
        .nav-links.nav-active {
            max-height: 400px;
            opacity: 1;
            visibility: visible;
        }

        .nav-links a {
            width: 100%;
            text-align: center;
            padding: 15px 0;
        }

        /* ADDED THESE TO MAKE YOUR BURGER LINES ANIMATE INTO AN X */
        .burger.toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .burger.toggle .line2 {
            opacity: 0;
        }
        .burger.toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

    /* Modern Stacked Mobile Packages UI Override */
    .desktop-only-view {
        display: none !important; /* Completely hides cluttered horizontal data table view */
    }

    .mobile-packages-view {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
        padding: 10px 5px;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-package-card {
        background-color: #0b0b0b;
        border: 1px solid #252525;
        border-radius: 12px;
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

        .mobile-package-card.highlighted-card {
            background-color: rgba(0, 85, 255, 0.01);
            border: 1px solid rgba(0, 85, 255, 0.2);
        }

    .mobile-card-header h3 {
        font-size: 1.3rem;
        color: #fff;
        margin: 0 0 10px 0;
        font-weight: bold;
    }

    .mobile-card-header .mobile-card-tagline {
        font-size: 0.9rem;
        color: #aaa;
        line-height: 1.5;
        margin-bottom: 20px;
        font-style: italic;
        text-transform: none;
        letter-spacing: normal;
    }

    .mobile-features-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }

        .mobile-features-list li {
            font-size: 0.95rem;
            color: #e0e0e0;
            padding: 12px 0;
            border-bottom: 1px solid #1a1a1a;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            line-height: 1.4;
        }

            .mobile-features-list li i {
                color: #0055ff;
                margin-top: 3px;
                width: 16px;
                text-align: center;
                flex-shrink: 0;
            }

    .includes-previous-badge {
        background-color: rgba(0, 85, 255, 0.08);
        border: 1px dashed #0055ff;
        padding: 12px;
        border-radius: 6px;
        font-size: 0.85rem;
        color: #fff;
        font-weight: bold;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .includes-previous-badge i {
            color: #0055ff;
        }

    .mobile-card-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #252525;
    }

    .mobile-price {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0055ff;
    }

    .mobile-card-footer .table-btn {
        width: 100% !important;
        text-align: center;
        box-sizing: border-box;
        padding: 12px 20px;
    }
}
/* Layout Headers (Restored for Reviews Page) */
.tier-title {
    font-size: 1.6rem;
    color: #0055ff;
    margin-top: 60px; /* Big gap above MORE FEEDBACK */
    margin-bottom: 50px; /* Big gap below MORE FEEDBACK, pushing the cards down */
    border-left: 3px solid #0055ff;
    padding-left: 15px;
    text-transform: uppercase;
}

/* Animated Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -15px);
    }

    60% {
        transform: translate(-50%, -7px);
    }
}
/* ==========================================================================
   MAGIC TWO-TONE SECTION BACKGROUND (Clean & Safe Version)
   ========================================================================== */
.two-tone-bg {
    background-color: #1a1a1a !important;
    width: 100% !important;
    padding: 20px 0 !important;
    border-top: 1px solid #222 !important; /* Optional subtle border */
}
