/* ===== FONT FACE ===== */
@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #2d5016;
    --primary-dark: #1e3810;
    --primary-light: #3d6b20;
    --secondary-color: #7cb342;
    --accent-color: #ff9800;
    
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #757575;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --border-color: #dee2e6;
    
    /* Typography */
    --font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.75rem;
    --h4-size: 1.25rem;
    --body-size: 1rem;
    --small-size: 0.875rem;
    
    /* Spacing */
    --header-height: 4.5rem;
    --section-padding: 5rem 0;
    --container-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 0.75rem;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--body-size);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== REUSABLE CLASSES ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: var(--h2-size);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: var(--body-size);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.button--primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.button--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button--secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.button--secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.button--full {
    width: 100%;
    justify-content: center;
}

.button__icon {
    width: 20px;
    height: 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    transition: var(--transition);
}

.header.scroll-header {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav__logo-img {
    height: 50px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q25 0, 50 5 T100 5' stroke='%232d5016' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
}

.nav__link.active {
    color: var(--primary-color);
}

.nav__toggle,
.nav__close {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8) 0%, rgba(61, 107, 32, 0.7) 100%);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content {
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.hero__rating {
    color: var(--accent-color);
    font-size: 1rem;
}

.hero__rating-text {
    color: var(--text-medium);
    font-size: var(--small-size);
    font-weight: 600;
}

.hero__title {
    font-size: var(--h1-size);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__description {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero__wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--white);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service__card {
    background-color: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
}

.service__card:hover::before {
    opacity: 1;
}

.service__image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service__card:hover .service__img {
    transform: scale(1.08);
}

.service__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.service__card:hover .service__overlay {
    opacity: 0.3;
}

.service__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #ff6f00);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
    z-index: 10;
}

.service__badge--seasonal {
    background: linear-gradient(135deg, var(--secondary-color), #558b2f);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
}

.service__badge--winter {
    background: linear-gradient(135deg, #2196f3, #1565c0);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.service__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.service__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service__description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service__features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}

.service__features li svg {
    flex-shrink: 0;
    stroke: var(--secondary-color);
    stroke-width: 3;
}

.service__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service__cta:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--bg-light);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__title {
    font-size: var(--h2-size);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about__description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about__quote {
    background-color: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.about__quote-author {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.about__img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.section__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.review__card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.review__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.12);
}

.review__card--featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    grid-row: span 1;
}

.review__card--featured .review__quote-icon {
    color: rgba(255, 255, 255, 0.2);
}

.review__card--featured .review__rating span {
    color: var(--accent-color);
}

.review__card--featured .review__rating-text {
    color: rgba(255, 255, 255, 0.9);
}

.review__card--featured .review__text {
    color: rgba(255, 255, 255, 0.95);
}

.review__card--featured .review__author {
    color: var(--white);
}

.review__card--featured .review__source {
    color: rgba(255, 255, 255, 0.7);
}

.review__card--featured .review__author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.review__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.review__quote-icon {
    color: var(--secondary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.review__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review__rating span:first-child {
    color: var(--accent-color);
    font-size: 1rem;
    letter-spacing: 2px;
}

.review__rating-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

.review__text {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.review__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review__card--featured .review__footer {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.review__author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.review__author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review__author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.review__source {
    font-size: 0.8rem;
    color: var(--text-light);
}

.reviews__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--primary-color);
}

.reviews__cta-content {
    text-align: left;
}

.reviews__cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.reviews__cta-text {
    color: var(--text-medium);
    font-size: 1rem;
}

.reviews__cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviews__cta .button--secondary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    white-space: nowrap;
}

.reviews__cta .button--secondary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.button--outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button--outline:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
    .reviews__grid {
        grid-template-columns: 1fr;
    }
    
    .reviews__cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .reviews__cta-content {
        text-align: center;
    }
    
    .reviews__cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .reviews__cta-buttons .button {
        width: 100%;
        justify-content: center;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--bg-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.1);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--white);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact__info-title {
    font-size: var(--h3-size);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact__info-text {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact__label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact__link {
    color: var(--primary-color);
    font-weight: 600;
}

.contact__link:hover {
    text-decoration: underline;
}

.contact__text {
    color: var(--text-medium);
}

/* ===== CONTACT FORM ===== */
.contact__form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.required {
    color: #dc3545;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: var(--body-size);
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 179, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 179, 66, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.footer__wave {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-bottom: 3rem;
}

.footer__wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--white);
}

.footer__container {
    position: relative;
    z-index: 1;
    padding-bottom: 1.5rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer__tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 350px;
}

.footer__rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: fit-content;
}

.footer__stars {
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: 3px;
}

.footer__rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list--locations li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__list--locations svg {
    flex-shrink: 0;
    stroke: var(--secondary-color);
}

.footer__link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer__link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer__link:hover::before {
    width: 100%;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.footer__contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateX(4px);
}

.footer__contact-item svg {
    flex-shrink: 0;
    stroke: var(--secondary-color);
}

.footer__hours {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer__hours svg {
    flex-shrink: 0;
    stroke: var(--secondary-color);
    margin-top: 0.25rem;
}

.footer__bottom {
    padding-top: 2rem;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--white);
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.footer__social-link svg {
    transition: all 0.3s ease;
}

.footer__social-link:hover svg {
    fill: var(--primary-color);
}

/* Footer Responsive */
@media screen and (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer__brand {
        align-items: flex-start;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer__wave svg {
        height: 50px;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__logo {
        width: 180px;
    }
}

@media screen and (max-width: 480px) {
    .footer__wave svg {
        height: 35px;
    }
    
    .footer__logo {
        width: 160px;
    }
    
    .footer__rating {
        width: 100%;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Devices */
@media screen and (max-width: 1024px) {
    :root {
        --h1-size: 2.75rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero__content {
        max-width: 600px;
    }
    
    .about__content,
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about__image {
        order: -1;
    }
}

/* Medium Devices */
@media screen and (max-width: 768px) {
    :root {
        --h1-size: 2.25rem;
        --h2-size: 1.75rem;
        --h3-size: 1.25rem;
        --section-padding: 3.5rem 0;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        padding: 4rem 2rem;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    
    .nav__toggle span {
        width: 28px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 2px;
        transition: var(--transition);
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 2rem;
        cursor: pointer;
        color: var(--primary-color);
    }
    
    .hero {
        padding-bottom: 4rem;
        min-height: 70vh;
    }
    
    .hero__content {
        max-width: 100%;
    }
    
    .hero__wave svg {
        height: 50px;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .button {
        width: 100%;
        justify-content: center;
    }
    
    .services__grid,
    .reviews__grid,
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .section__header {
        margin-bottom: 2rem;
    }
}

/* Small Devices */
@media screen and (max-width: 480px) {
    :root {
        --h1-size: 1.875rem;
        --h2-size: 1.5rem;
        --header-height: 4rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 3rem;
        min-height: 70vh;
    }
    
    .hero__wave svg {
        height: 35px;
    }
    
    .nav__logo-img {
        height: 40px;
    }
    
    .service__card,
    .contact__form {
        padding: 1.5rem;
    }
    
    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service__card,
.review__card,
.gallery__item {
    animation: fadeIn 0.6s ease backwards;
}

.service__card:nth-child(1) { animation-delay: 0.1s; }
.service__card:nth-child(2) { animation-delay: 0.2s; }
.service__card:nth-child(3) { animation-delay: 0.3s; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .nav__toggle,
    .scroll-top,
    .hero__buttons {
        display: none;
    }
    
    body {
        color: #000;
    }
    
    a {
        text-decoration: underline;
    }
}
