@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --cream: #FAF7F2;
    --sand: #E8DCC8;
    --sage: #A8B5A0;
    --deep-green: #4A5D52;
    --charcoal: #2D3436;
    --terracotta: #D4886C;
    --teal: #5EABA4;
    --lavender: #9BA7C6;
    
    --font-display: 'Cormorant', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 93, 82, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-green);
    text-decoration: none;
    letter-spacing: -0.02em;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 0.3s ease;
}

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

nav a:hover:after {
    width: 100%;
}

.header-cta {
    padding: 12px 28px;
    background: var(--deep-green);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header-cta:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--deep-green);
    transition: all 0.3s ease;
}

.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(74, 93, 82, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.floating-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(74, 93, 82, 0.5);
}

.floating-phone svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(74, 93, 82, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(74, 93, 82, 0.4), 0 0 0 15px rgba(74, 93, 82, 0.1);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(168, 181, 160, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(5deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

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

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--deep-green);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--deep-green);
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 40px;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-badge {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--deep-green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-badge svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-badge:nth-child(1) { animation-delay: 0.1s; }
.feature-badge:nth-child(2) { animation-delay: 0.2s; }
.feature-badge:nth-child(3) { animation-delay: 0.3s; }
.feature-badge:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--deep-green);
    color: white;
    box-shadow: 0 4px 20px rgba(74, 93, 82, 0.3);
}

.btn-primary:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(74, 93, 82, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-green);
    border: 2px solid var(--deep-green);
}

.btn-secondary:hover {
    background: var(--deep-green);
    color: white;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
    display: grid;
    gap: 20px;
}

.hero-image-main {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-secondary {
    width: 70%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

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

/* Section Styles */
section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 0px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--deep-green);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 700px;
    margin: -40px auto 60px;
}

.tech-section {
    background: linear-gradient(135deg, rgba(168, 181, 160, 0.1) 0%, rgba(94, 171, 164, 0.1) 100%);
    border-radius: 32px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 181, 160, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
}

.tech-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tech-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--deep-green);
}

.tech-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--deep-green);
    font-weight: 600;
}

.tech-content p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.8;
    font-size: 1.05rem;
}

.safety-section {
    background: linear-gradient(135deg, var(--sage) 0%, var(--teal) 100%);
    color: white;
    border-radius: 32px;
    padding: 80px 60px;
    margin: 60px 0;
}

.safety-section .section-title {
    color: white;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}



.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 30px;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--deep-green);
}

.product-description {
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--deep-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:nth-child(1) .product-badge { background: linear-gradient(135deg, #FFD89B 0%, #F9B572 100%); color: white; }
.product-card:nth-child(2) .product-badge { background: linear-gradient(135deg, #6BA5B8 0%, #4A7C8C 100%); color: white; }
.product-card:nth-child(3) .product-badge { background: linear-gradient(135deg, #E8DCC8 0%, #C8B8A0 100%); color: var(--deep-green); }
.product-card:nth-child(4) .product-badge { background: linear-gradient(135deg, #A494C4 0%, #7B6B9C 100%); color: white; }
.product-card:nth-child(5) .product-badge { background: linear-gradient(135deg, #7EBDA6 0%, #5E9D86 100%); color: white; }

.eco-section {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="leaves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M20,50 Q30,30 40,50 T60,50" fill="none" stroke="%23A8B5A0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="1200" height="400" fill="%23FAF7F2"/><rect width="1200" height="400" fill="url(%23leaves)"/></svg>') center/cover,
                linear-gradient(135deg, var(--cream) 0%, white 100%);
    padding: 100px 60px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.eco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(168, 181, 160, 0.15) 0%, transparent 50%);
}

.eco-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eco-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.eco-feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.eco-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.eco-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.eco-feature-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.eco-feature h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 12px;
}

.eco-feature p {
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.7;
}

.contact-section {
    background: var(--deep-green);
    color: white;
    border-radius: 32px;
    padding: 80px 60px;
    margin-top: 60px;
}

.contact-section .section-title {
    color: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-text {
    font-size: 1.1rem;
}

.contact-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    text-align: center;
    padding: 40px;
    color: var(--charcoal);
    opacity: 0.6;
    font-size: 0.9rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 968px) {
    nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 30px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card:nth-child(1),
    .product-card:nth-child(2) {
        grid-row: span 1;
    }
    
    .product-card:nth-child(1) .product-image,
    .product-card:nth-child(2) .product-image {
        height: 300px;
    }
    
    .eco-features {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 30px;
    }
    
    .tech-section,
    .safety-section,
    .eco-section,
    .contact-section {
        padding: 60px 30px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .floating-phone {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-phone svg {
        width: 22px;
        height: 22px;
    }
    .header-cta{
        display: none;
    }
    .tech-item{
        flex-wrap: wrap;
    }
    .benefit-item{
        padding: 15px;
        flex-wrap: wrap;
    }
    .section-title{
        line-height: 1.1;
    }
    .eco-section{
        padding: 30px;
    }
    .hero-description{
        font-size: 1rem;
    }
}

@media (max-width: 968px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    nav.active {
        display: flex;
    }
    
    nav a {
        padding: 15px 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    nav a:last-child {
        border-bottom: none;
    }
    
    nav a:after {
        display: none;
    }
}