/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* ========== Navbar & Hamburger ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1b4332;
}

.logo span { color: #52b788; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    text-decoration: none;
    color: #1b4332;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s, text-decoration-color 0.3s;
}

.nav-links a:hover {
    text-decoration: underline;
    text-decoration-color: #d70e0e;
}

.nav-links a:active {
    text-decoration: underline;
    text-decoration-color: #e90505;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1b4332;
}

/* ========== Hero Section ========== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./assets/image.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 4rem; 
}
.hero span { color: #72dda2; }

.btn-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    background: #33a16e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn-cta:hover { transform: translateY(-3px); }

/* ========== Sections General ========== */
.container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 100px 8%;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

/* ========== About Section ========== */
.about-text { flex: 1; }
.about-image { flex: 1; }
.about-image img { 
    width: 100%; 
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    cursor: pointer;
}
.divider {
    width: 60px;
    height: 4px;
    background: #52b788;
    margin: 15px 0;
}
.features {
    list-style: none;
    margin-top: 20px;
}
.features li {
    margin-bottom: 8px;
    color: #2d6a4f;
    font-weight: 600;
}

/* ========== Products Section ========== */
.products {
    padding: 80px 8%;
    background: #f9f9f9;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    cursor: pointer;
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card img:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.price {
    color: #52b788;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-top: 10px;
}

/* ========== Reviews Section ========== */
/* .reviews {
    padding: 60px 0;
    background: #f9f9f9;
    overflow: hidden;
}
.review-wrapper {
    overflow: hidden;
    width: 100%;
}
.review-track {
    display: flex;
    gap: 20px;
    animation: scrollReviews 25s linear infinite;
    white-space: nowrap;
}
.review-box {
    min-width: 300px;
    background: #0fdfea;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block;
}
.stars { color: #f4c150; font-size: 18px; margin-bottom: 10px; }
.review-box p { font-style: italic; }
.review-box cite { display: block; margin-top: 10px; font-weight: bold; }
@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
} */
.reviews {
    padding: 60px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.review-wrapper {
    overflow: hidden;
    width: 100%;
}

.review-track {
    display: flex;
    gap: 20px;
    animation: scrollReviews 25s linear infinite;
}

.review-box {
    flex: 0 0 300px; /* fixed width but flexible on mobile */
    background: #0fdfea;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars { 
    color: #f4c150; 
    font-size: 18px; 
    margin-bottom: 10px; 
}

.review-box p { font-style: italic; }
.review-box cite { display: block; margin-top: 10px; font-weight: bold; }

/* Smooth infinite scroll using duplicated items */
@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-box { flex: 0 0 250px; }
    .review-track { gap: 15px; }
}

@media (max-width: 480px) {
    .review-box { flex: 0 0 200px; }
    .review-track { gap: 10px; }
}

/* ========== Contact Section ========== */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e0f7ff, #ffffff);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    text-align: center;
}
.contact h2 { font-size: 2.5rem; margin-bottom: 10px; }
.contact p { font-size: 1rem; margin-bottom: 40px; color: #555; }
.contact-form-container {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.form-group { position: relative; margin-bottom: 25px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    background: #fdfdfd;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 10px rgba(0,123,255,0.2);
}
textarea { resize: none; }
.form-group label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
    background: #fff;
    padding: 0 5px;
    transition: 0.3s ease all;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.85rem;
    color: #007BFF;
}
.form-group .icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #007BFF;
    transition: color 0.3s ease;
}
.form-group input:focus ~ .icon, .form-group textarea:focus ~ .icon { color: #0056b3; }
.btn-submit {
    width: 100%;
    background: linear-gradient(90deg, #007BFF, #00CFFF);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 0;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}
.btn-submit:hover {
    background: linear-gradient(90deg, #0056b3, #00b8e6);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,123,255,0.35);
}

/* ========== Footer ========== */
footer {
    text-align: center;
    padding: 20px;
    background: #081c15;
    color: #95d5b2;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .contact h2 { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; width: 100%; background: #fff; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; }
    .container { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .contact-form-container { padding: 30px 20px; }
    .contact h2 { font-size: 2rem; }
    .contact p { font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .contact h2 { font-size: 1.8rem; }
    .contact p { font-size: 0.9rem; }
    .form-group input, .form-group textarea { padding: 14px 14px 14px 45px; }
    .btn-submit { padding: 14px 0; font-size: 1rem; }
}
