/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8a3a;
    --accent-color: #8fbc5c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9f5;
    --bg-white: #ffffff;
    --border-color: #e0e4d9;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Selection */
::selection {
    background: var(--accent-color);
    color: white;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
}

.submit-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.submit-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.submit-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #e74c3c;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: var(--accent-color);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 8rem 0 4rem;
    background: var(--bg-white);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    font-size: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer legal section */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-legal h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

/* Map wrapper - Modern styled map container */
.map-wrapper {
    margin-top: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    filter: grayscale(40%) brightness(90%);
    transition: filter 0.3s ease;
    position: relative;
}

.map-wrapper:hover {
    filter: grayscale(0%) brightness(100%);
}

.map-wrapper iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
    transition: transform 0.3s ease;
}

.map-wrapper:hover iframe {
    transform: scale(1.02);
}

/* Picture element optimization */
picture {
    display: block;
    width: 100%;
    height: 100%;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.logo-icon {
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-link.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.hero-title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 0.9;
    color: var(--primary-color);
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-title-sub {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-left: 4px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-services {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-services span {
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.hero-services span::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.cta-button-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.cta-button-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.1;
}

.decoration-line {
    width: 400px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: rotate(-45deg);
}

.decoration-circle {
    width: 600px;
    height: 600px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: -300px;
    right: -200px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.scroll-arrow {
    font-size: 1.5rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 90vh;
}

.about-image-side {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d5016 0%, #3d6821 100%);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.95;
}

.about-label {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-content-side {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.about-intro {
    margin-bottom: 3rem;
}

.about-greeting {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 1.5rem;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color);
    margin: 0;
}

.about-text {
    margin-bottom: 3rem;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-signature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.signature-title {
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9f5 0%, #e8f5e0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(143, 188, 92, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-choose-image {
    position: relative;
}

.why-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--primary-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.section-title-alt {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-underline-left {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    margin-bottom: 2rem;
    border-radius: 2px;
}

.why-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    min-width: 60px;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== PHOTO SHOWCASE SECTION ===== */
.photo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 70vh;
    min-height: 500px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.showcase-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    transform: scale(1.08);
}

.showcase-item:hover .showcase-photo {
    transform: scale(1.15);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.9) 0%, rgba(45, 80, 22, 0.5) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.showcase-content {
    color: white;
}

.showcase-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.showcase-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ===== SEASONAL CALENDAR SECTION ===== */
.seasonal-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

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

.season-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.season-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.4s ease;
}

.season-card.spring::before {
    background: linear-gradient(90deg, #FFB6C1, #FFC0CB);
}

.season-card.summer::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.season-card.autumn::before {
    background: linear-gradient(90deg, #FF8C00, #D2691E);
}

.season-card.winter::before {
    background: linear-gradient(90deg, #87CEEB, #4682B4);
}

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

.season-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.season-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: seasonFloat 3s ease-in-out infinite;
}

@keyframes seasonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.season-card.spring .season-icon { animation-delay: 0s; }
.season-card.summer .season-icon { animation-delay: 0.2s; }
.season-card.autumn .season-icon { animation-delay: 0.4s; }
.season-card.winter .season-icon { animation-delay: 0.6s; }

.season-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.season-period {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.season-tasks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.season-tasks li {
    padding: 0.6rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 0.5rem;
}

.season-tasks li:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.season-temp {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.5rem;
}

.seasonal-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(90, 138, 58, 0.05), rgba(119, 169, 85, 0.05));
    border-radius: 20px;
    border: 2px dashed var(--secondary-color);
}

.cta-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(90, 138, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(90, 138, 58, 0.4);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(90, 138, 58, 0.05), rgba(143, 188, 92, 0.05));
    border-radius: 15px;
}

.services-cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.services-cta .btn-primary {
    display: inline-block;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(143, 188, 92, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 8rem 0;
    background: white;
    position: relative;
}

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

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

.process-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 1.5rem;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.process-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.process-card {
    background: #fafafa;
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.process-card:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.process-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.3;
}

.process-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.process-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.process-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-icon {
    color: var(--accent-color);
    font-size: 0.6rem;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9f5 0%, #e8f5e0 100%);
    border-radius: 20px;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== FAQ SECTION - EDITORIAL STYLE ===== */
.faq-section {
    padding: 8rem 0;
    background: #fafafa;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.faq-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 2rem;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.faq-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Editorial Column Layout */
.faq-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 5rem;
    column-gap: 5rem;
    position: relative;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.faq-item {
    position: relative;
    padding-top: 1rem;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.faq-item-number {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.faq-item-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.3px;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Decorative element between columns */
.faq-editorial::before,
.faq-editorial::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
    opacity: 0.3;
}

.faq-editorial::before {
    left: calc(33.333% - 2.5rem);
}

.faq-editorial::after {
    right: calc(33.333% - 2.5rem);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.overall-rating {
    text-align: center;
    margin-top: 1.5rem;
}

.rating-stars {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.25rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(90, 138, 58, 0.1), rgba(143, 188, 92, 0.1));
    border-radius: 50px;
    border: 2px solid var(--accent-color);
}

.trust-icon {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.trust-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: var(--bg-light);
    opacity: 0.5;
    pointer-events: none;
    line-height: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FFB800;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: 8rem 0;
    background: white;
}

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

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

.projects-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 1.5rem;
}

.projects-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.projects-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.project-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 2rem;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image-wrapper img {
    transform: scale(1.03);
}

.project-info {
    display: flex;
    flex-direction: column;
}

.project-location {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.project-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.detail-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.detail-divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
}

/* Projects Testimonials */
.projects-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem 0 0;
    border-top: 2px solid var(--border-color);
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Responsive - Projects */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .projects-testimonials {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 5rem 0;
    }

    .projects-container {
        padding: 0 1.5rem;
    }

    .projects-header {
        margin-bottom: 4rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }

    .project-image-wrapper {
        margin-bottom: 1.5rem;
    }

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

    .projects-testimonials {
        padding: 3rem 0 0;
    }

    .faq-section {
        padding: 5rem 0;
    }

    .faq-container {
        padding: 0 2rem;
    }

    .faq-header {
        margin-bottom: 4rem;
        padding-bottom: 2rem;
    }

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

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

    .faq-editorial::before {
        left: calc(50% - 1.5rem);
    }

    .faq-editorial::after {
        display: none;
    }

    .faq-column {
        gap: 3rem;
    }

    .faq-question {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 4rem 0;
    }

    .projects-container {
        padding: 0 1rem;
    }

    .projects-header {
        margin-bottom: 3rem;
    }

    .projects-grid {
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .project-name {
        font-size: 1.4rem;
    }

    .project-description {
        font-size: 0.95rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .projects-testimonials {
        padding: 2.5rem 0 0;
        gap: 1.5rem;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .faq-container {
        padding: 0 1.5rem;
    }

    .faq-header {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

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

    .faq-intro {
        font-size: 1.1rem;
    }

    .faq-editorial {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-editorial::before,
    .faq-editorial::after {
        display: none;
    }

    .faq-column {
        gap: 2.5rem;
    }

    .faq-item {
        padding-top: 0.75rem;
    }

    .faq-item::before {
        width: 40px;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}


/* ===== CONTACT SECTION ===== */
.contact {
    padding: 8rem 0;
    background: white;
}

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

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

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

/* Contact Information */
.contact-information {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.info-block:last-of-type {
    border-bottom: none;
}

.info-heading {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.info-value {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.info-value a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: var(--primary-color);
}

.contact-methods {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
}

.contact-method-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===== AI ASSISTANT SECTION ===== */
.ai-assistant-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.ai-assistant-intro {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.vapi-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vapi-call-button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.vapi-call-button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    animation: pulse-call 2s infinite;
}

.vapi-call-button.ending {
    opacity: 0.6;
    cursor: not-allowed;
}

.vapi-button-text {
    font-size: inherit;
    line-height: 1;
}

@keyframes pulse-call {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Vapi Notifications */
.vapi-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.vapi-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.vapi-notification-success {
    border-left: 4px solid #27ae60;
}

.vapi-notification-error {
    border-left: 4px solid #e74c3c;
}

.vapi-notification-info {
    border-left: 4px solid #3498db;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fafafa;
    padding: 3rem;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-field label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: white;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-field textarea {
    resize: vertical;
    line-height: 1.6;
}

.form-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: var(--secondary-color);
}

.form-submit-btn:active {
    transform: scale(0.98);
}

/* ===== OFFICIAL INFORMATION SECTION ===== */
.official-info-section {
    padding: 4rem 0;
    background: #fafafa;
    border-top: 1px solid var(--border-color);
}

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

.official-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
}

.official-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.official-col h3 {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.official-col p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.official-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.official-legal a {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.official-legal a:hover {
    color: var(--primary-color);
}

.official-legal span {
    color: var(--border-color);
    font-size: 0.8rem;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #8fbc5c, #7FB069);
    box-shadow: 0 2px 10px rgba(143, 188, 92, 0.5);
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1f3a26 0%, #2C5234 50%, #1f3a26 100%);
    color: white;
    padding: 0;
    margin-top: 6rem;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
    color: #f8f9fa;
    transform: translateY(-100%);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-main {
    padding: 6rem 0 3rem;
}

.footer-brand {
    max-width: 100%;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-stats .stat-item {
    text-align: center;
}

.footer-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.25rem;
}

.footer-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.footer-column h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column .link-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover .link-icon {
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item-footer svg {
    flex-shrink: 0;
    color: var(--accent-color);
}

.contact-item-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-footer a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(143, 188, 92, 0.4);
}

.social-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-btn.phone:hover {
    background: #4CAF50;
    border-color: #4CAF50;
}

.newsletter-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(143, 188, 92, 0.1);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #8fbc5c);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 5px 20px rgba(143, 188, 92, 0.5);
}

.footer-tax-banner {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(143, 188, 92, 0.2), rgba(143, 188, 92, 0.1));
    border-radius: 16px;
    border: 2px solid rgba(143, 188, 92, 0.3);
    backdrop-filter: blur(10px);
}

.tax-banner-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(143, 188, 92, 0.3);
    border-radius: 50%;
    color: var(--accent-color);
}

.tax-banner-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.tax-banner-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.tax-banner-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tax-banner-content a:hover {
    color: #8fbc5c;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@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 bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .logo-image {
        height: 80px;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

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

    .hero-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-services {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-decoration {
        display: none;
    }

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

    .section-title-alt {
        font-size: 2rem;
    }

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

    .about-image-side {
        min-height: 50vh;
    }

    .about-content-side {
        padding: 4rem 2rem;
    }

    .about-label {
        bottom: 2rem;
        left: 2rem;
    }

    /* Contact Section */
    .contact {
        padding: 5rem 0;
    }

    .contact-container {
        padding: 0 1.5rem;
    }

    .contact-header {
        margin-bottom: 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-information {
        gap: 2rem;
    }

    .info-block {
        padding-bottom: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-methods {
        flex-direction: column;
    }

    .contact-method-link {
        text-align: center;
    }

    /* AI Assistant - Mobile */
    .ai-assistant-intro {
        font-size: 0.85rem;
    }

    .vapi-call-button {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }

    .vapi-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 14px;
    }

    /* Why Choose Section */
    .why-choose {
        padding: 4rem 0;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-image {
        order: -1;
    }

    .feature-number {
        font-size: 2rem;
    }

    /* Photo Showcase */
    .photo-showcase {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-item {
        height: 50vh;
        min-height: 400px;
    }

    .showcase-content h3 {
        font-size: 2rem;
    }

    .showcase-content p {
        font-size: 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .services-cta-text {
        font-size: 1rem;
    }

    /* Projects */
    .project-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0 4rem;
    }

    .featured-image {
        height: 400px;
    }

    .project-number {
        font-size: 5rem;
    }

    .featured-content .project-title {
        font-size: 2rem;
    }

    .project-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .project-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-card.reverse {
        grid-template-columns: 1fr;
    }

    .project-card.reverse .project-image,
    .project-card.reverse .project-content {
        order: initial;
    }

    .project-image {
        min-height: 300px;
    }

    .project-content {
        padding: 1rem;
    }

    .project-card .project-title {
        font-size: 1.5rem;
    }

    /* Stats */
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .season-card {
        padding: 2rem 1.5rem;
    }

    .season-icon {
        font-size: 3rem;
    }

    .season-title {
        font-size: 1.5rem;
    }

    .seasonal-cta {
        padding: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Process Section */
    .process-section {
        padding: 5rem 0;
    }

    .process-container {
        padding: 0 1.5rem;
    }

    .process-header {
        margin-bottom: 3rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .process-card {
        padding: 2rem;
    }

    .process-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Official Info */
    .official-info-section {
        padding: 3rem 0;
    }

    .official-container {
        padding: 0 1.5rem;
    }

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

    /* Mobile adjustments */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-stats {
        gap: 2rem;
    }
    
    .footer-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .footer-tax-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal-links .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-services {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    .about-image-side {
        min-height: 40vh;
    }

    .about-content-side {
        padding: 3rem 1.5rem;
    }

    .about-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
        padding: 0.6rem 1.2rem;
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .about-intro {
        margin-bottom: 2rem;
    }

    .about-text {
        margin-bottom: 2rem;
    }

    .about-paragraph {
        font-size: 1rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    /* Contact Section */
    .contact {
        padding: 4rem 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .contact-grid {
        gap: 3rem;
    }

    .contact-information {
        gap: 1.5rem;
    }

    .info-block {
        padding-bottom: 1rem;
    }

    .info-value {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form-modern {
        gap: 1.5rem;
    }

    .about-photo {
        clip-path: inset(0 0 10% 0);
        transform: scale(1.08);
    }

    .gallery-photo {
        transform: scale(1.12);
    }

    .hero::before {
        transform: scale(1.15);
    }

    /* Stats */
    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .season-card {
        padding: 1.5rem 1rem;
    }

    .season-icon {
        font-size: 2.5rem;
    }

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

    .season-tasks li {
        font-size: 0.9rem;
    }

    .seasonal-cta {
        padding: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .process-section {
        padding: 4rem 0;
    }

    .process-container {
        padding: 0 1rem;
    }

    .process-card {
        padding: 1.5rem;
    }

    .process-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .process-number {
        font-size: 2.5rem;
    }

    .process-card-title {
        font-size: 1.2rem;
    }

    .process-benefits {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    /* Testimonials */
    .testimonials-section::before {
        font-size: 10rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .logo-image {
        height: 70px;
    }

    .footer-logo-img {
        height: 60px;
    }

    /* Projects */
    .featured-image {
        height: 300px;
    }

    .project-number {
        font-size: 4rem;
    }

    .featured-content {
        padding: 1rem;
    }

    .featured-content .project-title {
        font-size: 1.8rem;
    }

    .project-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .project-image {
        min-height: 250px;
    }

    .project-content {
        padding: 1rem;
    }

    .project-card .project-title {
        font-size: 1.3rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .project-number-small {
        font-size: 2rem;
    }

    /* Official Info */
    .official-info-section {
        padding: 2.5rem 0;
    }

    .official-container {
        padding: 0 1rem;
    }

    .official-heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .official-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .official-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .official-legal span {
        display: none;
    }
}

/* ===== PRICES PAGE STYLES ===== */

/* Prices Hero Section */
.prices-hero {
    padding: 10rem 0 6rem;
    background: #fafaf8;
    position: relative;
    overflow: hidden;
}

.prices-hero::before {
    content: none;
}

.prices-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.prices-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 1.5rem;
}

.prices-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0;
}

.prices-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

.prices-hero-highlight {
    display: inline-block;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.highlight-icon {
    font-size: 3rem;
    line-height: 1;
}

.highlight-text {
    text-align: center;
    line-height: 1.6;
    color: var(--text-dark);
}

.highlight-text strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Price Cards Section */
.prices-section {
    padding: 7rem 0;
    background: white;
}

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: white;
    border-radius: 4px;
    padding: 2.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
    border-color: rgba(90, 138, 58, 0.3);
    background: white;
}

.price-card.featured:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.price-card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.price-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-card-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.price-card-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
    background: #fafaf8;
    border-radius: 4px;
}

.price-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
}

.price-vat {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: 400;
}

.price-excl {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

.price-card-description {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-card-description p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price-card-description p:last-child {
    margin-bottom: 0;
}

.price-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-item::before {
    content: '·';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1.2;
}

.price-card-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.05);
    border-left: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 2px;
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.price-card-note strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Conditions Section */
.conditions-section {
    padding: 5rem 0;
    background: #fafaf8;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.condition-card {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.condition-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.condition-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.condition-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.condition-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.condition-card p:last-child {
    margin-bottom: 0;
}

.condition-highlight {
    background: rgba(143, 188, 92, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 3px;
    color: var(--primary-color);
    font-weight: 500;
    border-left: 2px solid var(--secondary-color);
    font-size: 0.9rem;
}

.condition-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light);
}

/* Audience Section */
.audience-section {
    padding: 6rem 0;
    background: white;
}

.audience-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.audience-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 1rem;
}

.audience-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 400;
}

.audience-block {
    margin-bottom: 2.5rem;
}

.audience-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.audience-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.benefit-item-text {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #fafaf8;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-item-text:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-icon-text {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-item-text h4 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.audience-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.visual-card {
    background: #fafaf8;
    padding: 1.75rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.visual-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.visual-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.visual-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.visual-card p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.visual-detail {
    color: var(--text-light);
    font-weight: 300;
    font-size: 0.85rem;
}

/* Tax Section */
.tax-section {
    padding: 6rem 0;
    background: #fafaf8;
    position: relative;
}

.tax-content {
    max-width: 1100px;
    margin: 0 auto;
}

.tax-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tax-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.tax-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 400;
}

.tax-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
}

.tax-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tax-info-card {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tax-info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tax-info-card.highlight {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tax-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.tax-info-card.highlight h3 {
    color: white;
}

.tax-info-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tax-info-card.highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.tax-info-card.highlight strong {
    color: white;
    font-weight: 600;
}

.tax-savings {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.savings-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}

.savings-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.savings-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.savings-calculation {
    text-align: center;
}

.tax-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tax-step {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background: #fafaf8;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
}

.tax-step p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9rem;
}

.tax-important-info {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tax-important-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.tax-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tax-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
}

.tax-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1.2;
}

.tax-list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.tax-example {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tax-example h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.example-calculation {
    max-width: 500px;
    margin: 0 auto;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1rem;
}

.calc-row.total {
    border-bottom: none;
    border-top: 2px solid var(--primary-color);
    padding-top: 1.25rem;
    margin-top: 0.75rem;
}

.calc-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.calc-amount.savings {
    color: #27ae60;
}

.calc-row.total .calc-amount {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

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

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    font-weight: 400;
}

.cta-text {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive - Prices Page */
@media (max-width: 1024px) {
    .audience-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .audience-visual {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .prices-hero {
        padding: 8rem 0 4rem;
    }

    .prices-hero-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .highlight-text {
        text-align: center;
    }

    .prices-section {
        padding: 5rem 0;
    }

    .price-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-8px) scale(1);
    }

    .conditions-section {
        padding: 5rem 0;
    }

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

    .audience-section {
        padding: 5rem 0;
    }

    .tax-section {
        padding: 5rem 0;
    }

    .tax-info-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .prices-hero {
        padding: 7rem 0 3rem;
    }

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

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

    .highlight-icon {
        font-size: 2rem;
    }

    .price-card {
        padding: 2rem 1.5rem;
    }

    .price-card-icon {
        font-size: 2.5rem;
    }

    .price-card-title {
        font-size: 1.5rem;
    }

    .price-main {
        font-size: 2.5rem;
    }

    .condition-card {
        padding: 1.5rem;
    }

    .condition-icon {
        font-size: 2.5rem;
    }

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

    .benefit-item-text {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .benefit-icon-text {
        font-size: 2rem;
    }

    .audience-visual {
        grid-template-columns: 1fr;
    }

    .tax-icon-large {
        font-size: 3.5rem;
    }

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

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

    .tax-example {
        padding: 2rem 1.5rem;
    }

    .calc-row {
        font-size: 1rem;
    }

    .calc-amount {
        font-size: 1.3rem;
    }

    .calc-row.total .calc-amount {
        font-size: 1.6rem;
    }

    .savings-number {
        font-size: 2.5rem;
    }

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

    .cta-text {
        font-size: 1.05rem;
    }
}

