/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #FF7D00;
    --orange-hover: #e06e00;
    --teal: #14616D;
    --dark: #1B1B1B;
    --dark-bg: #0d1b2a;
    --white: #F9F9F9;
    --gray-light: #E0E0E0;
    --gray-text: #555;
    --footer-bg: #FFECD1;
    --font-heading: 'Oswald', Arial, Helvetica, sans-serif;
    --font-body: 'Lexend Deca', Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.text-teal {
    color: var(--teal);
}

/* ===== HEADER - transparent overlay ===== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.topbar {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.6rem 0;
}

.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #fff;
    text-decoration: none;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.4rem 1rem;
}

.btn-estimate {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-estimate:hover {
    background: var(--orange-hover);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 50px;
}

.navbar-menu {
    display: flex;
    gap: 0.4rem;
}

.navbar-menu li a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s, border-color 0.2s;
}

.navbar-menu li a:hover {
    background: rgba(255,255,255,0.1);
    border-bottom: 2px solid var(--orange);
}

.navbar-menu li a.active {
    background: rgba(255,255,255,0.1);
    border-bottom: 2px solid var(--orange);
}

/* Mobile toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2.5rem 4rem;
    color: var(--white);
    width: 100%;
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-top: 1rem;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1rem;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.btn-contact {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--orange);
    color: #fff;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: background 0.2s;
}

.btn-contact:hover {
    background: var(--orange-hover);
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews-section {
    background: var(--dark-bg);
    padding: 3rem 0 2rem;
    overflow: hidden;
}

.reviews-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.carousel-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.review-slide {
    min-width: 100%;
    display: flex;
    gap: 3rem;
    padding: 1rem 1rem;
    color: #fff;
}

.review-left {
    flex: 0 0 240px;
}

.review-stars {
    color: #FBBC05;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.google-badge {
    margin-top: 0.5rem;
}

.google-logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: #4285F4;
}

.google-stars {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.1rem;
}

.mini-stars {
    color: #FBBC05;
    letter-spacing: 1px;
}

.review-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-right p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.review-author {
    margin-top: 1rem;
    color: #fff !important;
}

.carousel-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    color: #fff;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.carousel-dot.active {
    background: #fff;
}

/* ===== ABOUT SECTION with lion logo ===== */
.about-section {
    padding: 4rem 0;
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-logo {
    flex: 0 0 350px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-logo img {
    width: 100%;
    height: auto;
    opacity: 0.25;
}

.about-section h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ===== PARALLAX + TEXT SECTION ===== */
.parallax-text-section {
    padding: 0;
}

.parallax-text-inner {
    display: flex;
    min-height: 500px;
}

.parallax-image-col {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.parallax-image {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-text-col {
    flex: 1;
    padding: 3rem 3rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.parallax-text-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

/* ===== SERVICES SECTION - 4 col grid ===== */
.services-section {
    padding: 3rem 0;
    background: var(--gray-light);
}

.services-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.services-section h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.2rem;
}

.service-card {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-image {
    padding: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 1rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.4rem;
    color: var(--teal);
}

.service-content p {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.btn-learn-more {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s;
    text-align: center;
    align-self: flex-start;
    margin-top: auto;
}

.btn-learn-more:hover {
    background: var(--orange-hover);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 4rem 0;
}

.why-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 0;
    align-items: stretch;
}

.why-text {
    flex: 1;
    padding-right: 3rem;
}

.why-section h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--dark);
}

.why-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.why-point p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark);
}

.why-body {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-text);
}

.why-image-parallax {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.why-parallax-bg {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ===== BOTTOM IMAGES ===== */
.bottom-images {
    display: flex;
}

.bottom-img {
    flex: 1;
    overflow: hidden;
    max-height: 400px;
}

.bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-img-zoom {
    position: relative;
}

.bottom-img-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    min-height: 400px;
}

/* Parallax zoom on scroll handled via JS */

/* ===== FOOTER ===== */
.site-footer {
    background: var(--footer-bg);
    color: var(--dark);
    padding: 3rem 0 0;
    font-size: 0.85rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 2fr 0.8fr;
    gap: 3rem;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 60px;
    height: auto;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--teal);
    line-height: 1.2;
}

.footer-detail {
    margin-bottom: 0.3rem;
}

.footer-detail strong {
    color: var(--dark);
}

.footer-detail a {
    color: var(--dark);
    transition: color 0.2s;
}

.footer-detail a:hover {
    color: var(--orange);
}

.footer-col strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.5rem;
}

.service-area-list {
    columns: 2;
    column-gap: 2rem;
    margin-top: 0.5rem;
}

.service-area-list li {
    font-size: 0.8rem;
    padding: 0.15rem 0;
    position: relative;
    padding-left: 0.8rem;
}

.service-area-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark);
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1877F2;
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s;
}

.social-icon:hover {
    background: #1565C0;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 0.75rem;
    color: #888;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .navbar-toggle {
        display: flex;
    }
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
    }
    .navbar-menu.open {
        display: flex;
    }
    .navbar-menu li a {
        padding: 0.8rem 1.5rem;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .parallax-text-inner {
        flex-direction: column;
    }
    .parallax-image-col {
        flex: none;
        height: 300px;
    }
    .parallax-image {
        background-attachment: scroll;
    }
    .parallax-text-col {
        padding: 2rem 1.5rem;
    }
    .why-inner {
        flex-direction: column;
    }
    .why-image-parallax {
        flex: none;
        width: 100%;
        min-height: 300px;
    }
    .why-parallax-bg {
        background-attachment: scroll;
    }
    .about-inner {
        flex-direction: column;
    }
    .about-logo {
        flex: none;
        width: 200px;
        margin: 0 auto;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .bottom-images {
        flex-direction: column;
    }
    .review-slide {
        flex-direction: column;
        gap: 1.5rem;
    }
    .review-left {
        flex: none;
    }
}

@media (max-width: 600px) {
    .topbar-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-content {
        padding-top: 10rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}
