﻿/* ========================================
  Thisdomaindontexist123 Rotterdam - CSS Stylesheet
   Polygonal Design with Eco Colors
   ======================================== */

/* Color Variables */
:root {
    --primary-blue: #68AADA;
    --secondary-gray: #A5BEC5;
    --accent-beige: #CEBD9F;
    --dark-text: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --success: #27ae60;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
    word-wrap: break-word;
}

/* Polygonal Background */
.polygon-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.polygon-background::before,
.polygon-background::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 20s ease-in-out infinite;
}

.polygon-background::before {
    top: -200px;
    right: -200px;
    background-image: url('../image/foto5.jpg');
}

.polygon-background::after {
    bottom: -200px;
    left: -200px;
    animation-delay: -10s;
    background-image: url('../image/foto6.jpg');
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(5deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    transition: all 0.3s;
    border-radius: 3px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-blue);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 400px;
}

.floating-plant {
    position: absolute;
    font-size: 4rem;
    animation: floatPlant 3s ease-in-out infinite;
}

.plant-1 {
    top: 0;
    left: 10%;
    animation-delay: 0s;
}

.plant-2 {
    top: 40%;
    right: 10%;
    animation-delay: -1s;
}

.plant-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: -2s;
}

@keyframes floatPlant {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: #5899c9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(104, 170, 218, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-blue);
}

.btn-light:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary-gray);
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(104, 170, 218, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.service-link:hover {
    transform: translateX(5px);
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.check {
    color: var(--success);
    font-weight: bold;
    margin-right: 0.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary-gray);
}

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gray));
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-beige);
    margin: 1rem 0;
}

/* Content Split */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--secondary-gray);
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
}

.box-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-box h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

/* Moss Showcase */
.moss-section {
    background: var(--light-bg);
}

.moss-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.moss-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 5px 15px var(--shadow);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

/* Terrariums */
.terrarium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.terrarium-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

.terrarium-card:hover {
    transform: scale(1.05);
}

.terrarium-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.terrarium-image img,
.product-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.terrarium-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-beige);
    margin-top: 1rem;
}

/* Process Section */
.process {
    background: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--secondary-gray);
}

/* Compositions */
.composition-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.composition-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    transition: transform 0.3s;
}

.composition-card:hover {
    transform: translateY(-10px);
}

.composition-card.featured {
    border: 3px solid var(--primary-blue);
}

.composition-badge,
.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-beige);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.composition-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.composition-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.composition-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.detail-item {
    background: var(--light-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.composition-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 1rem 0;
}

/* Cacti Section */
.cacti-section {
    background: var(--light-bg);
}

.cacti-collection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cacti-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px var(--shadow);
}

/* Air Plants */
.airplant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.airplant-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.airplant-visual {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.care-info {
    margin: 1.5rem 0;
    text-align: left;
}

.care-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.care-icon {
    font-size: 1.2rem;
}

/* Display Ideas */
.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.idea-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
}

.idea-card:hover {
    transform: scale(1.05);
}

.idea-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Accessories */
.accessory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.accessory-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    transition: transform 0.3s;
}

.accessory-card:hover {
    transform: translateY(-10px);
}

.accessory-card.premium {
    border: 3px solid gold;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: gold;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.product-visual {
    font-size: 5rem;
    text-align: center;
    margin: 1rem 0;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.accessory-image img,
.fertilizer-icon img,
.tool-icon img,
.composition-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.price-disclaimer {
    text-align: center;
    color: var(--secondary-gray);
    font-style: italic;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.accessory-specs {
    list-style: none;
    margin: 1.5rem 0;
}

.accessory-specs li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.accessory-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 1rem 0;
}

/* Spray Section */
.spray-section {
    background: var(--light-bg);
}

.spray-products {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spray-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px var(--shadow);
}

.spray-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.spray-icon {
    font-size: 2.5rem;
}

.price-tag {
    color: var(--accent-beige);
    font-weight: bold;
    font-size: 1.2rem;
}

.spray-features {
    margin-top: 1rem;
    color: var(--secondary-gray);
    font-size: 0.9rem;
}

.spray-benefits {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.benefit-icon {
    font-size: 2rem;
}

/* Fertilizers */
.fertilizer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fertilizer-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
}

.fertilizer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.fertilizer-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.fertilizer-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.fertilizer-info {
    margin: 1.5rem 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.info-label {
    font-weight: 600;
}

.fertilizer-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 1rem 0;
}

/* Tools */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
}

.tool-card:hover {
    transform: scale(1.05);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-price {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-beige);
    margin-top: 1rem;
}

/* Sustainability */
.sustainability {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gray));
    color: white;
}

.sustainability-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sustainability-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sustain-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.sustain-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* Consultation Services */
.consultation-services {
    background: white;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.consultation-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    transition: transform 0.3s;
}

.consultation-card:hover {
    transform: translateY(-10px);
}

.consultation-card.featured {
    border: 3px solid var(--primary-blue);
}

.consultation-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.consultation-features {
    list-style: none;
    margin: 1.5rem 0;
}

.consultation-features li {
    padding: 0.5rem 0;
}

.consultation-price {
    margin-top: 1.5rem;
    text-align: center;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-gray);
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
}

/* Contact Form */
.contact-section {
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-intro {
    color: var(--secondary-gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-info-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--light-bg);
}

/* Map Section */
.map-section {
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 2rem;
}

.map-directions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.direction-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
}

.direction-icon {
    font-size: 2rem;
}

/* FAQ */
.faq {
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Success Page */
.success-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.success-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.5s ease-out;
}

.checkmark {
    font-size: 4rem;
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    color: var(--secondary-gray);
    margin-bottom: 3rem;
}

.success-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin: 3rem 0;
    text-align: left;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.contact-reminder {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
}

.contact-reminder a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

/* Inspiration */
.inspiration {
    background: var(--light-bg);
}

.section-intro {
    text-align: center;
    color: var(--secondary-gray);
    margin-bottom: 2rem;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.inspiration-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.inspiration-card:hover {
    transform: translateY(-10px);
}

.inspiration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.inspiration-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Testimonials */
.testimonials-mini {
    background: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--secondary-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gray));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-content,
    .content-split,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

/* Legal Pages Styles */
.legal-content {
    background: white;
    padding: 60px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
}

.last-updated {
    color: var(--secondary-gray);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.legal-section {
    margin: 2.5rem 0;
}

.legal-section h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-beige);
}

.legal-section h3 {
    color: var(--dark-text);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-section ul li {
    margin: 0.5rem 0;
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--accent-beige);
}

.contact-info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-blue);
}

.contact-info-box p {
    margin: 0.5rem 0;
}

.legal-back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
    text-align: center;
}

/* Cookie Policy Specific */
.cookie-type-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-blue);
}

.cookie-type-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.third-party-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.third-party-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.third-party-table th,
.third-party-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-bg);
}

.third-party-table th {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.third-party-table tr:hover {
    background: var(--light-bg);
}

.warning-box,
.info-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
}

.info-box {
    background: #d1ecf1;
    border-left-color: var(--primary-blue);
}

/* Return Policy Specific */
.policy-category {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 3px solid var(--primary-blue);
}

.policy-category > h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.checklist {
    list-style: none;
    margin-left: 0 !important;
}

.checklist li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.cost-table,
.cancellation-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cost-table table,
.cancellation-table table {
    width: 100%;
    border-collapse: collapse;
}

.cost-table th,
.cost-table td,
.cancellation-table th,
.cancellation-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--light-bg);
}

.cost-table th,
.cancellation-table th {
    background: var(--primary-blue);
    color: white;
}

.cost-table tbody tr:nth-child(even),
.cancellation-table tbody tr:nth-child(even) {
    background: var(--light-bg);
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.step-content ul {
    margin-left: 1.5rem;
}

.exceptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.exception-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow);
    border-top: 3px solid var(--primary-blue);
}

.exception-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.exception-card h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.refund-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.refund-tier {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.refund-tier.green {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.refund-tier.orange {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.refund-tier.red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.refund-percentage {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.refund-tier h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.cancellation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.method-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.method-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.method-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.timeline {
    position: relative;
    padding-left: 3rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .legal-document {
        padding: 2rem 1.5rem;
    }
    
    .exceptions-grid,
    .refund-structure,
    .cancellation-methods {
        grid-template-columns: 1fr;
    }
    
    .third-party-table,
    .cost-table,
    .cancellation-table {
        font-size: 0.9rem;
    }
    
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline-marker {
        left: -2rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .moss-showcase,
    .cacti-collection {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        padding: 1.5rem 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .refund-percentage {
        font-size: 2.5rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    border-top: 3px solid var(--primary-blue);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-banner-content {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary-blue);
    color: white;
}

.cookie-btn-accept:hover {
    background: #5899c9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(104, 170, 218, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--dark-text);
    border: 2px solid var(--secondary-gray);
}

.cookie-btn-decline:hover {
    background: var(--light-bg);
    border-color: var(--primary-blue);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cookie-btn-settings:hover {
    background: var(--primary-blue);
    color: white;
}

@media (max-width: 968px) {
    .cookie-banner .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-content {
        min-width: 100%;
    }
    
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 1rem 10px;
    }
    
    .cookie-banner-text {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Mobile Phones - 320px and smaller */
@media (max-width: 320px) {
    * {
        max-width: 100%;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 10px;
    }
    
    html {
        font-size: 14px;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .service-card,
    .product-card,
    .composition-card,
    .accessory-card,
    .fertilizer-card,
    .tool-card,
    .terrarium-card {
        padding: 1.5rem;
    }
    
    .service-icon,
    .product-icon,
    .composition-icon,
    .fertilizer-icon,
    .tool-icon {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-small {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.2rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .legal-document {
        padding: 1.5rem 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .product-price,
    .composition-price,
    .accessory-price,
    .fertilizer-price {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .tool-price {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .services-grid,
    .product-grid,
    .composition-showcase,
    .accessory-grid,
    .fertilizer-grid,
    .tools-grid,
    .terrarium-grid,
    .airplant-grid,
    .ideas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-disclaimer {
        font-size: 0.85rem;
        padding: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
    
    .checkmark-circle {
        width: 100px;
        height: 100px;
    }
    
    .checkmark {
        font-size: 3rem;
    }
    
    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }
    
    .burger span {
        width: 22px;
        height: 2px;
    }
    
    .polygon-background::before,
    .polygon-background::after {
        width: 400px;
        height: 400px;
    }
    
    .contact-wrapper {
        gap: 2rem;
    }
    
    .form-intro {
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .third-party-table,
    .cost-table,
    .cancellation-table {
        font-size: 0.75rem;
    }
    
    .third-party-table th,
    .third-party-table td,
    .cost-table th,
    .cost-table td,
    .cancellation-table th,
    .cancellation-table td {
        padding: 0.5rem;
        word-break: break-word;
    }
    
    .legal-section ul {
        margin-left: 1.5rem;
        padding-right: 0.5rem;
    }
    
    .legal-section a {
        word-break: break-all;
    }
    
    .contact-info-box {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .cookie-type-card {
        padding: 1.5rem 1rem;
    }
    
    .warning-box,
    .info-box {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .contact-reminder {
        font-size: 0.9rem;
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .inspiration-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .direction-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .direction-icon {
        font-size: 1.5rem;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .refund-tier {
        padding: 1.5rem;
    }
    
    .refund-percentage {
        font-size: 2rem;
    }
    
    .exception-card {
        padding: 1.2rem;
    }
    
    .exception-card .icon {
        font-size: 2rem;
    }
    
    .cancellation-methods {
        grid-template-columns: 1fr;
    }
    
    .method-card {
        padding: 1.2rem;
    }
    
    .method-icon {
        font-size: 2rem;
    }
    
    .important-notice {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .process-steps {
        padding: 1rem 0;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.5rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .product-image,
    .accessory-image img,
    .fertilizer-icon img,
    .composition-icon img,
    .terrarium-image img,
    .product-icon img {
        height: 180px;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sustain-item {
        padding: 1.5rem;
    }
    
    .sustain-icon {
        font-size: 2.5rem;
    }
    
    .consultation-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-card {
        padding: 1.5rem;
    }
    
    .consultation-icon {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .map-directions {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .success-actions .btn {
        width: 100%;
    }
    
    .steps-timeline {
        gap: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .success-info {
        padding: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hours-row {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .hours-row span:first-child {
        font-weight: 600;
    }
    
    .page-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .spray-header {
        flex-wrap: wrap;
    }
    
    .spray-features {
        font-size: 0.8rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .moss-showcase,
    .cacti-collection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .moss-type,
    .cacti-item {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    p, span, li, td, th {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .nav-menu {
        padding: 1.5rem 0;
    }
    
    .nav-menu li {
        padding: 0.5rem 0;
    }
    
    .nav-menu a {
        padding: 0.5rem;
        display: block;
    }
    
    table {
        font-size: 0.75rem;
    }
    
    iframe {
        max-width: 100%;
    }
    
    .map-container {
        overflow: hidden;
    }
    
    .map-container iframe {
        width: 100% !important;
        max-width: 100%;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        max-width: 100%;
        box-sizing: border-box;
    }
}