:root {
    --primary: #3C6E6E;
    --primary-hover: #2d5454;
    --text-dark: #0d141a;
    --text-gray: #56585e;
    --bg-light: #E6F4F1;
    --white: #ffffff;
    --font-main: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
}

.bg-light-section {
    background-color: #f9fbfc;
}

.flex-center {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
    background-color: var(--white);
    height: 75px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 726px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    font-weight: 600;
    max-width: 709px;
    margin: 0 auto 16px;
    line-height: 1.3;
}

.hero h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 28px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.stars {
    margin-top: 20px;
    font-size: 27px;
    color: var(--white);
}

/* Sections */
.section-white {
    padding: 100px 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-2-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.text-content h3 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.btn-outline {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 28px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
}

.image-content img {
    width: 100%;
    border-radius: 20px;
}

.testimonial {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.quote {
    font-size: 48px;
    color: var(--text-dark);
    line-height: 1;
}

/* Features */
.feature-item {
    position: relative;
    padding: 0;
    /* Changed from 40px to 0 for image-first design */
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-text {
    padding: 30px;
    position: relative;
}

.shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: -1;
}

.feature-text h6 {
    font-size: 20px;
    margin-bottom: 15px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-size: 48px;
    margin-bottom: 15px;
}

.image-gallery-small {
    display: flex;
    gap: 20px;
}

.image-gallery-small img {
    height: 350px;
    width: 50%;
    object-fit: cover;
    border-radius: 15px;
}

.map-container {
    height: 450px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

/* Products */
.price-tag {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
    font-size: 1.2rem;
}

.product-item {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.product-item img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
}

.gallery-item {
    text-align: center;
}

.gallery-item span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.center-text {
    text-align: center;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d9e6;
    border-radius: 10px;
    font-family: inherit;
}

.btn-primary-form {
    background-color: var(--primary);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 50px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary-form:hover {
    background-color: var(--primary-hover);
}

.info-block {
    margin-bottom: 30px;
}

.info-block strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #1A3A3A;
    color: var(--white);
    padding: 80px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-left h5 {
    font-size: 28px;
    margin-bottom: 25px;
}

.footer-right {
    display: flex;
    gap: 80px;
}

/* Responsive */
@media (max-width: 992px) {

    .grid-2,
    .grid-2-alt,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .section-white {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #f9f9f9;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}