:root {
    /* Kool Vision Media Core Brand Colors */
    --kv-orange: #F39200;
    --kv-teal: #00B8D4;
    --kv-aqua: #48E5C2;
    --kv-blue: #0A4A7A;
    --kv-dark: #062846;
    --bg-light: #FFFFFF;
    --bg-alt: #F0FAFA;
    /* Slight warm tone for alternating sections */
    --bg-card: #FFFFFF;
    --text-muted: #5A6A7A;

    --radius-pill: 50px;
    --radius-lg: 20px;
    --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-pricing: 0 30px 60px rgba(243, 146, 0, 0.1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base Reset for Lenis */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Remove default scroll-behavior since we use Lenis */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--kv-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif-heading {
    font-family: var(--font-heading);
    color: var(--kv-dark);
    line-height: 1.1;
    font-weight: 400;
}

.serif-heading {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    letter-spacing: -1px;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
    display: block;
    text-align: center;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 10rem 0;
}

.alt-bg {
    background-color: var(--bg-alt);
}

/* Layout Helpers */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.two-col-layout.reverse .col-text {
    order: 2;
}

.two-col-layout.reverse .col-image {
    order: 1;
}

/* Tag Pill */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.tag-pill .dot {
    width: 6px;
    height: 6px;
    background-color: var(--kv-orange);
    border-radius: 50%;
}

/* Animation Masks (Formedge style line reveals) */
.reveal-wrapper {
    overflow: hidden;
    /* Clips the text sliding up */
    display: flex;
    /* ensures text isn't inline-clipped poorly */
}

.reveal-text {
    /* Initially hidden via JS immediately */
    transform: translateY(110%);
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 2.8rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.primary-btn {
    background-color: var(--kv-orange);
    color: #fff;
}

.outline-btn {
    background-color: transparent;
    border: 2px solid var(--kv-dark);
    color: var(--kv-dark);
}

.btn-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
    background-color: #e08200;
    box-shadow: 0 15px 30px rgba(243, 146, 0, 0.3);
}

.outline-btn:hover {
    background-color: var(--kv-dark);
    color: #fff;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.main-nav.scrolled {
    background: rgba(253, 253, 253, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-nav.scrolled .nav-container {
    padding: 1rem 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: -1px;
}

.logo-teal {
    color: var(--kv-teal);
}

.logo-orange {
    color: var(--kv-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--kv-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--kv-orange);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding-top: 5rem;
    overflow: hidden;
}

/* Left side fade out for the carousel to disappear behind the text */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    /* Gradient from solid white on the left (hiding everything behind text) to transparent on the right */
    background: linear-gradient(to right, rgba(253, 253, 253, 1) 15%, rgba(253, 253, 253, 0.95) 30%, rgba(253, 253, 253, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* particles cover gradient so they stay visible */
    opacity: 0.6;
}

/* Hero Background Marquee Carousel */
.hero-carousel-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100vw;
    transform: translateY(-50%) rotate(-2deg);
    z-index: 0;
    /* lowest z-index so it repeats behind the title */
    display: flex;
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.hero-carousel-track {
    display: flex;
    gap: 45px;
    padding-right: 45px;
    animation: heroMarquee 40s linear infinite;
    align-items: center;
}

@keyframes heroMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.hc-card {
    flex-shrink: 0;
    width: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: #e0e0e0;
    position: relative;
}

.hc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Staggered Heights corresponding to the photo layout */
.hc1 {
    height: 450px;
    align-self: flex-start;
    margin-top: 45px;
}

.hc2 {
    height: 675px;
    align-self: flex-end;
    margin-bottom: 30px;
}

.hc3 {
    height: 825px;
    align-self: center;
}

.hc4 {
    height: 600px;
    align-self: flex-start;
    margin-top: 90px;
}

.hc5 {
    height: 750px;
    align-self: flex-end;
    margin-bottom: 45px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding-left: 0;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(4.5rem, 8vw, 7rem);
    letter-spacing: -2px;
    /* Create a glowing drop shadow so images 'disappear' as they slide behind the text */
    text-shadow: 0 0 30px rgba(253, 253, 253, 1), 0 0 15px rgba(253, 253, 253, 0.9);
}

.highlight-text {
    color: var(--kv-orange);
    font-style: italic;
    text-shadow: 0 0 30px rgba(253, 253, 253, 1), 0 0 15px rgba(253, 253, 253, 0.9);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 2rem 0 3rem;
    font-weight: 500;
}

.hero-actions {
    pointer-events: auto;
}

/* Content sections */
.service-list {
    margin-top: 3rem;
    list-style: none;
}

.service-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-list i {
    font-size: 1.8rem;
    color: var(--kv-teal);
    margin-top: 5px;
}

.service-list h4 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.service-list span {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Parallax Image Container */
.image-parallax-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 700px;
    position: relative;
    box-shadow: var(--shadow-light);
}

.parallax-img {
    width: 100%;
    height: 120%;
    /* Extra height for scroll leeway */
    object-fit: cover;
    /* JS will handle top value based on scroll */
}

/* Swirl Section (Orbital Video Frame) */
.swirl-section {
    position: relative;
    background: var(--bg-alt);
    margin: 0;
    padding: 0;
}

.swirl-pin-wrap {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fancy-suite-banner {
    position: absolute;
    bottom: 8%;
    /* moved to bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.95));
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(243, 146, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    width: max-content;
    max-width: 90vw;
}

.fancy-suite-banner .banner-badge {
    background: var(--kv-orange);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fancy-suite-banner .banner-title {
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    margin: 0;
}

.swirl-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    perspective: 1000px;
}

.swirl-video-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 65vh;
    border-radius: 20px;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swirl-video-wrapper video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 20px;
}

.swirl-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    /* larger cards */
    margin-top: -120px;
    margin-left: -175px;
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    z-index: 5;
    text-align: center;
    opacity: 0;
    /* hidden initially */
    will-change: transform, opacity;
}

.swirl-card i {
    font-size: 2.5rem;
    color: var(--kv-orange);
    margin-bottom: 1rem;
}

.swirl-card h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--kv-dark);
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.swirl-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Services Grid */
.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 2rem;
    grid-auto-flow: dense;
}

@media (min-width: 600px) {
    .services-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-bento-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-wide {
        grid-column: span 2;
        flex-direction: row !important;
        align-items: center;
        gap: 2rem;
        padding: 2rem 3rem !important;
    }

    .bento-wide i {
        margin-bottom: 0 !important;
        font-size: 3rem !important;
    }
}

.bento-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.bento-large {
    padding: 0;
}

.bento-image {
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    overflow: hidden;
    position: relative;
    flex: 1;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-card:hover .bento-image img {
    transform: scale(1.05);
}

.bento-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.bento-card i {
    font-size: 2.5rem;
    color: var(--kv-orange);
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--kv-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Showcase details */
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--kv-orange);
}

.stats-row {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
}

.stat h3 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--kv-dark);
}

.stat h3 span {
    font-size: 2rem;
    color: var(--kv-teal);
    font-family: var(--font-body);
    font-weight: 700;
}

.stat p {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Pricing */
.pricing-section {
    padding-top: 6rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
}

.price-card {
    background: var(--bg-card);
    padding: 2.5rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.price-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.price-card .price span {
    font-size: 1.5rem;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
    color: var(--text-muted);
}

.price-desc {
    color: var(--text-muted);
    min-height: 50px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.price-features {
    list-style: none;
    margin-bottom: 3rem;
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 0.95rem;
}

.price-features li i {
    color: var(--kv-teal);
    margin-right: 10px;
}

.price-features li.disabled {
    color: #bbb;
}

.price-features li.disabled i {
    color: #bbb;
}

.price-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--kv-orange);
    box-shadow: var(--shadow-pricing);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kv-orange);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews */
.reviews-section {
    padding: 8rem 0;
}

.review-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
}

.stars {
    color: var(--kv-orange);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--kv-dark);
    line-height: 1.5;
    margin-bottom: 3rem;
}

.author h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.2rem;
}

.author span {
    color: var(--kv-teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA */
.cta-card {
    background: var(--kv-dark);
    border-radius: var(--radius-lg);
    padding: 7rem 5%;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
}

.minimal-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.minimal-form input,
.minimal-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
}

.minimal-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.minimal-form select {
    color: rgba(255, 255, 255, 0.5);
}

.minimal-form select option {
    color: var(--kv-dark);
}

.minimal-form input:focus,
.minimal-form select:focus {
    outline: none;
    border-color: var(--kv-orange);
}

.submit-btn {
    background-color: var(--kv-teal);
    color: #fff;
    margin-top: 3rem;
}

.submit-btn:hover {
    background-color: #009cb3;
}

/* Scatter Carousel (Wild Gallery) */
.scatter-gallery-section {
    background: var(--kv-dark);
    position: relative;
    overflow: hidden;
}

.scatter-pin-wrap {
    height: 85vh;
    /* Reduced from 100vh for a tighter section height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.scatter-header {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}

.scatter-center {
    position: relative;
    width: 600px;
    height: 380px;
    z-index: 5;
    perspective: 1200px;
}

.scatter-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    will-change: transform;
    border: 6px solid var(--bg-light);
}

.scatter-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scatter Gallery CTA Button */
.scatter-cta-btn {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: var(--kv-orange);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(243, 146, 0, 0.4);
    white-space: nowrap;
}

.scatter-cta-btn:hover {
    background: #d97f00;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 40px rgba(243, 146, 0, 0.6);
}

.scatter-cta-btn i {
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

/* ============================
   Reviews Section
   ============================ */
.reviews-section {
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: var(--bg-alt);
}

.reviews-aggregate {
    margin-top: 1rem;
}

.google-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.google-logo-sm {
    height: 20px;
    width: auto;
}

.aggregate-rating {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--kv-dark);
}

.stars-row {
    display: flex;
    gap: 2px;
}

.stars-row i,
.review-stars i {
    color: #FBBC04;
    font-size: 0.9rem;
}

.review-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Reviews Marquee */
.reviews-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: reviews-scroll 60s linear infinite;
    width: max-content;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes reviews-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Review Card */
.review-card {
    flex-shrink: 0;
    width: 360px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kv-teal), var(--kv-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--kv-dark);
    margin: 0;
    line-height: 1.3;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-google-logo {
    height: 16px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.7;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.8rem;
}

.review-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .two-col-layout.reverse .col-text {
        order: 1;
    }

    .image-parallax-container {
        height: 500px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .price-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .minimal-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero {
        padding-top: 8rem;
    }
}