/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Color Scheme */
:root {
    --primary-color: #3d7e90; /* Teal/Blue */
    --secondary-color: #db8c7e; /* Salmon/Pink */
    --primary-dark: #2a6173;
    --secondary-dark: #c7796b;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --hero-bg: #f1f1f1;
}

/* Header Styles - Sticky Navigation with Right-Aligned Menu */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    height: 120px; /* Increased from 100px to 120px */
    display: block;
    transition: height 0.3s ease;
}

/* Smaller logo when scrolling */
header.scrolled .logo {
    height: 90px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Navigation and Right-side styles */
.header-right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Right align everything */
    flex-grow: 1;
    gap: 30px; /* Space between menu and phone CTA */
}

/* Mobile menu controls */
.nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    padding: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end; /* Right align menu items */
    gap: 30px; /* Consistent spacing between items */
}

.nav-menu li {
    margin: 0; /* Reset margin since we're using gap */
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

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

/* Phone CTA Styling */
.phone-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-cta:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.phone-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* Hero Section with Enhanced Pattern */
.hero {
    background-color: var(--hero-bg);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

/* Hero Background Pattern with Shapes - Increased Contrast */
.hero::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(61, 126, 144, 0.12); /* Increased opacity */
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: 100px;
    width: 400px;
    height: 400px;
    background-color: rgba(219, 140, 126, 0.12); /* Increased opacity */
    border-radius: 50%;
    z-index: 0;
}

/* Decorative elements - Increased Contrast */
.hero-decoration-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30px;
    height: 30px;
    background-color: rgba(61, 126, 144, 0.18); /* Increased opacity */
    border-radius: 10px;
    transform: rotate(45deg);
    z-index: 0;
}

.hero-decoration-2 {
    position: absolute;
    bottom: 20%;
    right: 30%;
    width: 20px;
    height: 20px;
    background-color: rgba(219, 140, 126, 0.18); /* Increased opacity */
    border-radius: 50%;
    z-index: 0;
}

.hero-decoration-3 {
    position: absolute;
    top: 60%;
    left: 10%;
    width: 50px;
    height: 10px;
    background-color: rgba(61, 126, 144, 0.15); /* Increased opacity */
    border-radius: 5px;
    z-index: 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 500px;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image {
    width: 45%;
    position: relative;
}

.hero-image-shape {
    width: 100%;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    max-height: 400px;
    max-width: 400px;
    margin-left: auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

.hero-image-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

/* Collection Section */
.collection {
    padding: 80px 0;
    background-color: var(--white);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.collection-title {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: normal;
    margin-bottom: 20px;
}

.collection-description {
    color: var(--primary-color);
    max-width: 750px;
    font-size: 16px;
    line-height: 1.6;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px 0 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    text-align: left;
    margin-bottom: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-container {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    flex-grow: 1;
}

.inquiry-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    margin-top: auto;
}

.inquiry-button:hover {
    background-color: var(--secondary-dark);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--primary-color);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 30px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Testimonials Section - Updated with Google Reviews (no images) */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.testimonial {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    flex-grow: 1;
    min-width: 0;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.review-date {
    font-size: 14px;
    color: var(--text-light);
}

.stars {
    display: flex;
    margin-bottom: 10px;
}

.star {
    color: #FBBC05; /* Google review star color */
    font-size: 18px;
    margin-right: 2px;
}

.review-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.review-preview {
    margin-bottom: 10px;
}

.review-full {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-full.expanded {
    max-height: 1000px;
    opacity: 1;
    margin-top: 8px;
}

.read-more {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more-icon {
    margin-left: 5px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.read-more.expanded .read-more-icon {
    transform: rotate(45deg);
}

.review-source {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

.google-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

/* FAQ Section - Accordion Style */
.faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(61, 126, 144, 0.05);
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-dark);
}

.faq-answer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-group legend {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: normal;
    padding: 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    margin-left: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    transform: scale(1.2);
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-dark);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup {
    transform: scale(1);
}

.popup h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.popup p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.popup-close-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-close-button:hover {
    background-color: var(--secondary-dark);
}

/* Contact / Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column p,
.footer-column a {
    color: #ddd;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

/* Contact info with icons */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    min-width: 25px;
    color: var(--secondary-color);
    margin-right: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 14px;
}

/* Instagram Icon - Removed circle completely */
.instagram-icon {
    display: inline-block;
    margin-top: 20px;
}

/* Instagram SVG Icon */
.instagram-svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 990px) {
    /* Header styles for mobile */
    .header-container {
        padding: 10px 20px;
        position: relative;
    }
    
    .logo {
        height: 90px; /* Adjusted for mobile */
        z-index: 10;
    }
    
    .header-right-section {
        gap: 15px;
    }
    
    .nav-toggle {
        display: block;
        z-index: 10;
        order: 2; /* Push toggle button to the right */
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px 0;
        z-index: 5;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 20px;
        text-align: center;
    }
    
    .phone-cta {
        order: 1; /* Keep phone CTA to the left of toggle */
        padding: 8px 15px;
        font-size: 15px;
    }
    
    /* Maintain decorative elements on mobile but reposition */
    .hero::before {
        top: -100px;
        left: -100px;
        width: 250px;
        height: 250px;
        opacity: 0.15;
    }
    
    .hero::after {
        bottom: -150px;
        right: -100px;
        width: 300px;
        height: 300px;
        opacity: 0.15;
    }
    
    .hero-decoration-1 {
        top: 15%;
        left: 85%;
        width: 25px;
        height: 25px;
        opacity: 0.2;
    }
    
    .hero-decoration-2 {
        top: 75%;
        left: 10%;
        width: 15px;
        height: 15px;
        opacity: 0.2;
    }
    
    .hero-decoration-3 {
        top: 40%;
        left: 75%;
        width: 40px;
        height: 8px;
        opacity: 0.2;
    }
    
    /* Hero and content styles for mobile */
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    
    /* Hide hero image on medium screens */
    .hero-image {
        display: none;
    }
    
    .collection-header {
        flex-direction: column;
    }
    
    /* Footer columns stack on mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Back to top button positioning for mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 80px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    /* Show products in rows of 2 on mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 13px;
    }
}

@media (max-width: 650px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo {
        height: 70px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    /* Keep products in rows of 2 even on smallest screens */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Make product cards more compact on very small screens */
    .product-image-container {
        height: 150px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-price {
        margin-bottom: 10px;
    }
    
    .product-description {
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .inquiry-button {
        padding: 10px;
        font-size: 14px;
    }
    
    /* Smaller back to top button on very small screens */
    .back-to-top {
        width: 45px;
        height: 45px;
    }
}

/* For very small mobile devices, adjust product card elements further */
@media (max-width: 400px) {
    .product-title {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .inquiry-button {
        padding: 8px;
        font-size: 13px;
    }
}