/* === CSS Reset === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 1rem = 16px */
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600; /* Cormorant looks good a bit bolder */
    line-height: 1.3;
    color: var(--heading-color);
}

/* === CSS Variables === */
:root {
    --primary-color: #66CDAA;   /* Medium Aquamarine / Mint Green */
    --secondary-color: #4DB6AC; /* Darker Mint / Teal */
    --accent-color: #BFAE99;    /* Soft Beige/Taupe (Luxury touch) */
    --accent-color-darker: #A89C8C;
    --heading-color: #333333;  /* Dark Gray */
    --text-color: #5F5F5F;     /* Medium Gray */
    --bg-color: #FFFFFF;       /* White */
    --bg-alternate: #F7FDFB;   /* Very Light Mint / Off-White */
    --white-color: #FFFFFF;
    --black-color: #000000;
    --border-color: #E8E8E8;
    --rating-star-color: #FFC107; /* Gold for stars */
    --shadow-light: 0 3px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 6px 25px rgba(0, 0, 0, 0.08);

    --font-main: 'Raleway', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;

    --header-height: 80px;
}

/* === Utility Classes === */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 90px 0;
}
.small-padding { padding: 50px 0; } /* For smaller sections like About */

.alternate-bg {
    background-color: var(--bg-alternate);
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 15px;
}
.section-title.small-margin { margin-bottom: 10px; }

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 55px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.section-subtitle.narrow { max-width: 600px;}

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }

.cta-button {
    display: inline-block;
    padding: 13px 38px;
    border-radius: 50px; /* Rounded buttons feel friendly */
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}
.cta-button.primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(102, 205, 170, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* === Header & Navbar === */
.header {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after { /* Subtle dot indicator */
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.nav-link.active::after {
    opacity: 1;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--heading-color);
    transition: all 0.3s ease-in-out;
}

/* === Hero Section === */
.hero-section {
    min-height: 85vh; /* Slightly less than full viewport */
    display: flex;
    align-items: center;
    justify-content: center; /* Center content if no bg image */
    position: relative;
    text-align: center;
    color: var(--heading-color); /* Text color for light background */
    padding-top: var(--header-height);
    overflow: hidden;
}
/* Optional: Add subtle pattern or texture if no image */
/* body { background-image: url('path/to/subtle_pattern.png'); } */


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInText 1s ease-out 0.5s backwards;
}

.hero-title {
    font-size: 3.5rem; /* Adjust size as needed */
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-title .highlight {
     color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400; /* Regular weight for Raleway */
    color: var(--text-color);
    margin-bottom: 35px;
    text-align: center;
}

/* === About Section === */
.about-section {
    /* Standard text section */
}

/* === Services Section === */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-info {
    padding: 25px 20px;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* === Products Section === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Smaller minmax for products */
    gap: 30px;
     margin-bottom: 50px;
}

.product-item {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
     transition: box-shadow 0.3s ease;
}

.product-item:hover {
     box-shadow: var(--shadow-light);
}

.product-img {
    width: 100%;
    height: 260px;
    object-fit: cover; /* Or contain if product shape varies */
    padding: 15px; /* Padding around product image */
    background-color: var(--bg-alternate); /* Subtle background for image */
}

.product-info {
    padding: 20px 15px;
}

.product-name {
     font-family: var(--font-main); /* Use main font */
     font-weight: 600;
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}
.product-category {
    font-size: 0.8rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.section-cta {
    text-align: center;
    margin-top: 30px;
}

/* === Testimonials Section === */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: var(--white-color);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color); /* Accent border */
}

.rating {
    margin-bottom: 15px;
    color: var(--rating-star-color);
    font-size: 1.1rem;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.8;
    position: relative;
    padding-left: 25px; /* Space for quote mark */
}
.quote::before { /* Pseudo-element for quote mark */
    content: '“';
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--border-color);
    position: absolute;
    left: -5px;
    top: -10px;
}


.author {
    font-weight: 600;
    color: var(--heading-color);
    text-align: right;
}

/* === Contact Section === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info | Map */
    gap: 40px;
    align-items: flex-start;
    background-color: var(--white-color); /* Add bg if needed */
    padding: 30px 0; /* Padding around the content */
}

.contact-info p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-color);
}

.contact-info .icon {
    margin-right: 15px;
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 500;
}
.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.social-links-contact {
    margin-top: 25px;
}
.social-links-contact a {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.social-links-contact a:hover {
    color: var(--primary-color);
}

.contact-map iframe {
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    width: 100%;
    min-height: 350px;
}

/* === Footer === */
.footer {
    background-color: var(--bg-alternate);
    color: var(--text-color);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.footer-content a {
    color: var(--text-color);
}
.footer-content a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* === Animations === */
@keyframes fadeInText {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* === Responsive Design === */

/* Mobile Devices (<= 767px) */
@media only screen and (max-width: 767px) {
    :root { font-size: 90%; --header-height: 70px; }
    .container { padding: 0 15px; }
    .section-padding { padding: 60px 0; }
    .small-padding { padding: 40px 0; }
    .section-title { font-size: 2.1rem; }
    .section-subtitle { margin-bottom: 40px; font-size: 1rem; }

    /* Header Mobile */
    .hamburger { display: block; z-index: 1001; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-menu { position: fixed; left: -100%; top: var(--header-height); flex-direction: column; background-color: var(--white-color); width: 100%; text-align: center; transition: left 0.3s ease; box-shadow: 0 4px 8px rgba(0,0,0,0.1); padding: 30px 0; height: calc(100vh - var(--header-height)); overflow-y: auto; }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 25px 0; }
    .nav-link { font-size: 1.1rem; }
    .nav-link.active::after { opacity: 1; } /* Ensure dot shows */

    /* Hero Mobile */
    .hero-section { min-height: 70vh; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .cta-button { padding: 12px 30px; font-size: 0.85rem; }

    /* Grids Mobile (Services, Products, Testimonials) */
    .service-grid, .product-grid, .testimonial-grid { grid-template-columns: 1fr; gap: 25px; }
    .service-img { height: 180px; }
    .product-img { height: 220px; }
    .testimonial-item { padding: 25px 20px; }
    .quote { padding-left: 20px; }
    .quote::before { font-size: 2.5rem; left: -2px; top: -5px; }


    /* Contact Mobile */
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contact-map { margin-top: 20px; min-height: 250px; }
    .contact-info { text-align: center; }
    .contact-info p { justify-content: center; }
    .social-links-contact { text-align: center; }

    /* Footer Mobile */
    .footer-content p { font-size: 0.85rem; }
}

/* Tablet Devices (768px - 1023px) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    :root { font-size: 95%; --header-height: 75px; }
    .container { max-width: 720px; }
    .section-padding { padding: 75px 0; }
    .section-title { font-size: 2.4rem; }

    /* Header Tablet (Keep Hamburger) */
    .hamburger { display: block; z-index: 1001; }
    .nav-menu { position: fixed; left: -100%; top: var(--header-height); flex-direction: column; background-color: var(--white-color); width: 60%; max-width: 350px; text-align: left; transition: left 0.3s ease; box-shadow: 2px 0 8px rgba(0,0,0,0.1); padding: 30px 20px; height: calc(100vh - var(--header-height)); overflow-y: auto; }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 20px 0; }
    .nav-link { font-size: 1rem; padding-left: 10px; }
     .nav-link::after { left: 15px; /* Adjust dot position */ }

    /* Hero Tablet */
    .hero-title { font-size: 3rem; }

    /* Grids Tablet */
    .service-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .testimonial-grid { grid-template-columns: 1fr; } /* Keep stacked or 2 columns? */
    /* .testimonial-grid { grid-template-columns: repeat(2, 1fr); } */

     /* Contact Tablet */
     .contact-wrapper { grid-template-columns: 1fr; gap: 35px; }
     .contact-map { margin-top: 25px; }

}

/* Laptop Devices (1024px - 1439px) */
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
    :root { font-size: 100%; }
    .container { max-width: 960px; }

    /* Header Laptop (Desktop View) */
    .hamburger { display: none; }
    .nav-menu { position: static; flex-direction: row; background-color: transparent; backdrop-filter: none; width: auto; box-shadow: none; height: auto; padding: 0; overflow-y: visible; }
    .nav-item { margin: 0 0 0 30px; }
    .nav-link { font-size: 0.9rem; padding-left: 0; }
    .nav-link::after { left: 50%; /* Center dot again */ }


    /* Grids Laptop */
    .service-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .product-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }


    /* Contact Laptop */
     .contact-wrapper { grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: flex-start; }
     .contact-map { margin-top: 0; }
}

/* Desktop Devices (>= 1440px) */
@media only screen and (min-width: 1440px) {
    .container { max-width: 1140px; }
    .section-padding { padding: 100px 0; }

    /* Grids Desktop */
    .service-grid, .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .product-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
}

/* === End of Responsive Design === */
