/* ===================================
   GreenGarden Eco/Green Style CSS
   ================================ === */

:root {
    --primary-color: #436B3D;
    --secondary-color: #90B48F;
    --accent-color: #E4C090;
    --dark-green: #2d4a28;
    --light-bg: #f8f9f5;
    --white: #ffffff;
    --text-dark: #2c3e2f;
    --text-muted: #6c757d;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--secondary-color) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 5px;
    transition: var(--transition);
}

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

.navbar-toggler {
    border: 2px solid var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23436B3D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    min-height: 100vh;
 
    background: url('../image/picture1.jpg') center/cover no-repeat;
 
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-section p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(67, 107, 61, 0.3);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 107, 61, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-secondary {
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
}

.btn-outline-secondary:hover {
    background-color: var(--text-muted);
    color: var(--white);
}

/* ===================================
   CARDS & BOXES
   =================================== */

.service-card,
.benefit-card,
.method-card,
.feature-card,
.trust-badge,
.practice-item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover,
.benefit-card:hover,
.method-card:hover,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon,
.benefit-icon,
.method-icon,
.feature-icon,
.trust-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-box {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ===================================
   FORMS
   =================================== */

.form-control,
.form-select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: var(--transition);
    background-color: var(--light-bg);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(67, 107, 61, 0.25);
    background-color: var(--white);
}

/* ===================================
   ACCORDION
   =================================== */

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--white);
}

/* ===================================
   IMAGES
   =================================== */

img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

img[src*="picture"] {
    background-color: #cccccc;
    min-height: 200px;
    display: block;
}

/* ===================================
   CONTACT INFO
   =================================== */

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===================================
   FOOTER
   =================================== */

footer {
    background-color: var(--primary-color);
    color: var(--white);
}

footer h5,
footer h6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
}

footer a:hover {
    color: var(--white);
    padding-left: 5px;
}

footer ul {
    list-style: none;
    padding: 0;
}

/* ===================================
   COOKIE BANNER
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(67, 107, 61, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideUp 0.5s ease;
}

.cookie-banner a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-banner.hidden {
    display: none;
}

/* ===================================
   LISTS
   =================================== */

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding: 0.5rem 0;
    padding-left: 0;
}

/* ===================================
   BACKGROUNDS
   =================================== */

.bg-light {
    background-color: var(--light-bg) !important;
}

section {
    position: relative;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ===================================
   MOBILE RESPONSIVE (320px+)
   =================================== */

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        margin: 0.25rem 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .service-icon,
    .benefit-icon,
    .method-icon,
    .feature-icon,
    .trust-icon {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    iframe {
        height: 300px !important;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .service-card,
    .benefit-card,
    .method-card,
    .feature-card {
        padding: 1.5rem !important;
    }
    
    .trust-badge {
        padding: 1rem !important;
    }
    
    .cookie-banner {
        padding: 1rem 0;
    }
    
    .cookie-banner .btn {
        margin-top: 0.5rem;
        width: 100%;
    }
}

/* Extra small devices (320px) */
@media (max-width: 320px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .display-3 {
        font-size: 1.75rem;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
    
    .display-5 {
        font-size: 1.35rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* ===================================
   IFRAME STYLING
   =================================== */

iframe {
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* ===================================
   LINKS
   =================================== */

a {
    transition: var(--transition);
}

/* ===================================
   SPACING
   =================================== */

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@media (max-width: 767px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}
