



:root {
    --emerald-deep: #0D3D2E;
    --emerald-rich: #145A4A;
    --emerald-vibrant: #1E8B6F;
    --lime-fresh: #7ED957;
    --lime-bright: #A4E65D;
    --gold-accent: #C9A227;
    --gold-light: #E8D48B;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-100: #F5F7F9;
    --gray-200: #E8ECF0;
    --gray-600: #6B7C8A;
    --gray-800: #2D3748;
    --text-dark: #1A2E35;
    --text-light: #F8FAFC;
    --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-soft: 0 4px 20px rgba(13, 61, 46, 0.08);
    --shadow-medium: 0 8px 32px rgba(13, 61, 46, 0.12);
    --shadow-strong: 0 16px 48px rgba(13, 61, 46, 0.16);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-title {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.01em;
}


.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald-rich) 50%, var(--emerald-vibrant) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(126, 217, 87, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(164, 230, 93, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 3rem 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge-icon {
    width: 18px;
    height: 18px;
    fill: var(--lime-fresh);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--lime-fresh) 0%, var(--lime-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}


.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    min-height: 52px;
}

.btn-primary-luxury {
    background: linear-gradient(135deg, var(--lime-fresh) 0%, var(--lime-bright) 100%);
    color: var(--emerald-deep);
    box-shadow: 0 4px 20px rgba(126, 217, 87, 0.35);
}

.btn-primary-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(126, 217, 87, 0.45);
}

.btn-secondary-luxury {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary-luxury:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--lime-fresh);
    transform: translateY(-3px);
}


.gold-accent-line {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    margin: 2rem auto;
}


.section-padding {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lime-fresh);
    margin-bottom: 1rem;
    padding: 0.375rem 1rem;
    background: rgba(126, 217, 87, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--emerald-deep);
    margin-bottom: 1.25rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}


.emerald-gradient-section {
    background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald-rich) 100%);
    color: var(--text-light);
}

.emerald-gradient-section .section-title {
    color: var(--text-light);
}

.emerald-gradient-section .section-description {
    color: rgba(255, 255, 255, 0.75);
}


.lime-gradient-section {
    background: linear-gradient(135deg, var(--lime-fresh) 0%, var(--lime-bright) 100%);
    color: var(--emerald-deep);
}

.lime-gradient-section .section-title {
    color: var(--emerald-deep);
}


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}


.service-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-200);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-vibrant), var(--lime-fresh));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--emerald-rich), var(--emerald-vibrant));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    width: 36px;
    height: 36px;
    stroke: var(--white);
    stroke-width: 2;
}

.service-card-title {
    font-size: 1.375rem;
    color: var(--emerald-deep);
    margin-bottom: 1rem;
}

.service-card-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.375rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-rich);
}

.service-price-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}


.team-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.team-info {
    padding: 1.5rem 2rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    color: var(--emerald-deep);
    margin-bottom: 0.375rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--lime-fresh);
    font-weight: 500;
}


.review-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-200);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lime-fresh);
}

.review-meta {
    flex: 1;
}

.review-author {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--emerald-deep);
}

.review-location {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: var(--gold-accent);
}

.review-text {
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.7;
}


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lime-fresh), var(--lime-bright));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    stroke: var(--emerald-deep);
    stroke-width: 2;
}

.feature-content h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--emerald-deep);
    margin-bottom: 0.375rem;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}


.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-200);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--lime-fresh);
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--emerald-rich), var(--emerald-vibrant));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    stroke-width: 2;
}

.contact-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--emerald-deep);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value:hover {
    color: var(--lime-fresh);
}


.luxury-form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.luxury-form-input:focus {
    outline: none;
    border-color: var(--lime-fresh);
    box-shadow: 0 0 0 4px rgba(126, 217, 87, 0.15);
}

.luxury-form-input::placeholder {
    color: var(--gray-600);
}

.luxury-form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--emerald-deep);
    margin-bottom: 0.5rem;
}


.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 61, 46, 0.08);
    transition: var(--transition-smooth);
}

.luxury-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.luxury-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--emerald-rich), var(--lime-fresh));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-deep);
}

.logo-accent {
    color: var(--lime-fresh);
}

.luxury-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.luxury-nav-link {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.luxury-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime-fresh);
    transition: width 0.3s ease;
}

.luxury-nav-link:hover,
.luxury-nav-link.active {
    color: var(--emerald-deep);
}

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

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: var(--emerald-deep);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}


.mobile-nav-container {
    display: none;
    position: fixed;
    height: 100vh;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--emerald-deep);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
}

.mobile-nav-container.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.luxury-footer {
    background: var(--emerald-deep);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lime-fresh);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--lime-fresh);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
    z-index: 1001;
    display: block;
}

.cookie-content h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--emerald-deep);
    margin-bottom: 0.75rem;
}

.cookie-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--emerald-rich), var(--emerald-vibrant));
    color: var(--white);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13, 61, 46, 0.3);
}

.cookie-decline {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
}

.cookie-decline:hover {
    border-color: var(--gray-600);
}


.process-step {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--emerald-rich), var(--emerald-vibrant));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    color: var(--emerald-deep);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--gray-600);
    max-width: 250px;
    margin: 0 auto;
}


.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 61, 46, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
}


.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--emerald-deep);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--emerald-rich);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}


.pricing-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(126, 217, 87, 0.15);
    color: var(--emerald-rich);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}


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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


.grass-blade {
    position: absolute;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to top, var(--emerald-rich), var(--lime-fresh));
    border-radius: 2px 2px 0 0;
    transform-origin: bottom center;
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}


@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .luxury-nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-luxury {
        width: 100%;
        max-width: 320px;
    }
    
    .section-padding {
        padding: 3rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .cookie-consent-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .luxury-nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .service-card,
    .glass-card {
        padding: 1.5rem;
    }
}


.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.hidden { display: none !important; }
.visible { display: block !important; }


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

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.card-grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}


.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald-rich) 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}


.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: var(--lime-fresh);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: var(--lime-fresh);
    font-size: 0.875rem;
}


.cta-section {
    background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald-rich) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}


.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    min-height: 400px;
}

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


.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lime-fresh), var(--lime-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--emerald-deep);
}