/* GreenWave Studio - Comprehensive Stylesheet */

:root {
    /* Colors */
    --color-primary: #9BBF9E;
    --color-secondary: #F9F7F2;
    --color-accent: #D6AFA3;
    --color-dark: #446450;
    --color-text: #333333;
    --color-text-light: #777777;
    --color-background: #ffffff;
    --color-border: #e0e0e0;

    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Nunito Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Borders & Shadows */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}


/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-dark);
    transition: color var(--transition-fast);
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-title.center {
    text-align: center;
}

p {
    margin-bottom: var(--space-md);
}

.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: white;
}

.btn-secondary:hover {
    background-color: #c89d91;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 1px solid var(--color-dark);
    background-color: transparent;
    color: var(--color-dark);
}

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

.text-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.text-link i {
    margin-left: var(--space-xs);
    transition: transform var(--transition-fast);
}

.text-link:hover i {
    transform: translateX(4px);
}

/* Header */
.site-header {
    padding: var(--space-md) 0;
    position: absolute;
    width: 100%;
    z-index: 100;
    transition: background-color var(--transition-fast);
}

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

.brand-name {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    margin-bottom: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    position: relative;
    width: 30px;
    height: 25px;
    padding: 0;
    z-index: 200;
}

.menu-icon, .menu-icon::before, .menu-icon::after {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: white;
    transition: var(--transition-fast);
}

.menu-icon {
    top: 12px;
}

.menu-icon::before, .menu-icon::after {
    content: '';
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

.menu-open .menu-icon {
    background-color: transparent;
}

.menu-open .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-open .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-list {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    color: white;
    font-size: 1rem;
    text-transform: lowercase;
    position: relative;
    padding-bottom: var(--space-xs);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Menu Overlay for Mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
}

body.menu-open .menu-overlay {
    display: block;
}

/* Scrolled Header */
.scrolled {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    animation: slideDown 0.5s forwards;
}

.scrolled .brand-name,
.scrolled .nav-link {
    color: var(--color-text);
    text-shadow: none;
}

.scrolled .menu-icon,
.scrolled .menu-icon::before,
.scrolled .menu-icon::after {
    background-color: var(--color-text);
}

.scrolled.menu-open .menu-icon {
    background-color: transparent;
}

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

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/6.webp');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

/* Intro Section */
.intro {
    padding: var(--space-xl) 0;
}

.two-column {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.column {
    flex: 1;
}

.content-column {
    padding-right: var(--space-lg);
}

.rounded-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* Features Section */
.features {
    padding: var(--space-xl) 0;
    background-color: var(--color-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

/* Testimonials */
.testimonials {
    padding: var(--space-xl) 0;
}

.testimonial {
    background-color: var(--color-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-size: 1.1rem;
}

.testimonial-author h4 {
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

/* Partners Section */
.partners {
    padding: var(--space-xl) 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.partner-logo {
    text-align: center;
    padding: var(--space-md);
    transition: transform var(--transition-fast);
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 200px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto var(--space-sm);
}

.partner-logo h4 {
    margin-bottom: var(--space-xs);
    color: var(--color-dark);
}

/* Certifications */
.certifications {
    padding: var(--space-xl) 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.certification-item {
    text-align: center;
    padding: var(--space-md);
}

.certification-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

/* Timeline */
.timeline-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-secondary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: var(--space-xl) auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--color-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 var(--space-lg) var(--space-xl);
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-content {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    background-color: var(--color-dark);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -8px;
}

/* CTA Section */
.cta {
    padding: var(--space-xl) 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/20.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: white;
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
}

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

.footer-address a:hover {
    color: var(--color-accent);
}

.footer-nav h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Privacy Popup */
.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: var(--space-lg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.privacy-popup.active {
    transform: translateY(0);
}

.popup-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.popup-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.popup-close:hover {
    color: var(--color-text);
}

/* Mindful Beauty Section */
.mindful-beauty {
    padding: var(--space-xl) 0;
}

.practice-spotlight {
    background-color: var(--color-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
}

.ritual-steps {
    padding-left: var(--space-lg);
    margin: var(--space-md) 0;
}

.ritual-steps li {
    margin-bottom: var(--space-sm);
    list-style-type: decimal;
}

/* Psychology Beauty Section */
.psychology-beauty {
    padding: var(--space-xl) 0;
}

.aromatherapy-spaces {
    padding: var(--space-xl) 0;
}

/* Wellness Programs */
.wellness-programs {
    padding: var(--space-xl) 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.program-card {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.program-title {
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

/* Contact Form */
.contact-section {
    padding: var(--space-xl) 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-info {
    background-color: var(--color-primary);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.contact-info h3 {
    margin-bottom: var(--space-lg);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.contact-icon {
    font-size: 1.25rem;
    margin-right: var(--space-md);
    color: rgba(255, 255, 255, 0.8);
}

.contact-text a {
    color: white;
}

.contact-form {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.checkbox-group input {
    margin-top: 0.3rem;
}

/* Map */
.map-section {
    padding-bottom: var(--space-xl);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 400px;
}

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

/* FAQ */
.faq {
    padding: var(--space-xl) 0;
    background-color: var(--color-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.faq-item {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Enhanced Responsiveness */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .two-column {
        flex-direction: column-reverse;
        gap: var(--space-md);
    }

    .content-column {
        padding-right: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .programs-grid,
    .partners-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: var(--space-sm) 0;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 250px;
        background-color: white;
        padding: 80px var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition-medium);
        box-shadow: var(--shadow-lg);
        z-index: 100;
        height: 100vh;
        overflow-y: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-open .main-navigation {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
    }

    .nav-link {
        color: var(--color-text);
        font-size: 1.2rem;
        padding: var(--space-sm) 0;
        display: block;
        width: 100%;
    }

    .timeline::after {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
    }

    .timeline-content::after {
        left: -8px !important;
        right: auto !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    section,
    .cta {
        padding: var(--space-lg) 0;
    }

    .feature-card,
    .program-card,
    .contact-form,
    .contact-info {
        padding: var(--space-md);
    }

    .rounded-image {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .hero {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .features-grid,
    .programs-grid,
    .partners-grid,
    .certifications-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }

    .popup-actions {
        flex-direction: column;
    }

    .popup-actions button {
        margin-bottom: var(--space-sm);
    }

    .form-group {
        margin-bottom: var(--space-md);
    }

    .footer-content {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
        padding-right: 0;
        margin-bottom: var(--space-lg);
    }

    .timeline-content {
        padding: var(--space-md);
    }

    .timeline-content::after {
        left: -20px !important;
        top: 20px !important;
    }

    .privacy-popup {
        padding: var(--space-md) var(--space-sm);
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 var(--space-xs);
    }

    .hero {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .main-navigation {
        height: -webkit-fill-available;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .cta,
    .privacy-popup {
        display: none;
    }

    body {
        font-size: 12pt;
        color: black;
    }

    .container {
        max-width: 100%;
    }

    .timeline-content,
    .feature-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}


/* GreenWave Studio - Comprehensive Stylesheet */

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-dark);
    transition: color var(--transition-fast);
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-title.center {
    text-align: center;
}

p {
    margin-bottom: var(--space-md);
}

.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: white;
}

.btn-secondary:hover {
    background-color: #c89d91;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 1px solid var(--color-dark);
    background-color: transparent;
    color: var(--color-dark);
}

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

.text-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.text-link i {
    margin-left: var(--space-xs);
    transition: transform var(--transition-fast);
}

.text-link:hover i {
    transform: translateX(4px);
}

/* Header */
.site-header {
    padding: var(--space-md) 0;
    position: absolute;
    width: 100%;
    z-index: 100;
    transition: background-color var(--transition-fast);
}

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

.brand-name {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    margin-bottom: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    position: relative;
    width: 30px;
    height: 25px;
    padding: 0;
    z-index: 200;
}

.menu-icon, .menu-icon::before, .menu-icon::after {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: white;
    transition: var(--transition-fast);
}

.menu-icon {
    top: 12px;
}

.menu-icon::before, .menu-icon::after {
    content: '';
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

.menu-open .menu-icon {
    background-color: transparent;
}

.menu-open .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-open .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-list {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    color: white;
    font-size: 1rem;
    text-transform: lowercase;
    position: relative;
    padding-bottom: var(--space-xs);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Menu Overlay for Mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
}

body.menu-open .menu-overlay {
    display: block;
}

/* Scrolled Header */
.scrolled {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    animation: slideDown 0.5s forwards;
}

.scrolled .brand-name,
.scrolled .nav-link {
    color: var(--color-text);
    text-shadow: none;
}

.scrolled .menu-icon,
.scrolled .menu-icon::before,
.scrolled .menu-icon::after {
    background-color: var(--color-text);
}

.scrolled.menu-open .menu-icon {
    background-color: transparent;
}

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

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/6.webp');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

/* Intro Section */
.intro {
    padding: var(--space-xl) 0;
}

.two-column {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.column {
    flex: 1;
}

.content-column {
    padding-right: var(--space-lg);
}

.rounded-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* Features Section */
.features, .eco-badges {
    padding: var(--space-xl) 0;
    background-color: var(--color-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.service-card {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.service-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--color-dark);
}

.eco-icon {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.service-price {
    font-weight: 600;
    color: var(--color-accent);
    margin-top: auto;
    padding-top: var(--space-md);
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: var(--space-xl) 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) auto;
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pricing-table th,
.pricing-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background-color: rgba(155, 191, 158, 0.1);
}

/* Testimonials */
.testimonials {
    padding: var(--space-xl) 0;
}

.testimonial {
    background-color: var(--color-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-size: 1.1rem;
}

.testimonial-author h4 {
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

/* CTA Section */
.cta {
    padding: var(--space-xl) 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/20.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: white;
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
}

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

.footer-address a:hover {
    color: var(--color-accent);
}

.footer-nav h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Privacy Popup */
.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: var(--space-lg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.privacy-popup.active {
    transform: translateY(0);
}

.popup-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.popup-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.popup-close:hover {
    color: var(--color-text);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Enhanced Responsiveness */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .services-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .two-column {
        flex-direction: column-reverse;
        gap: var(--space-md);
    }

    .content-column {
        padding-right: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image {
        height: 180px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 70vh;
    }

    .pricing-table th,
    .pricing-table td {
        padding: var(--space-sm) var(--space-md);
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: var(--space-sm) 0;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 250px;
        background-color: white;
        padding: 80px var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition-medium);
        box-shadow: var(--shadow-lg);
        z-index: 100;
        height: 100vh;
        overflow-y: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-open .main-navigation {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
    }

    .nav-link {
        color: var(--color-text);
        font-size: 1.2rem;
        padding: var(--space-sm) 0;
        display: block;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    section,
    .cta {
        padding: var(--space-lg) 0;
    }

    .feature-card,
    .service-content {
        padding: var(--space-md);
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin: var(--space-lg) 0;
    }

    .service-image {
        height: 200px;
    }

    .pricing-table {
        margin: var(--space-lg) auto;
    }

    .pricing-table th {
        font-size: 0.9rem;
    }

    .pricing-table td {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .hero {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }

    .popup-actions {
        flex-direction: column;
    }

    .popup-actions button {
        margin-bottom: var(--space-sm);
    }

    .footer-content {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .privacy-popup {
        padding: var(--space-md) var(--space-sm);
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-image {
        height: 180px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 var(--space-xs);
    }

    .hero {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .service-image {
        height: 160px;
    }
}

/* Specific Services Page Enhancements */

/* Better table scroll on mobile */
@media (max-width: 768px) {
    .pricing {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing table {
        min-width: 500px;
    }
}

/* Service card improvements */
.service-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.service-price {
    margin-top: auto;
}

/* Improve pricing table responsiveness */
.pricing table {
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.pricing table td:first-child {
    font-weight: 500;
}

/* Custom styling for the eco badges section */
.eco-badges .feature-card {
    text-align: center;
}

.eco-badges .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: rgba(155, 191, 158, 0.1);
    border-radius: 50%;
    margin: 0 auto var(--space-md);
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .main-navigation {
        height: -webkit-fill-available;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .cta,
    .privacy-popup {
        display: none;
    }

    body {
        font-size: 12pt;
        color: black;
    }

    .container {
        max-width: 100%;
    }

    .service-card,
    .feature-card,
    .pricing-table {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .service-image {
        height: auto;
    }

    .service-image img {
        max-height: 150px;
        width: auto;
        margin: 0 auto;
    }

    .pricing-table {
        border: 1px solid #ddd;
    }
}

/* Mobile Header Fixes */
@media (max-width: 576px) {
    .brand-name {
        font-size: 1.3rem; /* Smaller brand name on mobile */
        padding-left: 0.5rem;
    }

    .site-header {
        background-color: rgba(0, 0, 0, 0.5); /* Add semi-transparent background to header */
        position: fixed; /* Keep header visible while scrolling */
        top: 0;
        left: 0;
        right: 0;
        padding: 0.75rem 0;
    }

    /* Hero Section Mobile Fixes */
    .hero {
        padding-top: 6rem; /* Add space for fixed header */
        min-height: 100vh; /* Full viewport height */
        background-position: center 25%; /* Better position for hero image */
    }

    .hero-content {
        padding: 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    /* Fix for images */
    .service-image,
    .column img {
        height: auto !important; /* Override fixed heights */
        max-height: 250px;
        width: 100%;
    }

    /* Fix for section spacing */
    section {
        padding: 2.5rem 0;
    }

    /* Fix for timeline */
    .timeline::after {
        left: 1rem; /* Move timeline line to left */
    }

    .timeline-item {
        width: 100%;
        padding-left: 2.5rem;
        margin-bottom: 2rem;
    }

    .timeline-content::after {
        left: -1rem !important;
    }

    /* Fix for footer on mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        margin-bottom: 1.5rem;
    }
}

/* Extreme small screen fixes (iPhone SE, etc) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    /* Menu toggle position fix */
    .menu-toggle {
        position: absolute;
        right: 1rem;
    }
}

/* Fix for menu toggle contrast */
.menu-icon,
.menu-icon::before,
.menu-icon::after {
    background-color: white;
    width: 24px; /* Slightly smaller */
}

/* Make sure menu toggle is visible against any background */
.menu-toggle {
    z-index: 200;
    padding: 0.5rem;
}

/* Remove horizontal overflow */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Fix for iOS 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}