@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --text-black: #000000;
    --text-muted: #666666;
    --primary-red: #E40010;
    --accent-gradient: linear-gradient(90deg, #E40010, #ff4d4d, #b3000d);
    --card-bg: #ffffff;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 40px;
    --border-light: #eeeeee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    background: #000;
    border-bottom: 1px solid #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.get-quote-btn {
    background: var(--primary-red);
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
}

/* DROPDOWN MENU */
.nav-links .dropdown {
    position: relative;
    padding: 0;
}

.nav-links .dropdown>a::after {
    content: '▾';
    margin-left: 0.6rem;
    font-size: 0.8rem;
    vertical-align: middle;
    opacity: 0.7;
    display: inline-block;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 1px solid #222;
    min-width: 220px;
    padding: 1.5rem;
    list-style: none;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-menu li a {
    font-size: 0.85rem;
    color: #fff;
    opacity: 0.7;
    display: block;
    width: 100%;
}

.dropdown-menu li a:hover {
    opacity: 1;
    color: var(--primary-red);
}

/* MARQUEE BANNER */
.marquee-container {
    padding: 2.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    background: var(--bg-light);
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11vw;
    font-weight: 800;
    text-transform: lowercase;
    animation: marquee 80s linear infinite;

    /* Reveal effect with static background */
    background: linear-gradient(90deg, var(--primary-red), var(--text-black), var(--primary-red));
    background-attachment: fixed;
    background-position: center;
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes marquee {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -100%;
    }
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    margin-top: 3rem;
    overflow: hidden;
}

.category-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: var(--bg-white);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transition: background 0.3s ease;
}

/* Ensure no double borders */
.category-box:nth-child(2n) {
    border-right: none;
}

/* Remove bottom border on last two items if grid is 2 cols */
.category-box:nth-last-child(-n+2) {
    border-bottom: none;
}

.category-box:hover {
    background: var(--bg-light);
}

.category-box:hover .category-icon svg {
    color: var(--primary-red);
    filter: drop-shadow(0 0 10px rgba(228, 0, 16, 0.2));
}

.category-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-black);
    letter-spacing: 0.5px;
}

.category-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-red);
    transition: color 0.3s, filter 0.3s;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-box {
        border-right: none;
    }

    .category-box:nth-last-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* HERO SECTION */
.hero-card {
    height: 80vh;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('../images/Griswald 14.webp') center/cover no-repeat;
    border-radius: 40px 40px 0px 0px;
    display: flex;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-right p {
    font-size: 1.4rem;
    max-width: 500px;
    font-weight: 500;
    line-height: 1.3;
}

/* SPLIT SECTIONS (Values, History, etc) */
.split-section {
    padding: 6rem 4%;
    position: relative;
    display: flex;
    border-radius: 40px 40px 0px 0px;
    gap: 4rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    margin-top: -40px;
}

.section-head {
    flex: 0 0 30%;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.section-body {
    flex: 1;
}

/* VALUES BODY */
.values-list {
    list-style: none;
    font-size: 1.25rem;
    font-weight: 500;
}

.values-list li {
    margin-bottom: 0.5rem;
}

/* HISTORY TIMELINE */
.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.history-item {
    display: flex;
    gap: 3rem;
}

.history-year {
    color: var(--primary-red);
    font-weight: 600;
    min-width: 80px;
}

.history-desc {
    color: var(--text-black);
    font-size: 1rem;
    max-width: 600px;
}

.founders-text {
    margin-top: 4rem;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 800px;
}

/* BELIEFS & NAME */
.beliefs-text {
    font-size: 1.25rem;
    line-height: 1.4;
    white-space: pre-line;
}

.beliefs-text b {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* VIDEO HERO STYLES */
.video-hero {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-text-content {
    position: relative;
    z-index: 10;
    padding: 15rem 4% 8rem;
}

.service-hero {
    padding: 15rem 4% 8rem;
    text-align: center;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-black);
}

.glow-text {
    display: inline-block;
    color: var(--primary-red);
}



.service-hero p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
    color: var(--text-black);
}

.pill-button {
    display: inline-block;
    padding: 1.25rem 4rem;
    background: var(--primary-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(228, 0, 16, 0.3);
}

.pill-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 126, 0.5);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 6rem 4%;
}

.benefit-card {
    background: var(--bg-white);
    padding: 3rem;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    background: var(--bg-light);
    border-color: var(--primary-red);
    transform: translateY(-10px);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.full-feature {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 0rem 4%;
    gap: 6rem;
}

.full-feature.reverse {
    flex-direction: row-reverse;
}

.feature-img {
    flex: 1.2;
    height: 600px;
    background: #111 url('../images/Griswald 15.webp') center/cover;
    border-radius: 40px;
    position: relative;
    border: 1px solid var(--border-light);
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.feature-content p {
    font-size: 1.25rem;
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .service-hero h1 {
        font-size: 3.5rem;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .full-feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-img {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER AREA */
.pre-footer {
    padding: 6rem 4%;
    display: flex;
    gap: 6rem;
    border-top: 1px solid #111;
    background: #000;
}

.footer-form-side {
    flex: 0 0 400px;
}

.footer-form-side h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 0.8rem 1rem;
    color: var(--text-black);
    outline: none;
    border-radius: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.2);
}

.contact-form button {
    margin-top: 1rem;
    padding: 1.2rem;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

.contact-form button:hover {
    background-color: #eee;
    transform: translateY(-2px);
}

.footer-links-side {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    color: #fff;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.final-footer {
    padding: 3rem 4%;
    background: #050505;
    border-top: 1px solid #111;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.copyright {
    opacity: 0.8;
}

.footer-logo img {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo img:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 1;
}

.privacy a {
    color: #fff;
    opacity: 0.5;
}

.privacy a:hover {
    opacity: 1;
}

/* UNIQUE EAGLE LANDING PAGE STYLES */
.eagle-hero {
    min-height: 90vh;
    background: linear-gradient(to right, var(--bg-white) 40%, transparent 80%), url('../images/Griswald 6.webp') center/cover;
    display: flex;
    align-items: center;
    padding: 0 4%;
    position: relative;
    border-radius: 40px;
    margin: 2rem 4%;
    overflow: hidden;
}

.eagle-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.eagle-hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.eagle-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 500px;
}

.eagle-stats-bar {
    max-width: 1200px;
    margin: 40px auto 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    border-radius: 30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.eagle-stat h3 {
    color: var(--text-black);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.eagle-stat p {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.eagle-floating-services {
    padding: 4rem 4%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.eagle-service-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 30px;
}

.eagle-service-item:hover {
    border-color: var(--primary-red);
    background: var(--bg-light);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(228, 0, 16, 0.1);
}

.eagle-service-item .icon-circle {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.eagle-service-item:hover .icon-circle {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(228, 0, 16, 0.4);
}

.eagle-zigzag-section {
    padding: 6rem 0;
}

.eagle-row {
    display: flex;
    align-items: center;
    gap: 8rem;
    margin-bottom: 6rem;
    padding: 0 8%;
}

.eagle-row.reverse {
    flex-direction: row-reverse;
}

.eagle-visual {
    flex: 1.2;
    height: 550px;
    background: #111;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid #222;
}

.eagle-info {
    flex: 1;
}

.eagle-info h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.eagle-info p {
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .eagle-hero {
        min-height: 70vh;
        margin: 0;
        border-radius: 0;
        background: var(--bg-white);
        text-align: center;
        justify-content: center;
    }

    .eagle-hero-content h1 {
        font-size: 3.5rem;
    }

    .eagle-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
        width: 90%;
    }

    .eagle-floating-services {
        grid-template-columns: 1fr;
    }

    .eagle-row {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }

    .eagle-visual {
        width: 100%;
        height: 400px;
    }
}

/* UNIQUE STAR LANDING PAGE STYLES */
.star-hero {
    padding: 18rem 4% 10rem;
    background: radial-gradient(circle at bottom right, var(--bg-light) 0%, var(--bg-white) 60%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.star-hero h1 {
    font-size: 5.5rem;
    font-family: var(--font-heading);
    line-height: 0.95;
    margin-bottom: 2rem;
}

.star-service-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 4%;
}

.star-service-tag {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
}

.star-service-tag:hover {
    border-color: var(--primary-red);
    background: var(--bg-light);
    color: var(--primary-red);
}

.star-section {
    padding: 10rem 4%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.star-section.reverse {
    flex-direction: row-reverse;
}

.star-card {
    flex: 1;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid #1a1a1a;
    position: relative;
}

.star-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 40px;
    background: linear-gradient(45deg, transparent, rgba(228, 0, 16, 0.1), transparent);
    z-index: -1;
}

.star-image {
    flex: 1;
    height: 500px;
    background: #111;
    border-radius: 40px;
    overflow: hidden;
}

.star-list {
    list-style: none;
    margin-top: 2rem;
}

.star-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.star-list li::before {
    content: '✦';
    color: var(--primary-red);
}

@media (max-width: 1024px) {
    .star-hero h1 {
        font-size: 3.5rem;
    }

    .star-section {
        flex-direction: column;
        text-align: center;
    }

    .star-service-wrap {
        padding: 2rem 4%;
    }
}

/* GALLERY / PORTFOLIO STYLES */
.gallery-section {
    padding: 10rem 4% 6rem;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    height: 500px;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 400px;
    }
}

/* HOVER OVERLAY ACCORDION */
.accordion-section {
    background: var(--bg-white);
}

.accordion-container {
    display: flex;
    height: 700px;
    width: 100%;
    max-width: none;
    margin: 0;
    position: relative;
    padding: 0;
    overflow: hidden;
    --container-w: 100vw;
}

.accordion-panel {
    flex: 1;
    position: relative;
    height: 100%;
    /* No z-index here to keep children in the same stacking context */
}

.panel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: var(--container-w) 100%;
    background-repeat: no-repeat;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10;
    /* Lower z-index for backgrounds */
    cursor: pointer;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Default Background Slice Offsets */
.panel-0 .panel-inner {
    background-position-x: 0;
}

.panel-1 .panel-inner {
    background-position-x: calc(var(--container-w) * -0.25);
}

.panel-2 .panel-inner {
    background-position-x: calc(var(--container-w) * -0.50);
}

.panel-3 .panel-inner {
    background-position-x: calc(var(--container-w) * -0.75);
}

.panel-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.accordion-panel:last-child .panel-inner {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    /* Higher z-index for ALL contents */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

.panel-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.panel-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
}

.panel-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto;
}

.panel-link {
    margin-top: auto;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

/* No z-index increase on panel, let children handle it */
.accordion-panel:hover {
    pointer-events: auto;
}

.accordion-panel:hover .panel-inner {
    width: var(--container-w);
    z-index: 20;
    /* Moves above other backgrounds but stays below ALL panel-contents */
    background-position-x: 0 !important;
    box-shadow: 100px 0 120px rgba(0, 0, 0, 0.8), -100px 0 120px rgba(0, 0, 0, 0.8);
    border: none;
    cursor: default;
}

/* Precise shifts to ensure the 100% width inner panel always starts at the container's 0 edge */
.accordion-panel:nth-child(1):hover .panel-inner {
    left: 0;
}

.accordion-panel:nth-child(2):hover .panel-inner {
    left: -100%;
}

.accordion-panel:nth-child(3):hover .panel-inner {
    left: -200%;
}

.accordion-panel:nth-child(4):hover .panel-inner {
    left: -300%;
}

.accordion-panel:hover .panel-content {
    background: rgba(228, 0, 16, 0.05);
    /* Subtle tint on hover */
}

.accordion-panel:hover .panel-icon {
    color: var(--primary-red);
    transform: translateY(-5px);
}

.accordion-panel:hover .panel-link {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

@media (max-width: 1024px) {
    .accordion-section {
        padding: 5rem 0;
    }

    .accordion-container {
        flex-direction: column;
        height: auto;
        gap: 2rem;
        padding: 0 4%;
    }

    .accordion-panel {
        height: 380px;
        width: 100%;
        flex: none;
        border-radius: 40px;
        overflow: hidden;
    }

    .panel-inner {
        position: absolute;
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
        transform: none !important;
        background-position-x: center !important;
        background-size: cover !important;
        z-index: 10;
        border: none;
    }

    .panel-content {
        position: relative;
        z-index: 50;
        width: 100%;
        height: 100%;
        padding: 3rem 2rem;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: none !important;
    }

    .panel-content h3 {
        font-size: 1.5rem !important;
    }

    .panel-content p {
        max-width: 300px !important;
        font-size: 0.95rem !important;
        color: #fff !important;
        text-align: center;
        margin: 1rem auto;
    }

    .panel-link {
        margin-top: 1rem;
        background: var(--primary-red);
        border-color: var(--primary-red);
        color: #fff;
    }

    .accordion-panel:hover .panel-inner {
        width: 100% !important;
        left: 0 !important;
        transform: scale(1.05) !important;
        box-shadow: none !important;
    }
}

/* LOCATION SLIDER SECTION */
.location-slider-section {
    padding: 8rem 0 6rem;
    /* Edge to edge scroll container */
    background: var(--bg-white);
}

.loc-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center them vertically against the total title height */
    margin-bottom: 3.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4%;
}

.loc-grid-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -1px;
    margin: 0;
}

.loc-slider-controls {
    display: flex;
    flex-direction: row;
    /* Force horizontal */
    gap: 1rem;
    margin-top: 1rem;
    /* Visual balancing */
    justify-content: flex-end;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    color: var(--text-black);
}

.slider-arrow:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.loc-card-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 0 4%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.loc-card-container::-webkit-scrollbar {
    display: none;
}

.loc-card {
    flex: 0 0 400px;
    /* Fixed width, no shrinking */
    position: relative;
    height: 600px;
    border-radius: 35px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    scroll-snap-align: start;
}

.loc-card:hover {
    transform: translateY(-10px);
}

.loc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.loc-card:hover img {
    transform: scale(1.1);
}

.loc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.loc-card-eyebrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.loc-card-title {
    color: #fff;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .loc-card-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .loc-card {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .loc-card-container {
        grid-template-columns: 1fr;
    }

    .loc-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* HAMBURGER STYLES */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* COMPREHENSIVE MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {

    /* HEADER */
    .hamburger {
        display: flex;
    }

    .nav {
        padding: 1rem 4%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-links a {
        font-size: 1.25rem;
        display: block;
        padding: 0.5rem;
    }

    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 90%;
        margin: 0.5rem auto;
        border-radius: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    /* HERO */
    .hero-text-content {
        padding: 10rem 4% 6rem;
    }

    .service-hero h1 {
        font-size: 3rem;
    }

    .split-section {
        flex-direction: column;
        padding: 4rem 4%;
        margin-top: -30px;
    }

    .section-head {
        flex: none;
        width: 100%;
        margin-bottom: 2rem;
    }

    .section-head h2 {
        font-size: 2.5rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 4rem 4%;
        gap: 1.5rem;
    }

    .full-feature {
        flex-direction: column !important;
        text-align: center;
        padding: 5rem 4%;
        gap: 3rem;
        min-height: auto;
    }

    .feature-img {
        width: 100%;
        height: 350px;
    }

    .feature-content h2 {
        font-size: 2.8rem;
    }

    /* FOOTER */
    .pre-footer {
        flex-direction: column;
        gap: 4rem;
        padding: 5rem 4%;
    }

    .footer-form-side {
        width: 100%;
    }

    .footer-links-side {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    /* HEROES */
    .hero-text-content {
        padding: 8rem 4% 4rem;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .glow-text {
        font-size: 2rem;
    }

    .service-hero p {
        font-size: 1rem !important;
    }

    /* SECTIONS */
    .service-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr !important;
    }

    .loc-grid-header h2 {
        font-size: 2rem;
    }

    .loc-card {
        flex: 0 0 300px;
        height: 450px;
    }

    .loc-card-title {
        font-size: 1.4rem;
    }

    .staggered-card {
        margin-bottom: 2rem;
    }

    .staggered-content {
        padding: 3rem 1.5rem;
    }

    .staggered-content h2 {
        font-size: 1.8rem;
    }

    .review-card {
        flex: 0 0 300px;
    }

    .reviews-container {
        padding: 2rem 1rem !important;
        scale: 1 !important;
        border-radius: 20px !important;
    }

    .google-rating-card {
        padding: 1rem;
        border-radius: 30px;
        flex-direction: row;
        gap: 1rem;
    }

    .google-logo-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    /* FOOTER */
    .footer-bottom-wrap {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .footer-links-side {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul li {
        margin-bottom: 1rem;
    }

    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }

    .pill-button {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 0.9rem;
    }

    .hero-text-content div {
        flex-direction: column;
    }
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 0rem 4%;
    background: var(--bg-white);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.reviews-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    max-width: 600px;
    line-height: 1.1;
    color: var(--text-black);
}

.google-rating-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 1.5rem 2.5rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.google-logo-wrapper {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #4285F4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.google-rating-info {
    border-left: 1px solid var(--border-light);
    padding-left: 1.5rem;
}

.google-stars {
    color: #FFB400;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    display: flex;
    gap: 2px;
}

.google-stats {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    /* Space for shadows */
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 380px;
    background: var(--bg-light);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}


.review-img-box {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.review-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.review-card:hover .review-img-box img {
    transform: scale(1.1);
}

.review-stars-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #FFB400;
    backdrop-filter: blur(5px);
}

.review-body {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-black);
    margin-bottom: 2rem;
    opacity: 0.8;
    flex: 1;
}

.review-author {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .reviews-header h2 {
        font-size: 2.5rem;
    }

    .google-rating-card {
        width: 100%;
    }
}

/* STAGGERED FEATURE PANELS */
.staggered-section {
    padding: 0rem 4%;
    background: var(--bg-white);
}

.staggered-card {
    display: flex;
    background: #FAFAFA;
    border-radius: 45px;
    overflow: hidden;
    margin-bottom: 4rem;
    min-height: 550px;
}

.staggered-card.reverse {
    flex-direction: row-reverse;
}

.staggered-image {
    flex: 1.1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.staggered-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
}

.staggered-content {
    flex: 0.9;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
}

.staggered-eyebrow {
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: black;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.staggered-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    color: black;
    font-weight: 700;
}

.staggered-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.85;
}

.staggered-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.staggered-features span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: black;
}

.staggered-features span::before {
    content: '✔';
    color: var(--primary-red);
    font-weight: 900;
}

@media (max-width: 1024px) {
    .staggered-section {
        scale: 1 !important;
        padding: 4rem 4%;
    }

    .staggered-card {
        flex-direction: column !important;
        border-radius: 40px !important;
        min-height: auto;
        background: #F8F8F8 !important;
    }

    .staggered-image {
        display: block !important;
        height: 300px !important;
        width: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        min-height: 300px !important;
        
        flex: none !important;
    }

    .staggered-content {
        padding: 4rem 2rem !important;
        text-align: center;
    }

    .staggered-content h2 {
        font-size: 2rem !important;
    }

    .staggered-features {
        align-items: center;
        text-align: left;
        margin: 1rem auto 0;
        max-width: 280px;
    }
}