/* Global Styles & Brand Palette Variables */

/* Custom Font-Face Declarations with system local fallback */
@font-face {
    font-family: 'Otoiwo Grotesk Compressed';
    src: local('Otoiwo Grotesk Compressed'), local('OtoiwoGroteskCompressed'), local('Otoiwo Grotesk'), local('Oswald');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Otoiwo Grotesk Normal';
    src: local('Otoiwo Grotesk Normal'), local('OtoiwoGroteskNormal'), local('Otoiwo Grotesk'), local('Montserrat');
    font-weight: 400;
    font-style: normal;
}

:root {
    --color-dark-green: #124a3b;
    --color-dark-header: #124a3b;
    --color-emerald: #02825f;
    --color-emerald-hover: #01654a;
    --color-pink: #ea9cc3;
    --color-pink-light: #fae4ef;
    --color-white: #ffffff;
    --color-light-bg: #ffffff;
    --color-section-alt: #f4f8f6;
    --color-text-main: #124a3b;
    --color-text-muted: #3a5c52;
    --font-heading: 'Otoiwo Grotesk Compressed', 'Oswald', 'Bebas Neue', sans-serif;
    --font-body: 'Otoiwo Grotesk Normal', 'Montserrat', 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.light-theme {
    font-family: var(--font-body);
    background-color: var(--color-light-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-900 { max-width: 900px; }
.max-w-800 { max-width: 800px; }
.text-emerald { color: var(--color-emerald) !important; }
.text-dark-green { color: var(--color-dark-green) !important; }
.text-pink { color: var(--color-pink) !important; }

/* HEADER NAVIGATION BAR (#124a3b) WITH HIDE/SHOW ON SCROLL */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-dark-green);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-pink);
}

.nav-dot {
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

.btn-apply-link {
    color: var(--color-pink);
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ALWAYS VISIBLE FLOATING APPLY NOW BUTTON ON SCROLL */
.floating-apply-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1500;
    background-color: var(--color-emerald);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 30px rgba(2, 130, 95, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

.floating-apply-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-apply-btn:hover {
    background-color: var(--color-dark-green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 35px rgba(18, 74, 59, 0.5);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    max-width: 100%;
}

.btn-emerald-pill {
    background-color: var(--color-emerald);
    color: var(--color-white);
    border-radius: 50px;
    padding: 10px 24px;
}

.btn-emerald-pill:hover {
    background-color: var(--color-emerald-hover);
}

.btn-apply-now {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 16px 42px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    text-align: center;
    line-height: 1.25;
}

.btn-apply-now:hover {
    background-color: var(--color-emerald);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-white);
    cursor: pointer;
    padding: 5px;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-dark-green);
    z-index: 2100;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    overflow-y: auto;
}

.mobile-nav.active { right: 0; }

.close-mobile-nav {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-white);
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-link {
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-link:hover, .mobile-link.active {
    color: var(--color-pink);
    padding-left: 5px;
}

.mobile-logo img {
    height: 38px;
    width: auto;
}

/* HERO BANNER CARD (INDEX.HTML) */
.hero-section {
    padding: 35px 0 45px;
    background-color: #ffffff;
}

.hero-banner-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(18, 74, 59, 0.2);
    background: linear-gradient(135deg, rgba(234, 156, 195, 0.94) 0%, rgba(18, 74, 59, 0.90) 100%), 
                url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.banner-top-content {
    padding: 60px 60px 40px;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.banner-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-banner-box {
    padding: 18px 12px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-banner-box:last-child {
    border-right: none;
}

.stat-banner-box strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-white);
}

/* SECTION 2: BORN IN LVIV STORY SECTION */
.story-section {
    padding: 50px 0;
    background-color: var(--color-section-alt);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 16px;
}

.story-paragraph {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cafe-exterior-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(18, 74, 59, 0.15);
}

.cafe-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.cafe-exterior-card:hover .cafe-img {
    transform: scale(1.03);
}

.cafe-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(18, 74, 59, 0.9));
    color: var(--color-white);
    padding: 16px 20px 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
}

/* SECTION 3: THE CONCEPT & 4 CARDS SECTION */
.concept-section {
    padding: 55px 0;
    background-color: var(--color-white);
}

.section-subtitle-lg {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.concept-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-emerald);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 74, 59, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.concept-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(18, 74, 59, 0.16);
    border-color: var(--color-pink);
}

.concept-card-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.concept-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.concept-card:hover .concept-card-img {
    transform: scale(1.06);
}

.camera-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--color-emerald);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-badge i {
    width: 16px;
    height: 16px;
}

.concept-card-body {
    padding: 18px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--color-dark-green);
    color: #ffffff;
}

.concept-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: var(--color-pink);
    margin-bottom: 6px;
}

.concept-card-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #ffffff;
    line-height: 1.45;
    font-style: italic;
}

.concept-card-desc strong {
    color: var(--color-pink);
    font-style: normal;
}

/* CTA CONTACT ROW */
.cta-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark-green);
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* CLEAN CANVAS PAGE LAYOUT */
.opp-canvas-wrapper,
.investment-card-wrapper,
.territory-card-wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.opp-canvas-section {
    padding: 40px 0 40px;
    background-color: #ffffff;
}

.opp-canvas-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--color-dark-green);
    line-height: 1.05;
    margin-bottom: 6px;
}

.opp-canvas-subtitle {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: var(--color-emerald);
    margin-bottom: 30px;
}

.opp-canvas-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.opp-canvas-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: var(--font-body);
}

.opp-item-dot {
    font-size: 1.6rem;
    color: var(--color-emerald);
    line-height: 1;
    margin-top: 2px;
}

.opp-item-content h3 {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    color: var(--color-dark-green);
    font-weight: 700;
    line-height: 1.45;
}

.opp-item-content h3 strong {
    font-weight: 800;
    color: var(--color-dark-green);
}

.opp-item-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 3px;
    line-height: 1.5;
}

.opp-canvas-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opp-canvas-card {
    border: 2px solid var(--color-emerald);
    border-radius: 20px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(18, 74, 59, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.opp-canvas-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-pink);
    box-shadow: 0 16px 30px rgba(18, 74, 59, 0.14);
}

.opp-canvas-img-wrap {
    position: relative;
    height: 185px;
    overflow: hidden;
}

.opp-canvas-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.opp-canvas-card:hover .opp-canvas-img-wrap img {
    transform: scale(1.06);
}

.camera-badge-sm {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--color-emerald);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-badge-sm i {
    width: 15px;
    height: 15px;
}

.opp-canvas-caption {
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-style: italic;
    color: var(--color-text-muted);
    background-color: #f9fbf9;
    line-height: 1.4;
}

/* FINANCIAL BREAKDOWN & CARD WRAPPERS */
.investment-breakdown-section {
    padding: 50px 0;
    background-color: var(--color-section-alt);
}

.investment-card-wrapper {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 45px 50px;
    box-shadow: 0 14px 35px rgba(18, 74, 59, 0.08);
}

.fdd-note {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.est-investment-box {
    background-color: var(--color-dark-green);
    color: #ffffff;
    border-radius: 20px;
    padding: 28px 35px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(18, 74, 59, 0.14);
}

.est-label {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.est-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-pink);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.est-subtext {
    font-size: 0.92rem;
    color: #e0e0e0;
    font-weight: 500;
}

.table-responsive {
    margin-bottom: 30px;
    border-radius: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 2px solid var(--color-emerald);
    width: 100%;
}

.fdd-table {
    width: 100%;
    border-collapse: collapse;
}

.fdd-table th {
    background-color: var(--color-dark-green);
    color: var(--color-pink);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    text-align: left;
}

.fdd-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e0eae5;
    font-family: var(--font-body);
    font-size: 0.96rem;
}

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

.fdd-table tbody tr:nth-child(even) {
    background-color: #f9fbf9;
}

.req-title {
    font-weight: 700;
    color: var(--color-dark-green);
    width: 38%;
}

.req-detail {
    color: #333333;
    font-weight: 600;
}

.starter-kit-cta {
    margin-bottom: 20px;
}

.fdd-disclaimer {
    font-style: italic;
    font-size: 0.82rem;
    color: #777777;
    line-height: 1.45;
    max-width: 800px;
    margin: 0 auto;
}

/* STEP-BY-STEP TIMELINE LIST (SUPPORT.HTML) */
.steps-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 25px;
    border-radius: 20px;
    border: 1.5px solid #d0e0db;
    background-color: #f9fbf9;
    transition: var(--transition);
}

.step-timeline-item:hover {
    border-color: var(--color-emerald);
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(18, 74, 59, 0.08);
    transform: translateX(4px);
}

.step-number-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-emerald);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-timeline-body {
    flex-grow: 1;
}

.step-timeline-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.step-timeline-body p {
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* PIRATE TREASURE MAP WINDING SNAKE PATH (PROCESS.HTML) */
.pirate-map-wrapper {
    position: relative;
    max-width: 1050px;
    margin: 40px auto 50px;
    padding: 20px 0;
}

.pirate-snake-track {
    display: flex;
    flex-direction: column;
    gap: 45px;
    position: relative;
    z-index: 2;
}

.pirate-map-step {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.pirate-map-step.step-left {
    justify-content: flex-start;
}

.pirate-map-step.step-right {
    justify-content: flex-end;
}

.pirate-map-step.step-center {
    justify-content: center;
}

.pirate-step-card {
    width: 520px;
    background-color: #ffffff;
    border: 2.5px solid var(--color-emerald);
    border-radius: 24px;
    padding: 25px 30px;
    box-shadow: 0 12px 30px rgba(18, 74, 59, 0.1);
    position: relative;
    transition: var(--transition);
}

.pirate-step-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--color-pink);
    box-shadow: 0 20px 40px rgba(18, 74, 59, 0.18);
}

.pirate-badge-container {
    position: absolute;
    top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-left .pirate-badge-container { left: 30px; }
.step-right .pirate-badge-container { right: 30px; }
.step-center .pirate-badge-container { top: -25px; left: 50%; transform: translateX(-50%); }

.pirate-waypoint-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-dark-green);
    color: var(--color-pink);
    border: 3px solid var(--color-emerald);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.treasure-chest-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea9cc3 0%, #124a3b 100%);
    color: #ffffff;
    border: 3px solid #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(234, 156, 195, 0.5);
    animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 156, 195, 0.6); }
    100% { transform: scale(1.08); box-shadow: 0 0 0 15px rgba(234, 156, 195, 0); }
}

.pirate-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-top: 10px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.pirate-card-desc {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Connecting Dotted Snake Line SVG overlay */
.pirate-path-connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* CAFÉ LAYOUTS CAROUSEL STYLING (LOCATIONS.HTML) */
.layout-carousel-container {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    border: 2.5px solid var(--color-emerald);
    box-shadow: 0 12px 35px rgba(18, 74, 59, 0.12);
    background-color: #ffffff;
}

.layout-carousel-track {
    width: 100%;
}

.layout-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    width: 100%;
}

.layout-slide.active {
    display: flex;
}

.layout-img-box {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.layout-img-box img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.layout-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--color-dark-green);
    border: 1.5px solid rgba(18, 74, 59, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: var(--transition);
}

.layout-nav-btn:hover {
    background-color: var(--color-emerald);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.layout-prev { left: 12px; }
.layout-next { right: 12px; }

.layout-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.layout-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #c0d8d0;
    cursor: pointer;
    transition: var(--transition);
}

.layout-dots .dot.active {
    background-color: var(--color-emerald);
    transform: scale(1.3);
}

/* FULL 100VW DARK FOREST GREEN CANVAS SECTION */
.territory-availability-section {
    padding: 50px 0;
    background-color: var(--color-dark-green);
    color: #ffffff;
    width: 100%;
}

.territory-split-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.territory-left-col {
    display: flex;
    flex-direction: column;
}

.territory-markets-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 10px;
}

.market-region-card-canvas {
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
    transition: var(--transition);
    text-align: left;
}

.market-region-card-canvas:hover {
    transform: translateY(-3px);
    border-color: var(--color-pink);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.market-region-badge-canvas {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    text-transform: uppercase;
    color: var(--color-pink);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.market-region-cities-canvas {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #ffffff;
    line-height: 1.4;
    font-weight: 500;
}

.territory-right-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.map-icon-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    text-transform: uppercase;
    color: var(--color-pink);
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.svg-map-wrapper {
    margin: 10px 0 15px;
    width: 100%;
    max-width: 620px;
}

.us-svg-map {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}

.svg-map-wrapper path {
    transition: all 0.35s ease;
}

.svg-map-wrapper g[class*="region-"]:hover path {
    filter: brightness(1.2);
    stroke: #ffffff;
    stroke-width: 3px;
}

.map-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.color-green { background-color: var(--color-emerald); }
.color-pink { background-color: var(--color-pink); }
.color-gray { background-color: #4d7c6f; }

.map-hint {
    font-size: 0.9rem;
    color: #d0e0db;
    font-style: italic;
}

/* SECTION 4: FULL-WIDTH WHY LVIV CROISSANTS CAROUSEL */
.why-section-fullwidth {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 0 0 45px 0;
}

.carousel-wrapper-full {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track-full {
    display: flex;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide-full {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 74, 59, 0.92) 0%, rgba(2, 130, 95, 0.88) 100%);
    z-index: 1;
}

.slide-content-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    color: #ffffff;
}

.slide-main-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 6px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slide-emerald-title {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-pink);
    margin-bottom: 4px;
}

.slide-white-tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.support-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 25px;
    text-align: left;
}

.support-block h4 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-pink);
    margin-bottom: 12px;
}

.support-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-block ul li {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

.slide-bullets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    text-align: left;
    max-width: 850px;
    margin: 25px auto 0;
}

.slide-bullets-grid li {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 600;
    color: #ffffff;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-bullets-grid li span {
    color: var(--color-pink);
    font-size: 1.2rem;
}

.growth-layout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    text-align: left;
    margin-top: 25px;
}

.growth-block strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-pink);
    margin-bottom: 3px;
}

.growth-block p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.4;
}

.slide-bottom-summary {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-pink);
}

.full-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--color-emerald);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.full-nav-btn:hover {
    background-color: var(--color-pink);
    color: var(--color-dark-green);
    transform: translateY(-50%) scale(1.1);
}

.full-prev { left: 30px; }
.full-next { right: 30px; }

.why-dots-bar {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100;
}

.why-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.why-dot.active {
    background-color: var(--color-pink);
    transform: scale(1.3);
}

/* SECTION 5: COVERFLOW PERSPECTIVE PHOTO GALLERY SLIDER */
.coverflow-gallery-section {
    padding: 50px 0 65px;
    background-color: #ffffff;
    overflow: hidden;
}

.coverflow-slider-wrapper {
    position: relative;
    max-width: 1380px;
    margin: 0 auto;
    padding: 15px 0;
}

.coverflow-track {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    position: relative;
    gap: 15px;
}

.coverflow-card {
    position: relative;
    width: 250px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(18, 74, 59, 0.12);
    cursor: pointer;
}

.coverflow-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coverflow-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(18, 74, 59, 0.95));
    color: #ffffff;
    padding: 18px 18px 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coverflow-card:hover .coverflow-card-caption,
.coverflow-card.active .coverflow-card-caption {
    opacity: 1;
}

/* Coverflow Card States */
.coverflow-card.active {
    width: 360px;
    height: 420px;
    border-radius: 24px;
    z-index: 10;
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(18, 74, 59, 0.25);
    border: 3px solid var(--color-emerald);
}

.coverflow-card.side {
    width: 240px;
    height: 340px;
    z-index: 5;
    opacity: 0.92;
    transform: scale(0.95);
}

.coverflow-card.far {
    width: 200px;
    height: 300px;
    z-index: 2;
    opacity: 0.7;
    transform: scale(0.85);
}

.coverflow-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-dark-green);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    transition: var(--transition);
}

.coverflow-nav-btn:hover {
    background-color: var(--color-emerald);
    color: #ffffff;
    transform: translateY(-50%) scale(1.12);
}

.coverflow-prev { left: 40px; }
.coverflow-next { right: 40px; }

/* Apply Modal Popup */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-white);
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--color-dark-green);
    cursor: pointer;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 18px;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #444444;
    margin-bottom: 3px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #d0e0db;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem; /* 16px prevents iOS zoom on focus */
    color: #222222;
    background-color: #ffffff;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 3px rgba(2, 130, 95, 0.15);
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.captcha-group label {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.captcha-input {
    width: auto;
    flex-grow: 1;
}

/* RICH FULL FOOTER (DARK FOREST GREEN WITH WHITE LOGO) */
.main-footer {
    background-color: var(--color-dark-green);
    color: #ffffff;
    padding: 55px 0 30px;
    font-size: 0.92rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 14px;
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #d0e0db;
    line-height: 1.55;
    margin-bottom: 18px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-contact-info a {
    text-decoration: none;
    color: var(--color-pink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: #ffffff;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-pink);
    transform: translateX(3px);
}

.footer-highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #ffffff;
}

.footer-highlights-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-highlights-list li span {
    color: var(--color-pink);
    font-weight: 700;
}

.footer-bottom-bar {
    border-top: 1.5px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #d0e0db;
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
}

.toast {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    padding: 12px 22px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE ADAPTATION (TABLETS & MOBILE PHONES)
   ========================================================================== */

@media (max-width: 1200px) {
    .container { padding: 0 20px; }
    .concept-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .opp-canvas-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-menu { gap: 10px; }
    .nav-link { font-size: 0.85rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
}

@media (max-width: 992px) {
    /* Header & Navigation */
    .header-container { height: 68px; }
    .header-logo { height: 38px; }
    .nav-menu { display: none; }
    .burger-menu { display: flex; }
    
    /* Hero Banner */
    .banner-top-content { padding: 45px 30px 30px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .banner-stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-banner-box { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
    .stat-banner-box:nth-child(2) { border-right: none; }

    /* Story & Concept */
    .story-grid { grid-template-columns: 1fr; gap: 30px; }
    .section-title { font-size: 2.4rem; }

    /* Opportunity & Investment Canvas */
    .opp-canvas-title { font-size: 2.8rem; }
    .opp-canvas-subtitle { font-size: 1.6rem; }
    .investment-card-wrapper { padding: 35px 25px; }
    .est-number { font-size: 2.5rem; }

    /* Territory Availability */
    .territory-split-row { grid-template-columns: 1fr; gap: 35px; }
    
    /* Why Us Fullwidth Slider */
    .carousel-slide-full { padding: 50px 40px 65px; }
    .slide-main-heading { font-size: 2.6rem; }
    .slide-emerald-title { font-size: 1.35rem; }
    .support-layout-grid { grid-template-columns: 1fr; gap: 20px; }
    .growth-layout-grid { grid-template-columns: 1fr; gap: 15px; }
    .slide-bullets-grid { grid-template-columns: 1fr; gap: 12px; }
    .full-prev { left: 10px; }
    .full-next { right: 10px; }

    /* Coverflow Photo Gallery */
    .coverflow-card.active { width: 320px; height: 380px; }
    .coverflow-card.side { width: 200px; height: 310px; }
    .coverflow-card.far { display: none; }
    .coverflow-prev { left: 15px; }
    .coverflow-next { right: 15px; }

    /* Pirate Map Process Page Mobile Winding Path */
    .pirate-snake-track {
        gap: 35px;
        position: relative;
    }

    .pirate-snake-track::before {
        content: '';
        position: absolute;
        top: 20px;
        bottom: 80px;
        left: 48px;
        width: 0;
        border-left: 3.5px dashed var(--color-emerald);
        z-index: 1;
    }

    .pirate-step-card { width: 100%; max-width: 100%; z-index: 2; }
    .pirate-map-step.step-left, 
    .pirate-map-step.step-right, 
    .pirate-map-step.step-center { justify-content: center; }
    .step-left .pirate-badge-container,
    .step-right .pirate-badge-container { left: 25px; right: auto; }
    .pirate-path-connector-svg { display: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Global Buttons & Badges */
    .floating-apply-btn {
        bottom: 18px;
        right: 18px;
        padding: 12px 22px;
        font-size: 1rem;
        box-shadow: 0 8px 25px rgba(2, 130, 95, 0.5);
    }

    .btn {
        white-space: normal;
        text-align: center;
    }

    .btn-apply-now {
        font-size: 1.05rem;
        padding: 14px 20px;
        width: 100%;
        max-width: 100%;
        white-space: normal;
        border-radius: 30px;
        line-height: 1.25;
    }

    /* CTA Contact Row Mobile */
    .cta-contact-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .cta-contact-item {
        white-space: normal;
        word-break: break-word;
        justify-content: center;
    }

    /* Hero Banner */
    .hero-banner-card { border-radius: 24px; }
    .banner-top-content { padding: 35px 20px 25px; }
    .hero-title { font-size: 2.2rem; line-height: 1.1; margin-bottom: 14px; }
    .hero-subtitle { font-size: 0.98rem; line-height: 1.5; margin-bottom: 22px; }
    .stat-banner-box { padding: 14px 8px; }
    .stat-banner-box strong { font-size: 1.1rem; }

    /* Story & Cafe */
    .story-section { padding: 35px 0; }
    .section-title { font-size: 2rem; }
    .cafe-img { height: 260px; }

    /* Cards Grids */
    .concept-cards-grid { grid-template-columns: 1fr; gap: 16px; }
    .opp-canvas-cards-grid { grid-template-columns: 1fr; gap: 16px; }
    .opp-canvas-title { font-size: 2.2rem; }
    .opp-canvas-subtitle { font-size: 1.35rem; margin-bottom: 20px; }
    .opp-canvas-item { gap: 12px; }
    .opp-item-content h3 { font-size: 1.1rem; }

    /* Financial & FDD Breakdown Tables */
    .investment-breakdown-section { padding: 35px 0; }
    .investment-card-wrapper { padding: 22px 14px; border-radius: 20px; }
    .est-investment-box { padding: 22px 16px; border-radius: 16px; }
    .est-label { font-size: 0.95rem; }
    .est-number { font-size: 1.9rem; }
    
    .table-responsive {
        width: 100%;
        overflow-x: visible;
        margin-bottom: 25px;
        border-radius: 14px;
    }

    .fdd-table {
        width: 100%;
        min-width: 100%;
        table-layout: fixed;
    }

    .fdd-table th {
        font-size: 0.95rem;
        padding: 10px 10px;
        letter-spacing: 0.3px;
    }

    .fdd-table td {
        font-size: 0.85rem;
        padding: 12px 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        line-height: 1.4;
    }

    .req-title {
        width: 42%;
        font-weight: 700;
    }

    .req-detail {
        width: 58%;
    }

    /* Territory & Maps */
    .territory-markets-grid-2col { grid-template-columns: 1fr; gap: 10px; }
    .market-region-badge-canvas { font-size: 1.2rem; }
    .map-legend { flex-direction: column; align-items: center; gap: 8px; }

    /* Step Timeline List (Support) */
    .step-timeline-item { flex-direction: column; gap: 12px; padding: 18px; border-radius: 16px; }
    .step-number-badge { width: 38px; height: 38px; font-size: 1.3rem; }
    .step-timeline-body h3 { font-size: 1.25rem; }

    /* Fullwidth Carousel */
    .carousel-slide-full { padding: 45px 48px 65px; min-height: 480px; }
    .slide-main-heading { font-size: 2rem; letter-spacing: 0.5px; }
    .slide-emerald-title { font-size: 1.15rem; }
    .slide-white-tagline { font-size: 0.95rem; margin-bottom: 20px; }
    .slide-bullets-grid li { font-size: 0.95rem; }
    .full-nav-btn { width: 36px; height: 36px; }
    .full-prev { left: 6px; }
    .full-next { right: 6px; }

    /* Gallery Coverflow Slider */
    .coverflow-track { min-height: 350px; }
    .coverflow-card.active { width: 88vw; max-width: 340px; height: 340px; }
    .coverflow-card.side { display: none; }
    .coverflow-nav-btn { width: 40px; height: 40px; }
    .coverflow-prev { left: 8px; }
    .coverflow-next { right: 8px; }

    /* Layout Floorplans Carousel Controls */
    .layout-img-box {
        padding: 10px 4px;
    }

    .layout-img-box img {
        width: 100%;
        height: auto;
        max-height: 480px;
        object-fit: contain;
    }

    .layout-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .layout-prev { left: 6px; }
    .layout-next { right: 6px; }

    /* Footer */
    .main-footer { padding: 45px 0 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-col-title { font-size: 1.3rem; margin-bottom: 12px; }
    .footer-bottom-bar { flex-direction: column; gap: 10px; text-align: center; }

    /* Modal Popup */
    .modal-content { width: 94%; padding: 22px 16px; border-radius: 20px; }
    .form-title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .header-container { height: 62px; }
    .header-logo { height: 34px; }
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.8rem; }
    .opp-canvas-title { font-size: 1.85rem; }
    .opp-canvas-subtitle { font-size: 1.2rem; }
    .pirate-card-title { font-size: 1.35rem; }
    .pirate-step-card { padding: 20px 16px; border-radius: 18px; }
    .pirate-waypoint-badge { width: 40px; height: 40px; font-size: 1.3rem; }
    .treasure-chest-badge { width: 46px; height: 46px; font-size: 1.4rem; }
    .floating-apply-btn { bottom: 12px; right: 12px; padding: 10px 18px; font-size: 0.9rem; }
    .carousel-slide-full { padding: 40px 42px 60px; }
    .fdd-table th { font-size: 0.88rem; padding: 8px 6px; }
    .fdd-table td { font-size: 0.8rem; padding: 10px 6px; }
    .layout-img-box img { max-height: 420px; }
}
