/* ===== 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;
}

/* SVG icons inherit color properly */
svg {
    flex-shrink: 0;
}

/* ===== 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.25rem;
}

.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__button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
}

.nav__button::after {
    display: none;
}

.nav__button:hover {
    transform: translateY(-2px);
}

.nav__toggle,
.nav__close {
    display: none;
}

/* ===== NAVIGATION DROPDOWN ===== */
.nav__item--dropdown {
    position: relative;
}

.nav__link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding-bottom: 0;
}

.nav__dropdown-icon {
    transition: transform 0.3s ease;
}

.nav__item--dropdown:hover .nav__dropdown-icon {
    transform: rotate(180deg);
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 220px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 200;
    border: 1px solid var(--border-color);
}

.nav__dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
}

.nav__dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav__dropdown-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.nav__dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 0.5rem 0;
}

.nav__dropdown-link--all {
    color: var(--primary-color);
    font-weight: 600;
}

.nav__dropdown-link--all:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* ===== 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) !important;
    stroke-width: 3;
}

.service__buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service__learn-more {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service__learn-more:hover {
    color: var(--primary-color);
}

.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);
}

/* ===== FORM SUCCESS MESSAGE ===== */
.form-success {
    display: none;
    padding: 3rem 0;
}

.form-success.show {
    display: block;
}

.form-success__content {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.form-success__icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-success__title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.form-success__text {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== 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) !important;
}

.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) !important;
}

.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);
}

/* ===== PAGE HERO (Interior Pages) ===== */
.page-hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    position: relative;
}

.page-hero__container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--small-size);
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__link {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}

.breadcrumb__link:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb__item--current {
    color: var(--white);
    font-weight: 600;
}

.page-hero__title {
    font-size: var(--h1-size);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

/* ===== SERVICES PAGE ===== */
.services-page {
    background-color: var(--bg-light);
}

.services-page__grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background-color: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:nth-child(even) {
    direction: rtl;
}

.service-card:nth-child(even) > * {
    direction: ltr;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.15);
}

.service-card__image-wrapper {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card__img {
    transform: scale(1.05);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.service-card__badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #ff6f00);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    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-card__badge--seasonal {
    background: linear-gradient(135deg, var(--secondary-color), #558b2f);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
}

.service-card__badge--winter {
    background: linear-gradient(135deg, #2196f3, #1565c0);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.service-card__content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card__title {
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card__description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-card__features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dark);
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
}

.service-card__features li svg {
    flex-shrink: 0;
    stroke: var(--secondary-color);
    stroke-width: 3;
    margin-top: 0.15rem;
}

.service-card__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-card__actions .button {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

/* ===== SERVICE AREAS SECTION ===== */
.service-areas {
    background-color: var(--white);
}

.service-areas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-area {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-area:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-area__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.service-area__icon svg {
    stroke: currentColor;
}

.service-area__name {
    font-size: var(--h4-size);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-area__description {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-areas__note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.25rem 2rem;
    background: rgba(45, 80, 22, 0.08);
    border-radius: var(--border-radius);
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

.service-areas__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-areas__link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::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.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section__container {
    position: relative;
    z-index: 1;
}

.cta-section__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__title {
    font-size: var(--h2-size);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-section__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .button--primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .button--primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.cta-section .button--secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .button--secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
    background-color: var(--bg-light);
}

.service-detail__content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.service-detail__main {
    background-color: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-detail__image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-detail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail__badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #ff6f00);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.service-detail__text {
    padding: 2.5rem;
}

.service-detail__heading {
    font-size: var(--h3-size);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.service-detail__description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-detail__subheading {
    font-size: var(--h4-size);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    margin-top: 2rem;
}

.service-detail__list {
    list-style: none;
}

.service-detail__list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail__list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail__list li svg {
    flex-shrink: 0;
    stroke: var(--secondary-color) !important;
    stroke-width: 3;
    margin-top: 0.25rem;
}

.service-detail__list li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-detail__list li strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.service-detail__list li span {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Sidebar */
.service-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.service-sidebar__card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-sidebar__title {
    font-size: var(--h4-size);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.service-sidebar__text {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-sidebar__card .button {
    margin-bottom: 0.75rem;
}

.service-sidebar__card .button:last-child {
    margin-bottom: 0;
}

.service-sidebar__card--info {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.service-sidebar__subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    margin-top: 1.25rem;
}

.service-sidebar__subtitle:first-child {
    margin-top: 0;
}

.service-sidebar__list {
    list-style: none;
}

.service-sidebar__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.service-sidebar__list li svg {
    stroke: var(--secondary-color) !important;
    flex-shrink: 0;
}

.service-sidebar__card--testimonial {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.service-sidebar__quote {
    color: rgba(255, 255, 255, 0.3);
    fill: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.service-sidebar__testimonial {
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-sidebar__author {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose {
    background-color: var(--white);
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-choose__item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.why-choose__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-choose__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.why-choose__icon svg {
    stroke: currentColor;
}

.why-choose__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.why-choose__text {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Other Services Section */
.other-services {
    background-color: var(--bg-light);
}

.other-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.other-service__card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background-color: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
}

.other-service__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 80, 22, 0.15);
}

.other-service__image {
    height: 100%;
    min-height: 180px;
    overflow: hidden;
}

.other-service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.other-service__card:hover .other-service__image img {
    transform: scale(1.08);
}

.other-service__content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.other-service__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.other-service__text {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.other-service__link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.other-service__card:hover .other-service__link {
    color: var(--secondary-color);
}

/* ===== 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;
    }
    
    /* Services Page Responsive - 1024px */
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .service-card:nth-child(even) {
        direction: ltr;
    }
    
    .service-card__image-wrapper {
        min-height: 280px;
    }
    
    .service-areas__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Service Detail Page Responsive - 1024px */
    .service-detail__content {
        grid-template-columns: 1fr;
    }
    
    .service-detail__sidebar {
        position: static;
    }
    
    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-services__grid {
        grid-template-columns: 1fr;
    }
    
    .other-service__card {
        grid-template-columns: 180px 1fr;
    }
}

/* 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);
    }
    
    /* Mobile Dropdown Styles */
    .nav__item--dropdown {
        width: 100%;
    }
    
    .nav__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0 1rem;
        min-width: auto;
        background-color: transparent;
    }
    
    .nav__dropdown::before {
        display: none;
    }
    
    .nav__dropdown-link {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .nav__dropdown-link:hover {
        padding-left: 0.5rem;
        background-color: transparent;
    }
    
    .nav__dropdown-divider {
        display: none;
    }
    
    .nav__dropdown-link--all {
        margin-top: 0.25rem;
    }
    
    .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;
    }
    
    /* Service Detail Page Responsive - 768px */
    .service-detail__image-wrapper {
        height: 280px;
    }
    
    .service-detail__text {
        padding: 1.5rem;
    }
    
    .why-choose__grid {
        grid-template-columns: 1fr;
    }
    
    .other-service__card {
        grid-template-columns: 1fr;
    }
    
    .other-service__image {
        min-height: 200px;
    }
}

/* 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 ===== */
/* 
 * Animation System: 
 * 1. Add animation class (fade-in, fade-up, fade-left, fade-right, scale-in) to HTML elements
 * 2. JavaScript adds 'active' class when element enters viewport
 * 3. Animation triggers on the .active class
 */

/* Keyframe definitions */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Base animation classes - hidden state */
.fade-in,
.fade-up,
.fade-left,
.fade-right,
.scale-in {
    opacity: 0;
}

/* Active state - triggers animation */
.fade-in.active {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-up.active {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-left.active {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.fade-right.active {
    animation: fadeInRight 0.6s ease-out forwards;
}

.scale-in.active {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-up,
    .fade-left,
    .fade-right,
    .scale-in {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* ===== ACCESSIBILITY ===== */
: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;
    }
}
