:root {
    --emerald-primary: #10B981;
    --emerald-dark: #047857;
    --emerald-light: #34D399;
    --gold-accent: #F59E0B;
    --gold-light: #FCD34D;
    --gold-dark: #D97706;
    --white-base: #FFFFFF;
    --off-white: #F1F5F9;
    --gray-50: #F0FDF4;
    --gray-100: #E5F7F0;
    --gray-200: #D1E8DD;
    --gray-600: #374151;
    --gray-800: #1F2937;
    --gray-900: #0F172A;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.1);
    --shadow-brutal: 4px 4px 0px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--off-white);
    overflow-x: hidden;
}

strong {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

a {
    color: var(--emerald-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--emerald-dark);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    color: var(--white-base);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-brutal);
    white-space: nowrap;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px var(--gold-accent);
    color: var(--white-base);
}

.btn-secondary-custom {
    background: var(--white-base);
    color: var(--emerald-dark);
    border: 2px solid var(--emerald-primary);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-secondary-custom:hover {
    background: var(--emerald-primary);
    color: var(--white-base);
    border-color: var(--emerald-primary);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
    color: var(--white-base);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-brutal);
    white-space: nowrap;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px var(--emerald-dark);
    color: var(--white-base);
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-dark) !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--gold-accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-base);
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-800) !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

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

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

.mobile-menu-toggle:hover {
    background: var(--emerald-dark);
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../visuals/hero-golf-course.webp') center center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(245, 158, 11, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white-base);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section-standard {
    padding: 100px 0;
    position: relative;
}

.section-emerald {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-primary) 100%);
    color: var(--white-base);
    padding: 100px 0;
}

.section-gold-accent {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-accent) 100%);
    color: var(--white-base);
    padding: 100px 0;
}

.section-off-white {
    background: var(--off-white);
    padding: 100px 0;
}

.section-dark {
    background: var(--gray-900);
    color: var(--white-base);
    padding: 100px 0;
}

.section-dark h2 {
    color: var(--white-base);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 60px;
}

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

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

.text-dark {
    color: var(--gray-900) !important;
}

.text-light {
    color: var(--gray-800) !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-bounce);
    /* height: 100%; */
}

.glass-card-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-bounce);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card {
    background: var(--white-base);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card h3 {
    color: var(--emerald-dark);
}
.service-card p {
    color: var(--gray-800);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-primary), var(--gold-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--white-base);
}

.service-icon.gold {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-primary);
    margin: 20px 0;
    font-family: var(--font-display);
}

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

.feature-box {
    background: var(--white-base);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--emerald-primary);
}

.feature-box p {
    color: var(--gray-800);
}

.feature-box:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-primary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white-base);
}

.team-card {
    background: var(--white-base);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.team-info {
    padding: 28px;
    text-align: center;
}

.team-name {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-role {
    color: var(--emerald-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-base);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald-primary), var(--emerald-light));
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.review-card {
    background: var(--white-base);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: var(--emerald-primary);
    opacity: 0.2;
    font-family: var(--font-display);
    line-height: 1;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: var(--gray-600);
}

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

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

.star-rating {
    color: var(--gold-accent);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.contact-card {
    background: var(--white-base);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-base);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.form-custom {
    background: var(--white-base);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-800);
    display: block;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    background: var(--white-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--emerald-primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.form-control::placeholder {
    color: var(--gray-400);
}

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

.faq-item {
    background: var(--white-base);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--emerald-primary);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    color: var(--emerald-primary);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: var(--white-base);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: block;
    animation: slideUp 0.5s ease-out;
}

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

.cookie-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--emerald-dark);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    flex: 1;
    min-width: 120px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    color: var(--white-base);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.cookie-btn-decline {
    background: var(--gray-100);
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
}

.cookie-btn-decline:hover {
    background: var(--gray-200);
}

.footer-custom {
    background: var(--gray-900);
    color: var(--white-base);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white-base);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--gold-accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-base);
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white-base);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--emerald-light);
    padding-left: 8px;
}

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

.page-header {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-primary) 100%);
    color: var(--white-base);
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../visuals/hero-golf-course.webp') center center/cover no-repeat;
    opacity: 0.15;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--white-base);
}

.breadcrumb-separator {
    opacity: 0.5;
}

.detail-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.detail-card {
    background: var(--white-base);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.detail-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--white-base);
}

.blog-card {
    background: var(--white-base);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 28px;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--emerald-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--gray-100);
}

.legal-content {
    background: var(--white-base);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--emerald-dark);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 12px;
    color: var(--gray-600);
}

.thank-you-content {
    text-align: center;
    padding: 80px 40px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white-base);
    margin: 0 auto 32px;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--emerald-dark);
}

.thank-you-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-section-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-accent);
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-section {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-primary) 100%);
    color: var(--white-base);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.image-grid-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.image-grid-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white-base);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.pricing-table th {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-primary) 100%);
    color: var(--white-base);
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-100);
}

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

.pricing-table tr:hover td {
    background: var(--gray-50);
}

.price-highlight {
    color: var(--emerald-primary);
    font-weight: 600;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-item {
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--emerald-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--emerald-primary);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-primary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-base);
    margin-bottom: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.py-6 { padding-top: 4rem; padding-bottom: 4rem; }
.py-7 { padding-top: 6rem; padding-bottom: 6rem; }

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .navbar-custom .container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-base);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 16px 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }

    .navbar-collapse.show {
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        padding: 16px 20px !important;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero-section {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section-image {
        order: -1;
    }

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

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

    .cookie-consent-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-standard {
        padding: 70px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary-custom,
    .btn-secondary-custom,
    .btn-gold {
        width: 100%;
        justify-content: center;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .process-step::after {
        display: none;
    }

    .form-custom {
        padding: 28px;
    }

    .detail-card {
        padding: 32px 24px;
    }

    .legal-content {
        padding: 32px 24px;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .glass-card {
        padding: 28px 20px;
    }

    .service-card {
        padding: 32px 24px;
    }

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

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

    .thank-you-title {
        font-size: 2rem;
    }
}
