/* ===== CSS VARIABLES ===== */
:root {
    --primary-green: #4a5d3a;
    --secondary-green: #6b7d52;
    --accent-beige: #d4c5b9;
    --light-beige: #f5f2ed;
    --dark-color: #1a1a1a;
    --text-gray: #5a5a5a;
    --light-gray: #e8e8e8;
    --white: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    color: var(--text-gray);
    line-height: 1.8;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.cta-button.primary {
    background: var(--primary-green);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 93, 58, 0.3);
}

.cta-button.secondary {
    background: var(--accent-beige);
    color: var(--dark-color);
}

.cta-button.secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding: 8px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(74, 93, 58, 0.2));
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 95px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #f0f0f0;
}

.hero-fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-videos-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.hero-video:nth-child(1) {
    animation: fadeInVideo 1s ease-out 0s forwards;
}

.hero-video:nth-child(2) {
    animation: fadeInVideo 1s ease-out 0.1s forwards;
}

.hero-video:nth-child(3) {
    animation: fadeInVideo 1s ease-out 0.2s forwards;
}

.hero-video:nth-child(4) {
    animation: fadeInVideo 1s ease-out 0.3s forwards;
}

.hero-video:nth-child(5) {
    animation: fadeInVideo 1s ease-out 0.4s forwards;
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.45) 0%, rgba(26, 26, 26, 0.25) 100%);
    z-index: 2;
    backdrop-filter: blur(0.5px);
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    animation: fadeInUp 1.2s ease-out;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-beige);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--primary-green);
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    animation: fadeInUp 0.8s ease-out;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--light-beige);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-slow);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

/* ===== LUCAS SECTION ===== */
.lucas-section {
    background: var(--light-beige);
    padding: 100px 0;
}

.lucas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lucas-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.lucas-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-slow);
}

.lucas-image:hover .lucas-img {
    transform: scale(1.05);
}

.lucas-content h2 {
    margin-bottom: 25px;
}

.lucas-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.lucas-contact {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.lucas-contact .cta-button {
    flex: 1;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.why-card {
    background: var(--light-beige);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.why-card:hover {
    background: var(--accent-beige);
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(10deg);
}

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

.why-card p {
    font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--light-beige);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-8px);
    border-left: 4px solid var(--primary-green);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    background: var(--secondary-green);
}

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

.service-card p {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--primary-green);
    margin-right: 10px;
    font-weight: 700;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: var(--white);
}

.pricing-intro {
    background: var(--light-beige);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    text-align: center;
}

.pricing-intro h3 {
    margin-bottom: 10px;
}

.pricing-intro-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.pricing-card {
    background: var(--light-beige);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.pricing-card:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-5px);
}

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

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin: 15px 0;
}

.price-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-green);
    margin-right: 10px;
    font-weight: 700;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
    margin-top: 70px;
    padding-top: 70px;
    border-top: 2px solid var(--light-gray);
}

.packages-section h3 {
    text-align: center;
    margin-bottom: 10px;
}

.packages-intro {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
}

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

.package-card {
    background: var(--light-beige);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.package-card.featured {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--box-shadow-lg);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-beige);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card.featured .package-badge {
    background: var(--accent-beige);
    color: var(--dark-color);
}

.package-card h4 {
    margin-bottom: 10px;
}

.package-card.featured h4 {
    color: var(--white);
}

.package-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--text-gray);
}

.package-card.featured .package-description {
    color: rgba(255, 255, 255, 0.9);
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin: 20px 0;
}

.package-card.featured .package-price {
    color: var(--accent-beige);
}

.package-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.package-features li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.package-card.featured .package-features li {
    color: rgba(255, 255, 255, 0.9);
}

.package-features i {
    color: var(--primary-green);
    margin-right: 10px;
    font-weight: 700;
}

.package-card.featured .package-features i {
    color: var(--accent-beige);
}

.pricing-disclaimer {
    background: var(--light-beige);
    padding: 35px;
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.pricing-disclaimer h4 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.disclaimer-list {
    list-style: none;
    margin: 15px 0 20px;
}

.disclaimer-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.disclaimer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.disclaimer-cta {
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 15px;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: var(--white);
}

.reviews-carousel-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.reviews-carousel {
    position: relative;
    padding: 0 70px;
}

.reviews-track {
    display: flex;
    overflow: visible;
    gap: 30px;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-slide {
    flex: 0 0 100%;
    min-width: 100%;
    animation: fadeInUp 0.8s ease-out;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .review-slide {
        flex: 0 0 calc(50% - 15px) !important;
        min-width: calc(50% - 15px) !important;
    }
}

@media (min-width: 1024px) {
    .review-slide {
        flex: 0 0 calc(33.333% - 20px) !important;
        min-width: calc(33.333% - 20px) !important;
    }
}

.review-card {
    background: var(--light-beige);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-8px);
    background: var(--white);
}

.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-author {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.review-location {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 500;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(74, 93, 58, 0.3);
}

.carousel-btn:hover {
    background: var(--secondary-green);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 16px rgba(74, 93, 58, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-box {
    text-align: center;
    padding: 35px;
    background: var(--light-beige);
    border-radius: var(--border-radius);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.stat-box:hover {
    background: var(--accent-beige);
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== REVIEWS CTA SECTION ===== */
.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.reviews-cta .cta-button {
    font-size: 1.05rem;
    padding: 16px 40px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--light-beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 93, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--light-beige);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 8px;
}

.info-content p {
    margin: 0;
}

.info-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-content a:hover {
    text-decoration: underline;
}

.contact-form h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 93, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-section h4 {
    color: var(--accent-beige);
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-beige);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== SCROLL-TO-TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===== UTILITY CLASSES ===== */
.fade-in-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate {
    animation: fadeInUp 0.8s ease-out forwards !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .logo-img {
        height: 55px;
    }

    .hero-videos-wrapper {
        flex-direction: column;
    }

    .hero-video {
        flex: 1;
        min-height: 200px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    h2 {
        font-size: 2.2rem;
    }

    .about-grid,
    .lucas-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .lucas-contact {
        flex-direction: column;
    }

    .lucas-contact .cta-button {
        width: 100%;
    }

    .services-grid,
    .pricing-grid,
    .why-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .hero-stats {
        gap: 20px;
    }

    .reviews-carousel {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .reviews-track {
        gap: 20px;
    }

    .review-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== GALLERY SECTION - CINEMATIC & EMOTIONAL ===== */
.gallery {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f2ed 0%, #ffffff 100%);
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 93, 58, 0.3), transparent);
}

.gallery .section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.gallery .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gallery .section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* ===== GALLERY CAROUSEL - PREMIUM & IMMERSIVE ===== */
.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gallery-carousel {
    width: 100%;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.gallery-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    height: 100%;
}

.gallery-item {
    flex: 0 0 25%;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.gallery-item:hover {
    filter: brightness(1.05);
}

.gallery-item img,
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img,
.gallery-item:hover .gallery-video {
    transform: scale(1.05);
}

/* Gallery Overlay - Emotional Storytelling */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Gallery Navigation Buttons - Premium Style */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--primary-green);
    font-size: 1.6rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gallery-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    color: var(--secondary-green);
}

.gallery-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-btn.prev {
    left: 24px;
}

.gallery-btn.next {
    right: 24px;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery .section-header h2 {
        font-size: 2.2rem;
    }

    .gallery-item {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 33.333%;
    }

    .gallery-carousel {
        aspect-ratio: 4 / 3;
    }

    .gallery-btn {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 50px 0;
    }

    .gallery .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery .section-header p {
        font-size: 1rem;
    }

    .gallery-item {
        flex: 0 0 50%;
    }

    .gallery-carousel {
        aspect-ratio: 1 / 1;
    }

    .gallery-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .gallery-btn.prev {
        left: 16px;
    }

    .gallery-btn.next {
        right: 16px;
    }

    .gallery-overlay p {
        font-size: 0.95rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 0;
    }

    .gallery .section-header h2 {
        font-size: 1.5rem;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .gallery-carousel {
        aspect-ratio: 9 / 12;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }
}

/* ===== MEET LUCAS SECTION - PERSONAL & EMOTIONAL ===== */
.lucas-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f2ed 100%);
    overflow: hidden;
}

.lucas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 93, 58, 0.3), transparent);
}

.lucas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Lucas Image - Premium Frame */
.lucas-image-wrapper {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.lucas-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
}

.lucas-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lucas-image-frame:hover .lucas-img {
    transform: scale(1.03);
}

.lucas-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(74, 93, 58, 0) 0%, 
        rgba(74, 93, 58, 0.05) 100%);
    pointer-events: none;
}

/* Lucas Content - Emotional Storytelling */
.lucas-content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.lucas-header {
    margin-bottom: 30px;
}

.lucas-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.lucas-tagline {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Lucas Story - Enhanced Typography */
.lucas-story {
    margin-bottom: 40px;
}

.lucas-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 400;
}

.lucas-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 24px;
    line-height: 1.7;
}

.lucas-closing {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-green);
    font-style: italic;
    margin-top: 24px;
}

/* Lucas Contact - Action Buttons */
.lucas-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lucas-contact .cta-button {
    flex: 1;
    min-width: 180px;
    text-align: center;
    transition: all 0.3s ease;
}

.lucas-contact .cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .lucas-section {
        padding: 60px 0;
    }

    .lucas-grid {
        gap: 50px;
    }

    .lucas-header h2 {
        font-size: 2.4rem;
    }

    .lucas-story p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .lucas-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lucas-image-frame {
        aspect-ratio: 4 / 5;
        max-width: 400px;
        margin: 0 auto;
    }

    .lucas-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .lucas-section {
        padding: 50px 0;
    }

    .lucas-grid {
        gap: 30px;
    }

    .lucas-image-frame {
        aspect-ratio: 3 / 4;
    }

    .lucas-header h2 {
        font-size: 1.8rem;
    }

    .lucas-header {
        margin-bottom: 24px;
    }

    .lucas-story p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .lucas-intro {
        font-size: 1.1rem;
    }

    .lucas-contact {
        flex-direction: column;
    }

    .lucas-contact .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lucas-section {
        padding: 40px 0;
    }

    .lucas-header h2 {
        font-size: 1.5rem;
    }

    .lucas-tagline {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .lucas-story p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .lucas-intro {
        font-size: 1rem;
    }
}

/* ===== SERVICES SECTION - PREMIUM & CLEAN ===== */
.services {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f2ed 100%);
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 93, 58, 0.2), transparent);
}

.services .section-header {
    margin-bottom: 60px;
}

.services .section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.services .section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 0;
}

/* Service Card - Premium Design */
.service-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(74, 93, 58, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), rgba(74, 93, 58, 0.3));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(74, 93, 58, 0.12);
    transform: translateY(-8px);
    border-color: rgba(74, 93, 58, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), rgba(74, 93, 58, 0.8));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Service Title */
.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Service Description */
.service-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 28px;
    flex-grow: 1;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.service-features i {
    color: var(--primary-green);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-card {
        padding: 35px;
    }

    .services .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 50px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 30px;
    }

    .services .section-header h2 {
        font-size: 2rem;
    }

    .services .section-header p {
        font-size: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card > p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }

    .services .section-header {
        margin-bottom: 40px;
    }

    .services .section-header h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 24px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .service-features li {
        font-size: 0.9rem;
        gap: 10px;
    }
}

/* ===== GALLERY SECTION - FINAL EMOTIONAL EXPERIENCE ===== */
.gallery {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 93, 58, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gallery .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    text-align: center;
}

.gallery .section-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gallery .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Gallery Carousel Wrapper */
.gallery-carousel-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    group: 'gallery';
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Gallery Navigation Buttons */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(74, 93, 58, 0.3);
}

.gallery-btn.prev {
    left: -70px;
}

.gallery-btn.next {
    right: -70px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery {
        padding: 80px 0;
    }

    .gallery .section-header h2 {
        font-size: 2.6rem;
    }

    .gallery-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-btn.prev {
        left: 10px;
    }

    .gallery-btn.next {
        right: 10px;
    }
}

@media (max-width: 1024px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery .section-header h2 {
        font-size: 2.2rem;
    }

    .gallery-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 50px 0;
    }

    .gallery .section-header {
        margin-bottom: 40px;
    }

    .gallery .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery .section-header p {
        font-size: 1rem;
    }

    .gallery-track {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }

    .gallery-item {
        aspect-ratio: 16 / 9;
    }

    .gallery-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 0;
    }

    .gallery .section-header h2 {
        font-size: 1.5rem;
    }

    .gallery .section-header p {
        font-size: 0.9rem;
    }

    .gallery-track {
        gap: 8px;
        padding: 8px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .gallery-overlay p {
        font-size: 0.85rem;
        padding: 12px;
    }
}

/* ===== ABOUT SECTION INTEGRATED CAROUSEL ===== */

.about-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.about-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-green);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.carousel-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(74, 93, 58, 0.25);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .carousel-btn.prev {
        left: 12px;
    }

    .carousel-btn.next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }
}


/* ===== NAVBAR ENHANCEMENTS ===== */
nav {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(74, 93, 58, 0.08) !important;
    transition: all 0.3s ease !important;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

nav ul li {
    margin: 0 18px !important;
}

nav a {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--primary-green);
}

.logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

/* ===== HERO SECTION ENHANCEMENTS ===== */
.hero-video {
    animation: zoomIn 20s ease-in-out infinite;
}

@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-carousel-track {
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
}

/* ===== ABOUT SECTION ENHANCEMENTS ===== */
.about-carousel-wrapper {
    border-radius: 20px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
    overflow: hidden;
}

.about-carousel {
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.carousel-item {
    background: linear-gradient(135deg, #f5f2ed 0%, #f9f7f4 100%);
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 10px 30px rgba(74, 93, 58, 0.3) !important;
}

/* ===== SERVICES & PRICING ENHANCEMENTS ===== */
.pricing-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
    border: 1px solid rgba(74, 93, 58, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 242, 237, 0.5) 100%);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(74, 93, 58, 0.15);
    border-color: rgba(74, 93, 58, 0.2);
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 16px 0;
}

.pricing-card ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-item {
    transition: all 0.3s ease;
    padding: 24px;
    border-radius: 12px;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(74, 93, 58, 0.12);
}

/* ===== REVIEWS ENHANCEMENTS ===== */
.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 242, 237, 0.5) 100%);
    border: 1px solid rgba(74, 93, 58, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(74, 93, 58, 0.12);
    border-color: rgba(74, 93, 58, 0.15);
}

.review-carousel-track {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.review-stars {
    color: #ffc107;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.review-author {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* ===== FOOTER ENHANCEMENTS ===== */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    padding: 60px 0 20px;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-beige);
    margin: 16px 0 32px;
    font-weight: 500;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-beige);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-beige);
    color: var(--dark-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 8px 0;
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    nav ul li {
        margin: 0 12px !important;
    }

    nav a {
        font-size: 0.9rem;
    }

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

    .hero-content p {
        font-size: 0.95rem;
    }

    .pricing-card {
        margin-bottom: 20px;
    }

    .pricing-card h3 {
        font-size: 1.1rem;
    }

    .pricing-card .price {
        font-size: 1.8rem;
    }

    .review-card {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    nav ul li {
        margin: 0 8px !important;
    }

    nav a {
        font-size: 0.85rem;
    }

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

    .hero-content p {
        font-size: 0.9rem;
    }

    .carousel-btn {
        width: 36px !important;
        height: 36px !important;
    }

    .pricing-card {
        padding: 16px;
    }

    .pricing-card h3 {
        font-size: 1rem;
    }

    .pricing-card .price {
        font-size: 1.6rem;
    }

    .review-card {
        padding: 16px;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}


/* ===== HERO SECTION REFINEMENTS ===== */

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 24px 0 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 1) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem) !important;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
    margin-bottom: 28px;
}

.hero-btn {
    padding: 12px 32px !important;
    font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 93, 58, 0.3);
}



@media (max-width: 768px) {
    .hero-stat-number {
        font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
    }

    .hero-stat-label {
        font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    }

    .hero-btn {
        padding: 10px 28px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 24px;
        margin: 20px 0 24px;
    }

    .hero-stat-number {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem) !important;
    }

    .hero-stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hero-content h1 {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem) !important;
    }

    .hero-content p {
        font-size: 0.85rem !important;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 10px 24px !important;
        font-size: 0.85rem !important;
    }
}

/* ===== HERO SECTION - FINAL FIXES ===== */

.hero-stat-label {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Soft diagonal video transitions */
.hero-carousel-item {
    position: relative;
    overflow: visible;
}

.hero-carousel-item::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    bottom: 0;
    width: 16px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 25%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.15) 75%,
        transparent 100%
    );
    z-index: 2;
    opacity: 0.6;
    clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%);
}

.hero-carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 48%,
        rgba(0, 0, 0, 0.03) 50%,
        transparent 52%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: zoomIn 20s ease-in-out infinite;
}

.hero-carousel-track {
    gap: 0 !important;
}

.hero-carousel {
    gap: 0 !important;
}

/* ===== NAVBAR REFINEMENTS - COMPACT & PREMIUM ===== */

nav {
    padding: 12px 0 !important;
}

nav ul {
    gap: 8px !important;
}

nav ul li {
    margin: 0 10px !important;
}

nav a {
    font-size: 0.9rem;
    padding: 6px 0;
}

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

/* ===== SECTION SPACING REFINEMENTS ===== */

section {
    padding: 60px 0 !important;
}

.container {
    padding: 0 20px;
}

/* ===== HERO SECTION REFINEMENTS ===== */

.hero {
    padding: 80px 0 60px !important;
}

.hero-content {
    padding: 20px;
}

.hero-content h1 {
    margin-bottom: 8px !important;
}

.hero-content p {
    margin-bottom: 20px !important;
}

.hero-stats {
    margin: 16px 0 24px !important;
    gap: 30px !important;
}

.hero-stat-label {
    font-size: 0.75rem !important;
}

/* ===== ABOUT SECTION REFINEMENTS ===== */

.about {
    padding: 50px 0 !important;
}

.about-content {
    gap: 30px;
}

.about-text h2 {
    margin-bottom: 16px !important;
}

.about-text p {
    margin-bottom: 12px !important;
    line-height: 1.6;
}

.about-features {
    margin-top: 24px;
}

.feature-item {
    padding: 12px 0 !important;
    margin-bottom: 8px !important;
}

/* ===== MEET LUCAS SECTION REFINEMENTS ===== */

.meet-lucas {
    padding: 50px 0 !important;
}

.lucas-content {
    gap: 24px;
}

.lucas-text h2 {
    margin-bottom: 12px !important;
}

.lucas-text p {
    margin-bottom: 10px !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.lucas-buttons {
    margin-top: 16px;
    gap: 12px;
}

/* ===== SERVICES SECTION REFINEMENTS ===== */

.services {
    padding: 50px 0 !important;
}

.service-item {
    padding: 20px !important;
    margin-bottom: 16px !important;
}

.service-item h3 {
    margin-bottom: 10px !important;
    font-size: 1.15rem;
}

.service-item ul li {
    padding: 6px 0 !important;
    font-size: 0.9rem;
}

/* ===== PRICING SECTION REFINEMENTS ===== */

.pricing {
    padding: 50px 0 !important;
}

.pricing-card {
    padding: 20px !important;
    margin-bottom: 16px !important;
}

.pricing-card h3 {
    margin-bottom: 8px !important;
    font-size: 1.1rem;
}

.pricing-card .price {
    margin: 12px 0 !important;
    font-size: 1.9rem;
}

.pricing-card ul li {
    padding: 5px 0 !important;
    font-size: 0.9rem;
}

/* ===== REVIEWS SECTION REFINEMENTS ===== */

.reviews {
    padding: 50px 0 !important;
}

.review-card {
    padding: 20px !important;
    margin: 0 8px !important;
}

.review-text {
    margin-bottom: 12px !important;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION REFINEMENTS ===== */

.contact {
    padding: 50px 0 !important;
}

.contact-grid {
    gap: 30px;
    margin-top: 30px !important;
}

.contact-info {
    padding: 0 !important;
}

.info-item {
    margin-bottom: 16px !important;
    padding: 0 !important;
}

.info-item h4 {
    margin-bottom: 4px !important;
    font-size: 0.95rem;
}

.info-item p {
    margin: 0 !important;
    font-size: 0.9rem;
}

.contact-form {
    padding: 0 !important;
}

.contact-form h3 {
    margin-bottom: 16px !important;
}

.form-group {
    margin-bottom: 12px !important;
}

.form-group label {
    margin-bottom: 4px !important;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 8px 12px !important;
    font-size: 0.9rem;
}

.form-group button {
    padding: 10px 24px !important;
    font-size: 0.95rem;
    margin-top: 8px !important;
}

/* ===== FOOTER REFINEMENTS ===== */

footer {
    padding: 40px 0 16px !important;
}

.footer-logo {
    max-width: 100px !important;
    margin-bottom: 12px !important;
}

.footer-tagline {
    margin: 8px 0 16px !important;
    font-size: 0.8rem;
}

.footer-content {
    gap: 30px !important;
    margin-bottom: 24px !important;
}

.footer-section h4 {
    margin-bottom: 10px !important;
    font-size: 0.95rem;
}

.footer-section ul li {
    margin-bottom: 6px !important;
}

.footer-section a {
    font-size: 0.85rem;
}

.footer-social {
    gap: 12px;
    margin-top: 12px !important;
}

.footer-social a {
    width: 36px !important;
    height: 36px !important;
}

.footer-bottom {
    padding-top: 16px !important;
}

.footer-bottom p {
    margin: 4px 0 !important;
    font-size: 0.8rem;
}

/* ===== SECTION HEADINGS REFINEMENTS ===== */

h2 {
    margin-bottom: 12px !important;
    font-size: 2rem;
}

h3 {
    margin-bottom: 10px !important;
}

/* ===== MOBILE REFINEMENTS ===== */

@media (max-width: 768px) {
    nav {
        padding: 10px 0 !important;
    }

    nav ul li {
        margin: 0 6px !important;
    }

    section {
        padding: 40px 0 !important;
    }

    .hero {
        padding: 60px 0 40px !important;
    }

    .pricing-card,
    .service-item {
        padding: 16px !important;
        margin-bottom: 12px !important;
    }

    .contact-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 8px 0 !important;
    }

    nav a {
        font-size: 0.8rem;
    }

    section {
        padding: 30px 0 !important;
    }

    .hero {
        padding: 50px 0 30px !important;
    }

    .hero-stats {
        gap: 20px !important;
    }

    .pricing-card,
    .service-item {
        padding: 14px !important;
    }

    footer {
        padding: 30px 0 12px !important;
    }
}


/* ===== NAVBAR LOGO SIZE INCREASE ===== */

.logo img {
    max-width: 55px !important;
    height: auto;
}

@media (max-width: 768px) {
    .logo img {
        max-width: 50px !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 45px !important;
    }
}


/* ===== HERO STATISTICS LABELS - PURE WHITE ===== */

.stat-label {
    color: var(--primary-green) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 0.8rem;
}


/* ===== SEAMLESS DIAGONAL VIDEO TRANSITIONS ===== */

.hero-carousel-item {
    position: relative;
    overflow: hidden;
    flex: 1 1 20%;
}

/* Ultra-soft diagonal separation between videos */
.hero-carousel-item::before {
    content: '';
    position: absolute;
    right: -6px;
    top: -10%;
    bottom: -10%;
    width: 12px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 20%,
        rgba(0, 0, 0, 0.12) 50%,
        rgba(0, 0, 0, 0.08) 80%,
        transparent 100%
    );
    z-index: 2;
    opacity: 0.7;
    clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0 90%);
    transform: skewX(-5deg);
}

/* Subtle diagonal overlay for seamless blending */
.hero-carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 47%,
        rgba(0, 0, 0, 0.02) 50%,
        transparent 53%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Smooth video display */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: zoomIn 20s ease-in-out infinite;
}

/* Remove gaps for seamless blending */
.hero-carousel-track {
    gap: 0 !important;
    display: flex;
}

.hero-carousel {
    gap: 0 !important;
    display: flex;
    overflow: hidden;
}

/* Ensure smooth transitions */
.hero-carousel-item {
    transition: opacity 0.3s ease;
}


.hero-carousel-item {
    position: relative;
    overflow: visible;
    flex: 1 1 20%;
    margin-right: -8px;
    z-index: auto;
}

.hero-carousel-item:last-child {
    margin-right: 0;
}

/* Soft overlapping shadow effect */
.hero-carousel-item::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    bottom: 0;
    width: 16px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.05) 20%,
        rgba(0, 0, 0, 0.08) 50%,
        rgba(0, 0, 0, 0.05) 80%,
        transparent 100%
    );
    z-index: 10;
    clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0 95%);
}

/* Subtle diagonal cinematic blend */
.hero-carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 48%,
        rgba(0, 0, 0, 0.01) 50%,
        transparent 52%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 5;
}

/* Video display */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Seamless carousel */
.hero-carousel-track {
    gap: 0 !important;
    display: flex;
}

.hero-carousel {
    gap: 0 !important;
    display: flex;
    overflow: hidden;
}

/* ===== STATISTICS ALIGNMENT & SPACING ===== */

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px !important;
    margin: 24px 0 32px !important;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    color: var(--primary-green) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 0.75rem;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Better alignment with button */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-button {
    margin-top: 16px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-stats {
        gap: 40px !important;
        margin: 20px 0 24px !important;
    }

    .stat-number {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 30px !important;
        margin: 16px 0 20px !important;
    }

    .stat-number {
        font-size: clamp(1.5rem, 3vw, 1.8rem);
    }

    .stat-label {
        font-size: 0.65rem;
    }
}


/* ===== SOFT FADED GRADIENT TRANSITIONS BETWEEN VIDEOS ===== */

.hero-carousel-item {
    position: relative;
    overflow: hidden;
    flex: 1 1 20%;
    margin-right: 0;
    z-index: auto;
}

/* Remove overlapping effect */
.hero-carousel-item:last-child {
    margin-right: 0;
}

/* Soft faded gradient edge - almost invisible */
.hero-carousel-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.02) 60%,
        rgba(0, 0, 0, 0.03) 80%,
        rgba(0, 0, 0, 0.02) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Subtle diagonal cinematic blend overlay */
.hero-carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 49%,
        rgba(0, 0, 0, 0.005) 50%,
        transparent 51%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Video display - clean and seamless */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Seamless carousel - no gaps */
.hero-carousel-track {
    gap: 0 !important;
    display: flex;
}

.hero-carousel {
    gap: 0 !important;
    display: flex;
    overflow: hidden;
}


/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* Reduce repaints with will-change */
.hero-video {
    will-change: transform;
}

.stat-box {
    will-change: transform;
}

.why-card {
    will-change: transform;
}

.review-card {
    will-change: transform;
}

/* Optimize animations with GPU acceleration */
.fade-in-on-scroll {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize font loading */
@font-face {
    font-display: swap;
}

/* Reduce layout thrashing */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Optimize video performance */
video {
    display: block;
    max-width: 100%;
    height: auto;
    will-change: transform;
}

