/* ========================================
   BELLA VISTA HOBBY - ASYMMETRIC CREATIVE LAYOUT
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #d4a574;
    --accent-color: #8b4513;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   NAVIGATION - Floating Asymmetric
   ======================================== */

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 90%;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ========================================
   HERO - Asymmetric with Overlap
   ======================================== */

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

.hero-content-offset {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-left: 8%;
}

.hero-title-large {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    max-width: 650px;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

/* ========================================
   BUTTONS & CTAs
   ======================================== */

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
}

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

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
}

.cta-large:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* ========================================
   STORY SECTION - Offset Left
   ======================================== */

.story-offset-left {
    padding: 100px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.story-image-block {
    width: 40%;
    margin-left: 5%;
}

.story-image-block img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-text-overlap {
    width: 50%;
    position: relative;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    margin-left: -80px;
    z-index: 2;
}

.story-text-overlap h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-text-overlap p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   SERVICES - Irregular Grid
   ======================================== */

.services-irregular {
    padding: 120px 40px;
    background: var(--bg-light);
}

.section-header-offset {
    margin-left: 8%;
    margin-bottom: 60px;
}

.label-small {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header-offset h2 {
    font-size: 3rem;
    font-weight: 800;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.card-large {
    flex: 1 1 calc(60% - 15px);
}

.card-small {
    flex: 1 1 calc(40% - 15px);
}

.card-wide {
    flex: 1 1 100%;
}

.card-offset-top {
    flex: 1 1 calc(50% - 15px);
    margin-top: -40px;
}

.card-offset-bottom {
    flex: 1 1 calc(50% - 15px);
    margin-top: 40px;
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.btn-select-service {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: 10px;
}

.btn-select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.cta-center-block {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   WHY SECTION - Overlapping Blocks
   ======================================== */

.why-overlap {
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.why-background-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--bg-light);
    border-radius: 0 0 0 100px;
}

.why-content-layers {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-text-block {
    flex: 1;
}

.why-text-block h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.feature-list-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.4;
}

.feature-text h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.why-image-stack {
    flex: 1;
    position: relative;
    height: 500px;
}

.image-layer-1 {
    position: absolute;
    width: 70%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    top: 0;
    left: 0;
}

.image-layer-2 {
    position: absolute;
    width: 60%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    bottom: 0;
    right: 0;
}

/* ========================================
   TESTIMONIALS - Scattered Layout
   ======================================== */

.testimonials-scattered {
    padding: 120px 40px;
    background: var(--bg-light);
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 60px;
    margin-left: 10%;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
}

.position-1 {
    margin-top: 0;
}

.position-2 {
    margin-top: 50px;
}

.position-3 {
    margin-top: -30px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* ========================================
   FORM SECTION - Asymmetric
   ======================================== */

.form-section-asymmetric {
    padding: 120px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    margin-left: 8%;
}

.form-header {
    margin-bottom: 40px;
}

.form-label {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
}

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.form-image-decoration {
    flex: 1;
    position: relative;
}

.form-image-decoration img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
}

/* ========================================
   CTA FINAL - Offset
   ======================================== */

.cta-final-offset {
    padding: 100px 40px;
    background: var(--primary-color);
    color: white;
}

.cta-content {
    max-width: 800px;
    margin-left: 15%;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* ========================================
   FOOTER - Asymmetric
   ======================================== */

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 80px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    opacity: 0.8;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-main {
    flex: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 600px;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-cookie-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

/* ========================================
   STICKY CTA
   ======================================== */

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header-asymmetric {
    padding: 150px 40px 80px;
    background: var(--bg-light);
}

.header-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.breadcrumb {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.page-header-asymmetric h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ========================================
   SERVICES DETAIL PAGE
   ======================================== */

.services-detail-section {
    padding: 80px 40px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.layout-1 {
    flex-direction: row;
}

.layout-2 {
    flex-direction: row-reverse;
    margin-left: 5%;
}

.layout-3 {
    flex-direction: row;
    margin-right: 5%;
}

.service-image-wrap {
    flex: 1;
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-details-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-value {
    font-weight: 700;
    color: var(--text-dark);
}

.service-price-block {
    margin: 20px 0;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-info {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.cta-services {
    padding: 100px 40px;
    background: var(--bg-light);
}

.cta-content-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-story-section {
    padding: 80px 40px;
}

.story-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-large {
    flex: 1;
}

.story-image-large img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-text-block {
    flex: 1;
}

.year-label {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.story-text-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-overlap {
    padding: 120px 40px;
    background: var(--bg-light);
}

.philosophy-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.philosophy-text {
    flex: 1.5;
}

.philosophy-text h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.point-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.point-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.philosophy-image-stack {
    flex: 1;
}

.philosophy-image-stack img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-section-scattered {
    padding: 120px 40px;
}

.section-title-center {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.team-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    flex: 1 1 calc(50% - 20px);
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 50px;
}

.card-offset-3 {
    margin-top: -30px;
}

.card-offset-4 {
    margin-top: 20px;
}

.member-image {
    height: 350px;
    overflow: hidden;
}

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

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
}

.values-section {
    padding: 120px 40px;
    background: var(--bg-light);
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
}

.values-list-offset {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-text h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 100px 40px;
}

.cta-box-offset {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 20px;
}

.cta-box-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-info-section {
    padding: 80px 40px;
}

.contact-layout-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-main-info {
    flex: 1.5;
}

.info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.detail-box {
    display: flex;
    gap: 20px;
}

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

.detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.contact-note {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}

.contact-note p {
    line-height: 1.7;
}

.contact-note strong {
    color: var(--primary-color);
}

.contact-image-offset {
    flex: 1;
}

.contact-image-offset img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-section {
    padding: 0 40px 80px;
}

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

.map-placeholder {
    background: var(--bg-light);
    padding: 80px 40px;
    border-radius: 15px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.map-note {
    color: var(--text-light);
    margin-top: 10px;
}

.faq-section-offset {
    padding: 100px 40px;
    background: var(--bg-light);
}

.faq-content {
    max-width: 900px;
    margin-left: 10%;
}

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-contact {
    padding: 100px 40px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ========================================
   THANKS PAGE
   ======================================== */

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 40px 80px;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-service-info {
    margin-bottom: 40px;
}

.selected-service {
    background: var(--bg-light);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.thanks-contact {
    color: var(--text-light);
}

/* ========================================
   POLICY PAGES
   ======================================== */

.policy-section {
    padding: 150px 40px 80px;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-container h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.update-date {
    color: var(--text-light);
    margin-bottom: 50px;
}

.policy-content {
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.policy-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.policy-content ul {
    margin: 20px 0 20px 30px;
}

.policy-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
}

.policy-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.back-link {
    color: var(--primary-color);
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 45%;
        right: 0;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 100px;
    }

    .hero-content-offset {
        margin-left: 0;
        text-align: center;
    }

    .hero-image-overlap {
        position: relative;
        width: 90%;
        max-width: 100%;
        margin: 40px auto 0;
        right: auto;
        top: auto;
    }

    .story-offset-left {
        flex-direction: column;
    }

    .story-image-block {
        width: 100%;
        margin-left: 0;
    }

    .story-text-overlap {
        width: 100%;
        margin-left: 0;
    }

    .services-asymmetric-grid .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .why-content-layers {
        flex-direction: column;
    }

    .testimonials-grid .testimonial-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .form-image-decoration {
        display: none;
    }

    .service-detail-card {
        flex-direction: column !important;
        margin: 0 !important;
    }

    .story-grid-offset {
        flex-direction: column;
    }

    .philosophy-content {
        flex-direction: column;
    }

    .team-grid-asymmetric .team-member {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .contact-layout-offset {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .nav-floating {
        padding: 12px 20px;
        gap: 20px;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .section-header-offset h2,
    .section-title-offset,
    .section-title-center {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta a {
        padding: 14px 25px;
        font-size: 0.9rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}