/*
Theme Name: Port Yves
Author: Molab
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: molab.pl
*/

/* ===== DESIGN SYSTEM VARIABLES ===== */
:root {
    --light-cream: #F4F4F4;
    --warm-beige: #dad7d0;
    --rich-brown: #6d4931;
    --deep-brown: #39271e;
    --dark-charcoal: #1E1A15;
    --navy-dark: #0A0E27;
    --pure-black: #000000;

    /* Additional colors for compatibility */
    --primary-color: #667eea;
    --secondary-color: #764ba2;

    /* Transitions */
    --transition-smooth: transform 180ms cubic-bezier(.2,.8,.2,1), box-shadow 180ms ease;

    /* Fonts */
    --font-extra: 'Ballet', cursive;
    --font-main: 'Hanken Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--light-cream);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
}

h1 { 
    font-size: 3.5rem; 
    color: var(--light-cream);
    text-shadow: none;
}

h2 { 
    font-size: 2.5rem; 
    color: var(--light-cream);
}

h3 { 
    font-size: 2rem; 
    color: var(--light-cream);
}

h4 { 
    font-size: 1.5rem; 
    color: var(--light-cream);
}

h5 { 
    font-size: 1.25rem; 
    color: var(--light-cream);
}

h6 { 
    font-size: 1rem; 
    color: var(--light-cream);
}

p {
    font-weight: 200;
    line-height: 1.4rem;
}

/* ===== CONTAINER SYSTEM ===== */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

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

.section .container {
    position: relative;
}

/* ===== SECTION BASE STYLES ===== */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    line-height: 1.4;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--deep-brown);
    color: var(--light-cream);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--deep-brown);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--light-cream);
}

.btn-primary:active {
    background: var(--dark-charcoal);
    transform: translateY(0px) scale(0.995);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--light-cream);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 18px;
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.16);
    transform: translateY(-2px);
    color: var(--light-cream);
}

/* ===== CTA BUTTON SYSTEM ===== */
.cta-button {
    position: relative;
    padding: 0.5rem 2rem !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #242323;
    font-size: 0.80rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-cream);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover {
    color: var(--dark-charcoal) !important;
    text-decoration: none;
}

.cta-button:hover::before {
    width: 100%;
}

.cta-primary {
    background: var(--rich-brown);
    color: var(--light-cream);
}

.cta-secondary {
    background: transparent;
    color: var(--light-cream);
    border: 1px solid var(--light-cream);
}

/* ===== GOLD BUTTON SYSTEM ===== */
.gold-button {
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem!important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    background: var(--rich-brown);
    color: var(--light-cream);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 200;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.gold-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-cream);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.gold-button:hover {
    color: var(--dark-charcoal) !important;
    text-decoration: none;
}

.gold-button:hover::before {
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.navbar {
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background:var(--dark-charcoal);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand-link {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: all 0.3s ease;
    transform: scale(2);
    position: relative;
    top: 75px;
    left: 69px;
}

.navbar.scrolled .logo-img {
    height: 50px;
    max-width: 200px;
    transform: scale(1);
    top: 0;
    left: 0;
}

.brand-text {
    font-size: 2rem;
    font-weight: 400;
    color: var(--rich-brown);
    text-decoration: none;
    font-family: var(--font-extra);
}

/* Navigation Menu */
.navbar-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: var(--light-cream);
    display: inline-block;
    font-weight: 200;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--rich-brown) !important;
}

.navbar-nav .nav-link i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

/* Last Nav Link - uses CTA styling */
.navbar-nav-menu .nav-link.last-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-cream);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar-nav-menu .nav-link.last-link:hover {
    color: var(--dark-charcoal) !important;
}

.navbar-nav-menu .nav-link.last-link:hover::before {
    width: 100%;
}

/* Last link on scrolled navbar */
.navbar.scrolled .nav-link.last-link,
.navbar.scrolled .nav-link.last-link.gold-button {
    border-color: #242323;
    background-color: var(--rich-brown);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    color: var(--light-cream);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    padding: 0.5rem 2rem;
    border: 1px solid #242323;
}

.navbar.scrolled .nav-link.last-link::before,
.navbar.scrolled .nav-link.last-link.gold-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-cream);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar.scrolled .nav-link.last-link:hover,
.navbar.scrolled .nav-link.last-link.gold-button:hover {
    color: var(--dark-charcoal) !important;
    text-decoration: none;
}

.navbar.scrolled .nav-link.last-link:hover::before,
.navbar.scrolled .nav-link.last-link.gold-button:hover::before {
    width: 100%;
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: transparent;
    color: #242323;
    display: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2836, 35, 35, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}

.navbar-nav-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav-mobile .nav-link {
    color: #242323 !important;
}

.navbar-nav-mobile .nav-link.last-link {
    position: relative;
    border: 1px solid #242323;
    padding: 0.5rem 2.5rem;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    text-align: center;
    margin-top: 1rem;
}

.navbar-nav-mobile .nav-link.last-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--deep-brown);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar-nav-mobile .nav-link.last-link:hover {
    color: var(--light-cream) !important;
}

.navbar-nav-mobile .nav-link.last-link:hover::before {
    width: 100%;
}

.navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 1rem;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    justify-content: right;
    width: 100%;
}

.navbar-collapse.show .navbar-nav-mobile {
    display: flex;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--light-cream);
}

.hero-video-fullwidth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-fullwidth video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

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

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(112deg, rgb(0 0 0 / 55%) 0% 0%, rgba(30, 26, 21, 0.0) 60%);

}

.hero-content .container {
    position: relative;
    width: 100%;
}

/* Info Row - Positioned at bottom of hero section */
.hero-info-row {
    position: absolute;
    bottom: 45px;
    left: 0;
    right: 0;
    z-index: 15;
    padding: 2rem 0;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.info-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0rem;
    color: var(--light-cream);
    fill: var(--light-cream);
}

.info-text {
    font-family: var(--font-main);
    font-size: 0.90rem;
    line-height: 1.4;
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text:hover {
    color: var(--rich-brown);
    text-decoration: none;
}

a.info-text {
    display: block;
    text-decoration: none;
}

a.info-text:hover {
    text-decoration: none;
}

/* H1 - Center Aligned - PREMIUM MODERN */
.hero-title-center {
    position: absolute;
    transform: translateY(-50%);
    z-index: 12;
    text-align: center;
    width: 100%;
    margin: 0px 0px;
  
}

.hero-title-center h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--light-cream);
    margin: 0;
    line-height: 1.1;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title-center h1 .thin {
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

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

/* H2 - Above H1 - Center Aligned */
.hero-subtitle-top-right {
    position: absolute;
    top: 50%;
    transform: translateY(-350%);
    z-index: 12;
    text-align: center;
    width: 100%;
   
}

.hero-subtitle-top-right h2 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 200;
    margin: 0px 0px 15px 0px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeIn 1.5s ease-out 0.3s both;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* P - Below H1 - Center Aligned */
.hero-description-bottom-right {
    position: absolute;
    top: 50%;
    transform: translateY(70%);
    z-index: 12;
    text-align: center;
    width: 100%;
    
}

.hero-description-bottom-right p {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 200;
    color: var(--light-cream);
    line-height: 1.6;
    margin: 10px auto;
    animation: fadeIn 1.8s ease-out 0.6s both;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    max-width: 800px;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    display: inline-block;
    color: var(--light-cream);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-family: var(--font-extra);
    font-size: 5rem;
    font-weight: 400;
    color: var(--light-cream);
    margin: 0 0 1.5rem 0;
    line-height: 0.9;
}
.stat-label {
    font-size: 1.2rem;
    font-weight: 200;
    color: var(--light-cream);
    line-height: 1.4;
    margin: 0;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.16);
    transform: translateY(-2px);
    color: var(--light-cream);
}

.btn-tertiary {
    background: var(--light-cream);
    color: var(--dark-body-on-light);
    padding: 10px 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.btn-tertiary:hover {
    background: #EDE6DE;
    color: var(--dark-body-on-light);
}

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

/* ===== SECTIONS ===== */
/* Duplicate removed - using .section from line 54 */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO SECTION ===== */
/* Hero Section Styles - Premium Modern */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

/* Video na pełną szerokość */
.hero-video-fullwidth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


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

/* Video Overlay - ciemniejszy, bardziej premium */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 2;
    pointer-events: none;
}


.hero-content .container {
    position: relative;
    width: 100%;
}

/* Info Row - Positioned at bottom of hero section */
.hero-info-row {
    position: absolute;
    bottom: 45px;
    left: 0;
    right: 0;
    z-index: 15;

    padding: 2rem 0;
}


/* H1 - Left Aligned - PREMIUM MODERN */


.hero-title-center h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--light-cream);
    margin: 0;
    line-height: 1.1;

    animation: fadeInUp 1.2s ease-out;
}

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



@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}




/* CTA Button - Below Description */

/* Slider Indicator */
.hero-slider-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-figtree);
    font-size: 0.9rem;
    color: var(--light-cream);
}

.slider-number {
    font-weight: 600;
}

.slider-separator {
    font-weight: 300;
}

.slider-total {
    font-weight: 300;
}

/* Slider Title */
.hero-slider-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.slider-text {
    font-family: var(--font-figtree);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--light-cream);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--rich-brown);
    border-color: var(--rich-brown);
}

.slider-arrow i {
    color: var(--light-cream);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.slider-arrow:hover i {
    color: var(--light-cream);
}

/* Main Title */
.hero-title {
    font-family: var(--font-ballet);
    font-size: 5rem;
    font-weight: 400;
    color: var(--light-cream);
    margin: 0 0 1.5rem 0;
    line-height: 0.9;
    letter-spacing: -2px;
}

/* Description */
.hero-description-text {
    font-family: var(--font-figtree);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--light-cream);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.hero-description p {
    color: var(--light-cream);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: var(--font-figtree);
}

.hero-cta {
    color: var(--light-cream);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-figtree);
    border-bottom: 1px solid var(--light-cream);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    color: var(--rich-brown);
    border-bottom-color: var(--rich-brown);
}

.hero-stats {
    text-align: right;
}

.stat-item {
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--light-cream);
    margin: 0;
    line-height: 1;
    font-family: var(--font-figtree);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-cream);
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: var(--font-figtree);
}

.stat-title {
    font-size: 1rem;
    color: var(--light-cream);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--font-figtree);
}

.price-list p {
    color: var(--light-cream);
    margin: 0.25rem 0;
    font-size: 0.95rem;
    font-family: var(--font-figtree);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    display: inline-block;
    color: var(--light-cream);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Responsive Design - Premium */
@media (max-width: 1200px) {
    .hero-title-center h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 700px;
    }

    .hero-info-row {
        padding: 1.5rem 0;
    }

    .info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    
    .hero-title-center h1 {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
    
    .hero-subtitle-top-right h2 {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-description-bottom-right p {
        font-size: 1.1rem;
    }
    
    .hero-cta-button .cta-button {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-info-row {
        padding: 1rem 0;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-title-center,
    .hero-subtitle-top-right,
    .hero-description-bottom-right,
    .hero-cta-button {
        left: 4%;
        width: 85%;
    }
    
    .hero-title-center h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle-top-right h2 {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    
    .hero-description-bottom-right {
        max-width: 85%;
        bottom: 3rem;
    }
    
    .hero-description-bottom-right p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 550px;
    }

    .hero-info-row {
        padding: 0.8rem 0;
    }

    .info-item {
        gap: 0.6rem;
    }

    .info-icon {
        width: 25px;
        height: 25px;
    }

    .info-text {
        font-size: 0.8rem;
    }
    
    .hero-title-center h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-top-right {
        transform: translate(-50%, -200%);
    }
    
    .hero-subtitle-top-right h2 {
        font-size: 0.8rem;
    }

    
    .hero-description-bottom-right {
        bottom: 2rem;
    }
    
    .hero-description-bottom-right p {
        font-size: 0.95rem;
    }
}

/* ===== OFFER SECTION ===== */
/* Offer Section Styles */
.offer {
    background-color: var(--dark-charcoal);
    padding: 1rem 0 0rem 0;
    position: relative;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 1;
    pointer-events: none;
}

.offer > * {
    position: relative;
    z-index: 2;
}


.offer-header-accent {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.offer-accent-line {
    width: 60px;
    height: 2px;
    background: var(--rich-brown);
    flex-shrink: 0;
}

.offer-accent-text {
    color: var(--rich-brown);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 1rem;

}

.offer-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
    font-weight: 400;
    margin-right: 0.1rem;
}

/* Investment Model Elegant Accordion */
.investment-accordion {
    margin-top: 2rem;
    width: 100%;
}

.accordion-section {
    background: none;
    border-bottom: 1px solid rgba(244, 244, 244, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-section:last-child {
    border-bottom: none;
}

.accordion-section.active {
    background: none;
}

.accordion-section-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-main);
}

.accordion-section-header:hover {
    background: rgba(255, 255, 255, 0.02);
}


.section-title {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 200;
    color: var(--light-cream);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: left;
    flex: 1;
    transition: color 0.4s ease;
}

.accordion-section.active .section-title {
    color: var(--rich-brown);
}

.accordion-toggle {
    color: var(--light-cream);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.accordion-section.active .accordion-toggle {
    transform: rotate(0deg);
    opacity: 1;
}

.accordion-toggle:hover {
    opacity: 1;
}

.accordion-section-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.accordion-section.active .accordion-section-content {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
}

.section-inner {
    padding: 2rem 3rem;
}

.section-intro {
    color: var(--light-cream);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-family: var(--font-main);
    line-height: 1.6;
}

.section-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-item {
    display: grid;
    grid-template-columns: 1fr 1px 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 244, 244, 0.2);
    align-items: start;
}

.section-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.section-item::before {
    content: '';
    grid-column: 2;
    height: 100%;
    background: 1px solid rgba(244, 244, 244, 0.2);
    border-left: 1px solid rgba(244, 244, 244, 0.2);
}

.section-item h4 {
    color: var(--rich-brown);
    font-size: 1.5rem;
    font-weight: 200;
    margin: 0;
    font-family: var(--font-main);
    line-height: 1.3;
    grid-column: 1;
}

.section-item > p {
    grid-column: 3;
}

.section-item > a {
    grid-column: 3;
    justify-self: end;
}

.section-item p {
    color: var(--light-cream);
    font-family: var(--font-main);
    line-height: 1.7;
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    text-align: justify;
}

.read-more-link {
    color: var(--rich-brown);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 500;
    border-bottom: 1px solid var(--rich-brown);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}
.read-more-link:hover {
    color: var(--light-cream);
    border-bottom-color: var(--light-cream);
}

.roi-highlight {
    background: linear-gradient(135deg, rgba(154, 51, 45, 0.1), rgba(154, 51, 45, 0.05));
    padding: 2.5rem;
    border: 1px solid rgba(154, 51, 45, 0.3);
    text-align: center;
    margin-top: 1.5rem;
}

.roi-highlight h3 {
    color: var(--rich-brown);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

.roi-highlight p {
    color: var(--light-cream);
    margin-bottom: 1rem;
    font-family: var(--font-main);
    line-height: 1.7;
}

.roi-highlight .cta-button {
    margin-top: 1.5rem;
}
/* Responsive Investment Accordion */
@media (max-width: 768px) {
    .accordion-section-header {
        padding: 1.5rem 1.5rem;
    }
    
    .accordion-section.active .accordion-section-header {
        padding-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .accordion-toggle {
        font-size: 1.5rem;
    }
    
    .section-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .section-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-item::before {
        display: none;
    }
    
    .section-item h4 {
        font-size: 1rem;
        grid-column: 1;
        margin-bottom: 0.5rem;
    }
    
    .section-item > p,
    .section-item > a {
        grid-column: 1;
    }
    
    .roi-highlight {
        padding: 1.5rem;
    }
    
    .roi-highlight h3 {
        font-size: 2rem;
    }
}

/* Amenities Grid */
.offer-amenities {
    margin-bottom: 4rem;
}

.offer-amenities h3 {
    color: var(--light-cream);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-main);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.amenity-item h4 {
    color: var(--rich-brown);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-main);
}

.amenity-item p {
    color: var(--light-cream);
    font-size: 0.9rem;
    font-family: var(--font-main);
}

/* Standard Features */
.offer-standard {
    margin-bottom: 4rem;
}

.offer-standard h3 {
    color: var(--light-cream);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

.offer-standard > p {
    color: var(--light-cream);
    margin-bottom: 2rem;
    font-family: var(--font-main);
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item h4 {
    color: var(--rich-brown);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-main);
}

.feature-item p {
    color: var(--light-cream);
    font-size: 0.9rem;
    font-family: var(--font-main);
}

/* Apartments Table */
.offer-apartments {
    margin-bottom: 4rem;
}

.offer-apartments h3 {
    color: var(--light-cream);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-main);
}

.apartments-table {
    background: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 120px 100px 120px;
    background: rgba(154, 51, 45, 0.2);
    padding: 1rem;
    font-weight: 600;
    color: var(--light-cream);
    font-family: var(--font-main);
}

.table-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px 100px 120px;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.table-row:last-child {
    border-bottom: none;
}

.col-type {
    color: var(--rich-brown);
    font-weight: 600;
    font-family: var(--font-main);
}

.col-name {
    color: var(--light-cream);
    font-family: var(--font-main);
}

.col-view {
    color: var(--light-cream);
    font-family: var(--font-main);
}

.col-area {
    color: var(--light-cream);
    font-family: var(--font-main);
}

.col-price {
    color: var(--rich-brown);
    font-weight: 600;
    font-family: var(--font-main);
}

/* ROI Highlight */
.offer-roi {
    margin-bottom: 2rem;
}

.roi-highlight {
    background: linear-gradient(135deg, rgba(154, 51, 45, 0.1), rgba(154, 51, 45, 0.05));
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(154, 51, 45, 0.3);
    text-align: center;
}

.roi-highlight h3 {
    color: var(--rich-brown);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-main);
}

.roi-highlight p {
    color: var(--light-cream);
    margin-bottom: 1rem;
    font-family: var(--font-main);
    line-height: 1.6;
}

.roi-highlight .cta-button {
    margin-top: 2rem;
}

.offer-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--light-cream);
    margin: 0;
    line-height: 1.4;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

/* Bento Items */
.bento-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(109, 73, 49, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(109, 73, 49, 0.15);
    border-color: rgba(109, 73, 49, 0.25);
}

/* Bento Sizes */
.bento-large {
    grid-column: span 5;
}

.bento-medium {
    grid-column: span 4;
}

.bento-small {
    grid-column: span 3;
}

.bento-xs {
    grid-column: span 2;
}

/* Bento Content */
.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
}

/* Bento Label */
.bento-label {
    font-family: var(--font-main);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--deep-brown);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
    opacity: 0.6;
}

/* Bento Icon - inline with heading */
.bento-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 0.5rem;
    opacity: 0.4;
    vertical-align: middle;
    display: inline-block;
}

/* Icon color - deep brown */
.bento-item .bento-icon {
    filter: brightness(0) saturate(100%) invert(25%) sepia(15%) saturate(1500%) hue-rotate(345deg) brightness(95%) contrast(90%);
}

/* light-cream icon for highlight */
.bento-highlight .bento-icon-light-cream {
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

/* Bento Number */
.bento-number {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--deep-brown);
    line-height: 0.9;
    margin-bottom: 0.25rem;
}

.bento-content h3 {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(109, 73, 49, 0.2);
}

.bento-content p {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Price styling */
.bento-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.price-amount {
    font-family: var(--font-main);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--deep-brown);
    line-height: 1;
}

.price-currency {
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--deep-brown);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Highlight Item */
.bento-highlight {
    background: linear-gradient(135deg, var(--rich-brown), var(--deep-brown));
    color: var(--light-cream);
}

.bento-highlight .bento-label {
    color: var(--light-cream);
    opacity: 0.8;
}

.bento-highlight .bento-content h3 {
    color: var(--light-cream);
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(244, 244, 244, 0.2);
}

.bento-highlight .bento-content p {
    color: var(--light-cream);
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* CTA Button in Highlight */
.bento-highlight .cta-button {
    background: var(--light-cream);
    color: var(--deep-brown);
    border: 1px solid var(--light-cream);
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bento-highlight .cta-button::before {
    background-color: var(--deep-brown);
}

.bento-highlight .cta-button:hover {
    color: var(--light-cream) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Progress Bar Wrapper */
.progress-bar-wrapper {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(30, 26, 21, 0.3);
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-fill {
    height: 100%;
    background: var(--light-cream);
    position: relative;
    width: 0;
    opacity: 0;
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s ease;
    box-shadow: 0 0 15px rgba(244, 244, 244, 0.3);
}

.progress-fill.animate {
    width: 70%;
    opacity: 1;
}

/* Shimmer effect on progress bar */
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Progress Labels */
.progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.progress-investor,
.progress-operator {
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--deep-brown);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    position: relative;
}

.progress-investor::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--light-cream);
    box-shadow: 
        0 0 0 2px rgba(154, 51, 45, 0.3),
        0 0 15px rgba(244, 244, 244, 0.6),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.progress-operator {
    opacity: 0.65;
}

.progress-operator::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: rgba(244, 244, 244, 0.25);
    border: 2px solid rgba(244, 244, 244, 0.4);
    flex-shrink: 0;
}

/* Offer Responsive Design */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.2rem;
    }
    
    .bento-large {
        grid-column: span 4;
    }
    
    .bento-medium {
        grid-column: span 4;
    }
    
    .bento-small {
        grid-column: span 4;
    }
    
    .bento-xs {
        grid-column: span 4;
    }
}

@media (max-width: 992px) {
    .offer {
        padding: 6rem 0;
    }
    
    .offer-title {
        font-size: 2.5rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
    
    .bento-large {
        grid-column: span 6;
    }
    
    .bento-medium {
        grid-column: span 6;
    }
    
    .bento-small {
        grid-column: span 6;
    }
    
    .bento-xs {
        grid-column: span 6;
    }
    
    .bento-item {
        padding: 1.5rem;
    }
    
    .bento-content h3 {
        font-size: 1.2rem;
    }
    
    .bento-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .offer {
        padding: 5rem 0;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
    
    .bento-large {
        grid-column: span 4;
    }
    
    .bento-medium {
        grid-column: span 4;
    }
    
    .bento-small {
        grid-column: span 4;
    }
    
    .bento-xs {
        grid-column: span 4;
    }
    
    .bento-item {
        padding: 1.2rem;
    }
    
    .bento-content h3 {
        font-size: 1.1rem;
    }
    
    .bento-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .offer {
        padding: 4rem 0;
    }
    
    .offer-title {
        font-size: 1.8rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bento-large,
    .bento-medium,
    .bento-small,
    .bento-xs {
        grid-column: span 1;
    }
    
    .bento-item {
        padding: 1rem;
    }
    
    .bento-content h3 {
        font-size: 1rem;
    }
    
    .bento-content p {
        font-size: 0.8rem;
    }
}

/* ===== LETTER SECTION ===== */
/* Letter Section Styles - Premium Dark */
.letter {
    background-color: var(--dark-charcoal);
    padding: 4rem 0;
    position: relative;
}

.letter-content {
    color: var(--light-cream);
    z-index: 9;
}

/* Left Side - Title */
.letter-left {
    padding-right: 3rem;
}

/* Letter Header with Accent Line */
.letter-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.letter-accent-line {
    width: 40px;
    height: 2px;
    background: var(--rich-brown);
    flex-shrink: 0;
}

.letter-accent-text {
    color: var(--rich-brown);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Letter CTA Buttons - Same as nav-link.last-link */
.letter-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}


/* Hide mobile buttons on desktop */
.letter-cta-buttons-mobile {
    display: none;
}
/* Responsive CTA Buttons */
@media (max-width: 992px) {
    .letter-left .letter-cta-buttons {
        display: none;
    }
    
    .letter-cta-buttons-mobile {
        display: flex;
        margin-top: 2rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .letter-right {
        padding-left: 0;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .letter-cta-buttons,
    .letter-cta-buttons-mobile {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .letter-cta-buttons .cta-button,
    .letter-cta-buttons-mobile .cta-button {
        text-align: center;
        padding: 0.5rem 2rem !important;
    }
}

.letter-title {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 100;
    color: var(--light-cream);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.letter-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 100;
    color: var(--light-cream);
    margin: 0;
    line-height: 1.4;
}

/* Right Side - Content */
.letter-right {
    padding-left: 2rem;
}

/* Info Row */
.letter-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    margin-bottom: 100px;
}

.letter-support-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.75rem;
    border: 1px solid var(--rich-brown);
}

.letter-support-badge img {
    width: 70px;
    height: auto;
    flex-shrink: 0;
}

.letter-support-badge .badge-text {
    font-family: var(--font-main);
    color: var(--light-cream);
}

.letter-support-badge .badge-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.4rem;
}

.letter-support-badge strong {
    font-size: 1.05rem;
    font-weight: 400;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.info-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0rem;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(14deg) brightness(104%) contrast(101%);
}

.info-text {
    font-family: var(--font-main);
    font-size: 0.90rem;
    line-height: 1.4;
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text:hover {
    text-decoration: none;
}

a.info-text {
    display: block;
    text-decoration: none;
}

a.info-text:hover {
    text-decoration: none;
}


.info-text strong {
    font-weight: 600;
    color: var(--light-cream);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.info-text span {
    font-weight: 200;
    color: var(--light-cream);
    transition: color 0.3s ease;
}

.roi-link {
    color: var(--light-cream);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.roi-link:hover {
    color: var(--light-cream);
}

.letter-greeting {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 2rem;
}

/* Content */
.letter-text {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 300;
    color: var(--light-cream);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.letter-text p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.3rem;
    font-weight: 200;
    text-align: justify;
}

.letter-text p:last-child {
    margin-bottom: 0;
}

/* Signature */
.letter-signature {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.signature-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.signature-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% 6%;
}

.signature-details {
    display: flex;
    flex-direction: column;
}

.signature-name {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-cream);
    margin-bottom: 0rem;
}

.signature-position {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--light-cream);
    margin: 0;
}

/* Letter Responsive Design */
@media (max-width: 992px) {
    .letter-left {
        padding-right: 2rem;
        margin-bottom: 3rem;
    }
    
    .letter-right {
        padding-left: 0;
    }
    
    .letter-info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
 
    }
    
    .letter-support-badge {
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .letter {
        padding: 5rem 0;
    }
    
    .letter-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .letter-title {
        font-size: 2.5rem;
    }
    
    .letter-subtitle {
        font-size: 1.1rem;
    }
    
    .letter-greeting {
        font-size: 1rem;
    }
    
    .letter-text {
        font-size: 0.95rem;
    }
    
    .signature-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .letter {
        padding: 4rem 0;
    }
    
    .letter-title {
        font-size: 2rem;
    }
    
    .letter-subtitle {
        font-size: 1rem;
    }
    
    .letter-greeting {
        font-size: 0.95rem;
    }
    
    .letter-text {
        font-size: 0.9rem;
    }
    
    .signature-name {
        font-size: 1.1rem;
    }
    
    .signature-position {
        font-size: 0.85rem;
    }
    
    .letter-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;

    }
    
    .info-text {
        font-size: 0.8rem;
    }
    
    .info-icon {
        width: 20px;
        height: 20px;
    }
}


/* ===== SMOOTH SCROLLING ===== */

/* ===== LOADING ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVIGATION ENHANCEMENTS ===== */
.navbar-nav .last-link{
    background-color: var(--rich-brown);
}

/* ===== HERO SECTION ENHANCEMENTS ===== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* ===== BUTTON ENHANCEMENTS ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* ===== CARD HOVER EFFECTS ===== */
.service-card,
.portfolio-item,
.testimonial-item {
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.portfolio-item::before,
.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before,
.portfolio-item:hover::before,
.testimonial-item:hover::before {
    opacity: 0.05;
}

/* ===== FORM ENHANCEMENTS ===== */
.form-control {
    background-color: transparent!important;
    color: var(--light-cream)!important;
    width: 100%;
    padding: 12px 15px!important;;
    border: 1px solid rgba(244, 244, 244, 0.2)!important;
    font-weight: 200!important;
    background: transparent;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border-radius: 0!important;
}

.form-control::placeholder {
    color: var(--light-cream)!important;
    font-weight: 200!important;
}

.form-control:focus {
    border-color: rgba(244, 244, 244, 0.4)!important;
    background: rgba(244, 244, 244, 0.15)!important;
    box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.1)!important;
    outline: none!important;
}


/* ===== COUNTER ANIMATION ===== */
.counter {
    font-weight: 400;
    color: var(--primary-color);
}

/* ===== PARALLAX EFFECTS ===== */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--light-cream);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem !important;
    }
    
    .section {
        padding: 60px 0 !important;
    }
    
    .service-card,
    .portfolio-item,
    .testimonial-item {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 2rem !important;
    }
    
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .section {
        padding: 40px 0 !important;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem !important;
    }
    
    .navbar-brand {
        font-size: 1.25rem !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .contact-form,
    .btn {
        display: none !important;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 20px 0 !important;
    }
    
    .hero {
        min-height: auto !important;
        padding: 40px 0 !important;
    }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ===== DARK MODE SUPPORT (Optional) ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e9ecef;
        --text-light: #adb5bd;
        --bg-light: #212529;
    }
    
    .service-card,
    .portfolio-item,
    .testimonial-item {
        background: #343a40;
        color: var(--text-color);
    }
    
    .form-control {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-color);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.service-card,
.portfolio-item,
.testimonial-item,
.btn {
    will-change: transform;
}

/* ===== CUSTOM UTILITIES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-custom-hover:hover {
    box-shadow: var(--shadow-hover);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
}

/* ===== ANIMATION DELAYS ===== */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===== CUSTOM COMPONENTS ===== */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.bounce-in {
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== ADDITIONAL SECTIONS ===== */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    padding-left: 2rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--warm-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.about-stats {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--warm-accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--stone-text);
    margin: 0;
    font-weight: 500;
}
/* Apartments Section */
.apartments {
    padding: 6rem 0 0 0;
    background: var(--dark-charcoal);
}

.apartments-header {
    text-align: center;
    margin-bottom: 4rem;
}

.apartments-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.apartments-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.apartments-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--light-cream);
    font-weight: 400;
    line-height: 1.4;
}

/* Apartments Intro Split Layout */
.apartments-intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 4rem 0;
    min-height: 600px;
}

.intro-left {
    position: relative;
    overflow: hidden;
}

.intro-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.intro-right {
padding: 0rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 1px solid rgba(244, 244, 244, 0.2);
}



.intro-boxes {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(60px, auto);
    grid-auto-flow: dense;
    gap: 1rem;
}

.intro-box {
    padding: 2rem;
    border: 1px solid rgba(244, 244, 244, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Mozaikowe rozmiary - Tetris layout - bez wolnej przestrzeni */
.intro-box:nth-child(1) { 
    grid-column: span 4; 
    grid-row: span 2;  /* Budynek - krótki */
}
.intro-box:nth-child(2) { 
    grid-column: span 4; 
    grid-row: span 2;  /* Liczba jednostek - krótki */
}
.intro-box:nth-child(3) { 
    grid-column: span 4; 
    grid-row: span 2;  /* Powierzchnia - średni */
}
.intro-box:nth-child(4) { 
    grid-column: span 8; 
    grid-row: span 3;  /* Udogodnienia - długi tekst */
}
.intro-box:nth-child(5) { 
    grid-column: span 6; 
    grid-row: span 2;  /* Standard 5★ - średni */
}
.intro-box:nth-child(6) { 
    grid-column: span 6; 
    grid-row: span 2;  /* Wykończenie - krótki */
}
.intro-box:nth-child(7) { 
    grid-column: span 4; 
    grid-row: span 3;  /* Wyposażenie - krótki */
}
.intro-box:nth-child(8) { 
    grid-column: span 8; 
    grid-row: span 2;  /* Materiały - średni */
}
.intro-box:nth-child(9) { 
    grid-column: span 4; 
    grid-row: span 2;  /* Systemy smart - krótki */
}
.intro-box:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--rich-brown);
}
.box-content h4 {
    color: var(--light-cream);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    padding-bottom: 0.8rem;
    position: relative;
}

.box-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 1px;
    background: var(--light-cream);
}

.box-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.box-content p {
    color: var(--light-cream);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    margin-top: auto;
    font-family: var(--font-main);
    font-weight: 200;
}

.intro-section h4 {
    color: var(--light-cream);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    margin: 1.5rem 0 0.8rem 0;
}

.section-content p {
    color: var(--light-cream);
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.section-content strong {
    color: var(--light-cream);
    font-weight: 600;
}

.intro-divider {
    height: 1px;
    background: rgba(244, 244, 244, 0.2);
    margin: 2.5rem -3rem;
    position: relative;
}

/* Responsive - Apartments Intro Split */
@media (max-width: 992px) {
    .apartments-intro-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .intro-left {
        min-height: 400px;
    }
    
    .intro-boxes {
        gap: 0.7rem;
        grid-auto-flow: dense;
    }
    
    .intro-box {
        padding: 0.9rem 1.2rem;
    }
    
    .box-content h4 {
        font-size: 0.9rem;
    }
    
    .box-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .intro-boxes {
        gap: 0.6rem;
        grid-template-columns: 1fr; /* Single kolumna na mobile */
    }
    
    /* Wszystkie boxy pełna szerokość na mobile, automatyczna wysokość */
    .intro-box:nth-child(1),
    .intro-box:nth-child(2),
    .intro-box:nth-child(3),
    .intro-box:nth-child(4),
    .intro-box:nth-child(5),
    .intro-box:nth-child(6),
    .intro-box:nth-child(7),
    .intro-box:nth-child(8),
    .intro-box:nth-child(9) {
        grid-column: span 1;
        grid-row: auto;
    }
    
    .intro-box {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .box-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .box-content h4 {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
    
    .box-content p {
        font-size: 0.75rem;
    }
}

/* Intro - Rozwijane */
.apartments-intro {
    background: var(--light-cream);
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(109, 73, 49, 0.1);
}

.intro-toggle {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--deep-brown);
    color: var(--light-cream);
    border: none;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.intro-toggle:hover {
    background: var(--deep-brown);
}

.intro-toggle i {
    transition: transform 0.3s ease;
}

.intro-toggle.active i {
    transform: rotate(180deg);
}

.intro-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.intro-content.active {
    max-height: 2000px;
}

.intro-content .row {
    padding: 2rem;
}

.intro-content h3 {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin: 1.5rem 0 1rem 0;
}

.intro-content h3:first-child {
    margin-top: 0;
}

.intro-content p {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--deep-brown);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.intro-content ul {
    list-style: none;
    padding-left: 0;
}

.intro-content ul li {
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--deep-brown);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.intro-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--rich-brown);
    font-weight: bold;
}

/* Tabela Apartamentów */


.table-title {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 200;
    color: var(--light-cream);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    flex: 1;
    transition: color 0.4s ease;
    margin-bottom: 3rem;
}

.table-responsive {
    overflow-x: auto;
}

.apartments-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.apartments-table thead {

    color: var(--light-cream);
    text-align: center;
    border-bottom: 1px solid rgba(244, 244, 244, 0.2);
}

.apartments-table th {
    padding: 2rem 1rem;
    text-align: center;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.apartments-table tbody tr {
    border-bottom: 1px solid rgba(244, 244, 244, 0.2);
    transition: background 0.3s ease;
}

.apartments-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.apartments-table td {
    padding: 1rem;
    font-weight: 200;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--light-cream);
}

.btn-view-plan {
    display: inline-block;
    position: relative;
    padding: 0.5rem 2rem !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    background: var(--rich-brown);
    color: var(--light-cream);
    text-decoration: none;
    font-size: 0.80rem;
    font-weight: 200;
    border: none;
    text-transform: uppercase;
}

.btn-view-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-cream);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-view-plan:hover {
    color: var(--dark-charcoal) !important;
}

.btn-view-plan:hover::before {
    width: 100%;
}

.table-note {
    margin-top: 1.5rem;
    text-align: center;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--deep-brown);
}

.table-note a {
    color: var(--deep-brown);
    text-decoration: underline;
}

.table-note a:hover {
    color: var(--rich-brown);
}

/* ===== TABLE RESPONSIVE BREAKPOINTS ===== */

/* Large Tablets (992px and down) - Horizontal scroll */
@media (max-width: 992px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .apartments-table {
        min-width: 600px;
        font-size: 0.9rem;
    }
    
    .apartments-table th,
    .apartments-table td {
        padding: 1rem 0.75rem;
        white-space: nowrap;
    }
    
    .factor-item {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }
    
    .factor-item-header {
        order: 1;
    }
    
    .factor-item-content {
        order: 2;
    }
}

/* Tablets (768px and down) - Compact table */
@media (max-width: 768px) {
    .apartments {
        padding: 4rem 0;
    }
    
    .apartments-title {
        font-size: 2.5rem;
    }
    
    .apartments-title .first-letter {
        font-size: 4rem;
    }
    
    .intro-content .row {
        padding: 1.5rem;
    }
    
    .apartments-table {
        min-width: 500px;
        font-size: 0.8rem;
    }
    
    .apartments-table th,
    .apartments-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .apartments-table th:first-child,
    .apartments-table td:first-child {
        position: sticky;
        left: 0;
        background: rgba(57, 39, 30, 0.95);
        z-index: 1;
    }
}

/* Mobile (576px and down) - Row-based layout */
@media (max-width: 576px) {
    .table-responsive {
        overflow: visible;
    }
    

    
    .apartments-table-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .apartment-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
        transition: all 0.3s ease;
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        align-items: start;
    }
    
    .apartment-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-1px);
    }
    
    .apartment-card-header {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
    }
    
    .apartment-type {
        color: var(--rich-brown);
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .apartment-area {
        color: var(--light-cream);
        font-size: 0.8rem;
    }
    
    .apartment-details {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .apartment-detail {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.1rem 0;
    }
    
    .apartment-detail-label {
        color: var(--light-cream);
        font-size: 0.7rem;
        opacity: 0.8;
    }
    
    .apartment-detail-value {
        color: var(--light-cream);
        font-weight: 500;
        font-size: 0.75rem;
        text-align: right;
    }
    
    .apartment-pdf {
        grid-column: 3;
        grid-row: 2;
        text-align: center;
    }
    
    .apartment-pdf a {
        display: inline-block;
        background: var(--rich-brown);
        color: var(--dark-charcoal);
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.7rem;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .apartment-pdf a:hover {
        background: var(--light-cream);
        transform: translateY(-1px);
    }
    
    /* Kategoria i widok w osobnych komórkach */
    .apartment-category {
        grid-column: 2; /* legacy fix: była 3 kolumna */
        grid-row: auto;
        color: var(--light-cream);
        font-size: 0.75rem;
        text-align: right;
    }
    
    .apartment-view {
        grid-column: 2; /* legacy fix: była 4 kolumna */
        grid-row: auto;
        color: var(--light-cream);
        font-size: 0.75rem;
        text-align: right;
    }

    /* Legacy fix: stare karty (DS3+) mają pdf w kol. 3 – przenosimy do 2 */
    .apartment-pdf {
        grid-column: 2;
        grid-row: auto;
        text-align: right;
    }
    
    /* Nowy uporządkowany mobile layout */
    .apartment-code {
        color: var(--rich-brown);
        font-weight: 600;
        font-size: 1rem;
        text-align: center;
        padding: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .apartment-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .apartment-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.3rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .apartment-row:last-child {
        border-bottom: none;
    }
    
    .apartment-label {
        color: var(--light-cream);
        font-size: 0.8rem;
        opacity: 0.8;
        font-weight: 300;
    }
    
    .apartment-value {
        color: var(--light-cream);
        font-weight: 500;
        font-size: 0.85rem;
        text-align: right;
    }
    
    .apartment-value a {
        display: inline-block;
        background: var(--rich-brown);
        color: var(--dark-charcoal);
        padding: 0.4rem 1rem;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.8rem;
        transition: all 0.3s ease;
    }
    
    .apartment-value a:hover {
        background: var(--light-cream);
        transform: translateY(-1px);
    }
    
    /* Masonry grid - 2 kolumny na mobile */
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .masonry-item {
        width: 100%;
        height: 200px;
    }
    
    .masonry-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Extra Small Mobile (550px and down) - 2 columns masonry */
@media (max-width: 550px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .masonry-item {
        width: 100%;
        height: 180px;
    }
    
    .masonry-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Extra Small Mobile (480px and down) - Ultra compact rows */
@media (max-width: 480px) {
    .apartments-table-mobile {
        gap: 0.4rem;
        padding: 0.3rem;
    }
    
    .apartment-card {
        padding: 0.6rem;
        grid-template-columns: 50px 1fr auto auto;
        gap: 0.4rem;
    }
    
    .apartment-card-header {
        margin-bottom: 0.3rem;
        padding-bottom: 0.3rem;
    }
    
    .apartment-type {
        font-size: 0.8rem;
    }
    
    .apartment-area {
        font-size: 0.7rem;
    }
    
    .apartment-details {
        gap: 0.15rem;
        margin-bottom: 0.3rem;
    }
    
    .apartment-detail {
        padding: 0.1rem 0;
    }
    
    .apartment-detail-label {
        font-size: 0.65rem;
    }
    
    .apartment-detail-value {
        font-size: 0.7rem;
    }
    
    .apartment-category,
    .apartment-view {
        font-size: 0.7rem;
    }
    
    .apartment-pdf a {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
        border-radius: 12px;
    }
    
    /* Masonry grid - 2 kolumny na bardzo małych ekranach */
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }
    
    .masonry-item {
        height: 160px;
    }
}



/* Show mobile table on mobile devices */
@media (max-width: 576px) {
    .apartments-table-mobile {
        display: flex;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 4rem 0;
    background: var(--dark-charcoal);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--dark-charcoal) 0%, var(--dark-charcoal) 100%);
    z-index: 1;
    pointer-events: none;
}

.gallery > * {
    position: relative;
    z-index: 2;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-accent-line {
    width: 60px;
    height: 2px;
    background: var(--rich-brown);
}

.gallery-accent-text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--rich-brown);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-title {
    font-family: var(--font-main);
    font-size: 3.5rem;
    font-weight: 100;
    color: var(--light-cream);
    margin: 0 0 1rem 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
}
.gallery-title .first-letter {
    font-size: 4rem;
    font-weight: 100;
    color: var(--rich-brown);
    line-height: 1;
}

.gallery-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--light-cream);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}
/* Masonry Grid with JavaScript positioning */
.masonry-grid {
    background: transparent;
    max-width: 100%;
    padding: 6rem 1rem 0rem 1rem;
    margin: 0 auto;
    position: relative;
    width: 100%;
    min-height: 400px; /* Ensure minimum height for loading */
    gap: 10px; /* Reduced gap for tighter layout */
    margin: 5rem 0 0 0;
}

/* Dynamic masonry grid states */
.masonry-grid.loading {
    opacity: 0.7;
    pointer-events: none;
}

.masonry-grid.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Responsive grid classes */
.masonry-grid.grid-1 {
    grid-template-columns: 1fr !important;
}

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

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

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

.masonry-item {
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    position: absolute !important;
    height: 250px; /* Fixed height for all items */
    opacity: 0;
    transform: translateY(20px);
    animation: masonryItemFadeIn 0.6s ease forwards;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Lighter shadow */
}

@keyframes masonryItemFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for masonry items */
.masonry-item:nth-child(1) { animation-delay: 0.1s; }
.masonry-item:nth-child(2) { animation-delay: 0.2s; }
.masonry-item:nth-child(3) { animation-delay: 0.3s; }
.masonry-item:nth-child(4) { animation-delay: 0.4s; }
.masonry-item:nth-child(5) { animation-delay: 0.5s; }
.masonry-item:nth-child(6) { animation-delay: 0.6s; }
.masonry-item:nth-child(7) { animation-delay: 0.7s; }
.masonry-item:nth-child(8) { animation-delay: 0.8s; }
.masonry-item:nth-child(9) { animation-delay: 0.9s; }
.masonry-item:nth-child(10) { animation-delay: 1.0s; }
.masonry-item:nth-child(11) { animation-delay: 1.1s; }
.masonry-item:nth-child(12) { animation-delay: 1.2s; }

/* Większe elementy - 2 kolumny - Width handled by JavaScript */

/* Masonry item images */
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block; /* Remove any inline spacing */
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Fancybox link - trzyma rozmiar */
.masonry-item a {
    display: block;
    cursor: zoom-in;
    position: relative;
    overflow: visible;
    width: 100%;
    height: 100%;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    object-fit: cover;
    max-width: none;
}

/* Hover - zoom wychodzi poza kontener */
.masonry-item:hover {
    z-index: 100 !important;
}

.masonry-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}


/* Responsive Gallery */
@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 kolumny na średnich ekranach */
        gap: 16px;
    }
    
    .masonry-item--width2 {
        grid-column: span 2; /* Większe elementy - 2 kolumny */
    }
}

@media (max-width: 992px) {
   
    
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-title .first-letter {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .gallery {
        padding: 4rem 0;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-title .first-letter {
        font-size: 4rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
 
    
    .masonry-item--width2 {
        grid-column: span 1; /* Normalna szerokość na tabletach */
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        grid-template-columns: 1fr; /* 1 kolumna na mobile */
        gap: 10px;
        padding: 0 0.25rem;
    }
    
    .masonry-item--width2 {
        grid-column: span 1; /* Normalna szerokość na mobile */
    }
}

/* Apsara Section */
.apsara {
    padding: 6rem 0;
    background: var(--dark-charcoal);
}

.apsara-header {
    text-align: center;
    margin-bottom: 4rem;
}

.apsara-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.apsara-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.apsara-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--deep-brown);
    font-weight: 400;
}

/* Image */
.apsara-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(109, 73, 49, 0.2);
}

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

.image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.badge-roi,
.badge-success {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-main);
    font-weight: 400;
    text-align: center;
}

.badge-roi {
    background: var(--rich-brown);
    color: var(--light-cream);
    font-size: 1.3rem;
}

.badge-success {
    background: var(--light-cream);
    color: var(--deep-brown);
    font-size: 0.9rem;
}

/* Text */
.apsara-text p.lead {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--deep-brown);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.apsara-text p {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.apsara-text strong {
    color: var(--deep-brown);
    font-weight: 600;
}

/* Stats */
.apsara-stats {
    background: var(--light-cream);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(109, 73, 49, 0.1);
}

.stat-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(109, 73, 49, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row.highlight {
    background: var(--rich-brown);
    margin: 0 -2rem;
    padding: 1rem 2rem;
    margin-top: 1rem;
}

.stat-row.highlight .stat-label,
.stat-row.highlight .stat-value {
    color: var(--light-cream);
}

.stat-label {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-brown);
}

.stat-value {
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--deep-brown);
    line-height: 1.5;
}

.success-text {
    background: rgba(109, 73, 49, 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--rich-brown);
}

.final-text {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: var(--deep-brown) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .row {
        flex-direction: column;
    }
    
    .apsara-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .apsara {
        padding: 4rem 0;
    }
    
    .apsara-title {
        font-size: 2.5rem;
    }
    
    .apsara-title .first-letter {
        font-size: 4rem;
    }
    
    .image-badge {
        top: 1rem;
        right: 1rem;
    }
    
    .badge-roi {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
    
    .badge-success {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .stat-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .apsara-stats {
        padding: 1.5rem;
    }
    
    .stat-row.highlight {
        margin: 0 -1.5rem;
        padding: 1rem 1.5rem;
    }
}
.contact-info h3 {
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--body);
    margin-bottom: 2rem;
}

.contact-items {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}


.contact-details h4 {
    color: var(--light-cream);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--body);
    margin: 0;
}

.contact-details a {
    color: var(--warm-accent);
    text-decoration: none;
}



.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--light-cream);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: var(--body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--near-black);
    color: var(--body);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(154, 51, 45, 0.28);
    box-shadow: 0 6px 18px rgba(154, 51, 45, 0.08);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}
/* Developer Section */
.developer {
    padding: 6rem 0 1rem 0;
    background: var(--dark-charcoal);
    color: var(--light-cream);
}

.developer-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.developer-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.developer-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.developer-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    line-height: 2.3rem;
}

.developer-intro {
    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-cream);
    margin-bottom: 1rem;
    font-weight: 200;
}

.developer-intro-bold {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-cream);
}

/* Leader Section */
.developer-leader {
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 244, 244, 0.2);
}

.developer-leader .row {
    position: relative;
}


.developer-leader .col-lg-7 {
    position: relative;
    padding: 10rem 8rem;
}


.developer-leader .col-lg-5 {
    padding: 0;
    position: relative;
    z-index: 1;
}

.developer-leader .leader-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(97% + 0rem);
    height: 100%;
    z-index: 2;
}

.developer-leader .col-lg-7::after {
    content: '';
    position: absolute;
    right: -15px;
    top: -3rem;
    bottom: -3rem;
    width: 1px;
    background: rgba(244, 244, 244, 0.2);
}


#investment-partners .leader-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "im imVisual"
        "iwonaPhoto iwonaBio";
    grid-auto-rows: minmax(0, 1fr);
}

#investment-partners .leader-cell {
    border: 1px solid rgba(244, 244, 244, 0.08);
    display: flex;
    flex-direction: column;
}

#investment-partners .leader-im {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem;
}

#investment-partners .leader-im-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#investment-partners .leader-iwona-photo {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

#investment-partners .leader-iwona-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1;
}

#investment-partners .leader-iwona-bio {
    flex: 1;
    grid-area: iwonaBio;
    padding: 3rem 3.5rem;
}

#investment-partners .leader-iwona-bio .bio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

#investment-partners .leader-iwona-bio .bio-header .linkedin-link {
    font-size: 1.2rem;
    color: var(--light-cream);
    border: 1px solid rgba(244, 244, 244, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border 0.3s ease;
}

#investment-partners .leader-iwona-bio .bio-header .linkedin-link:hover {
    background: rgba(244, 244, 244, 0.2);
    border-color: rgba(244, 244, 244, 0.3);
}

#investment-partners .leader-iwona-bio h3 {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 1rem;
}

#investment-partners .leader-iwona-bio p.description {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 2rem;
    text-align: justify;
    line-height: 1.5;
}

#investment-partners .leader-iwona-bio p.position {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 2rem;
    line-height: 2rem;
}

#investment-partners .leader-iwona-bio ul {
    margin: 1.2rem 0 1.5rem 1.25rem;
}

#investment-partners .leader-iwona-bio ul li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

#investment-partners .leader-pillars h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: rgba(244, 244, 244, 0.75);
}

#investment-partners .leader-pillars ul {
    margin-left: 1.25rem;
}

#investment-partners .leader-pillars li {
    margin-bottom: 0.6rem;
}

#investment-partners .leader-pillars strong {
    color: var(--rich-brown);
}

.press-room {
    margin-top: 6rem;
}

.press-room-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.press-room-accent {
    width: 50px;
    height: 2px;
    background: var(--rich-brown);
    flex-shrink: 0;
}

.press-room-title {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 200;
    color: var(--light-cream);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.press-room-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--light-cream);
    margin: 1rem 0;
}

.press-room-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.press-track {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0;
}

.press-card {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(244, 244, 244, 0.2);
    text-decoration: none;
    color: var(--light-cream);
    scroll-snap-align: start;
    transition: transform 0.3s ease, border 0.3s ease;
    overflow: hidden;
    min-height: 240px;
}

.press-card-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.press-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.press-card:hover .press-card-thumbnail img {
    transform: scale(1.1);
}

.press-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem;
    flex: 1;
}

.press-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 244, 244, 0.35);
}

.press-source {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.65);
}

.press-card-title {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 200;
    line-height: 1.5;
    color: var(--light-cream);
    margin: 0;
}

.press-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rich-brown);
}

.press-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(244, 244, 244, 0.2);
    background: rgba(0, 0, 0, 0.35);
    color: var(--light-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border 0.3s ease;
    flex-shrink: 0;
    margin: 15px;
}

.press-nav:hover:not(:disabled) {
    background: rgba(244, 244, 244, 0.2);
    border-color: rgba(244, 244, 244, 0.4);
}

.press-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.press-nav span {
    font-size: 1.5rem;
    line-height: 1;
    position: relative;
    top: -2px;
    font-weight: 100;
}

@media (max-width: 992px) {
    .press-room {
        margin-top: 4rem;
    }

    .press-room-slider {
        gap: 0.5rem;
    }

    .press-track {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .press-room-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .press-card {
        flex: 0 0 260px;
        padding: 1.75rem;
    }

    .press-nav {
        display: none;
    }

    .press-track {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}

/* ============================================
   CAMBODIA RESOURCES SECTION (in Location)
   ============================================ */
.cambodia-resources {
    margin-top: 6rem;
    padding: 4rem 0;
}

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

.resources-accent {
    width: 50px;
    height: 2px;
    background: var(--dark-charcoal);
    flex-shrink: 0;
}

.resources-title {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 200;
    color: var(--dark-charcoal);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.resources-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--dark-charcoal);
    margin: 1rem 0;
}

.resources-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.resources-track {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0;
}

.resource-card {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(30, 26, 21, 0.15);
    text-decoration: none;
    color: var(--dark-charcoal);
    scroll-snap-align: start;
    transition: transform 0.3s ease, border 0.3s ease, background 0.3s ease;
    overflow: hidden;
    min-height: 200px;
    background: rgba(244, 244, 244, 0.5);
}

.resource-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 26, 21, 0.3);
    background: rgba(244, 244, 244, 0.7);
}

.resource-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem;
    flex: 1;
}

.resource-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.resource-source {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(30, 26, 21, 0.65);
}

.resource-card-title {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 200;
    line-height: 1.5;
    color: var(--dark-charcoal);
    margin: 0;
}

.resource-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-charcoal);
    opacity: 0.8;
}

.resources-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(30, 26, 21, 0.2);
    background: rgba(244, 244, 244, 0.5);
    color: var(--dark-charcoal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border 0.3s ease;
    flex-shrink: 0;
    margin: 15px;
}

.resources-nav:hover:not(:disabled) {
    background: rgba(244, 244, 244, 0.8);
    border-color: rgba(30, 26, 21, 0.4);
}

.resources-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.resources-nav span {
    font-size: 1.5rem;
    line-height: 1;
    position: relative;
    top: -2px;
    font-weight: 100;
}

@media (max-width: 992px) {
    .cambodia-resources {
        margin-top: 4rem;
    }

    .resources-slider {
        gap: 0.5rem;
    }

    .resources-track {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .resources-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .resource-card {
        flex: 0 0 260px;
        padding: 1.75rem;
    }

    .resources-nav {
        display: none;
    }

    .resources-track {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}

/* ============================================
   CAMBODIA SUPPORT SECTION
   ============================================ */
.cambodia-support {
    padding: 6rem 0 2rem 0;
    background: var(--dark-charcoal);
    position: relative;
}

.cambodia-support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cambodia-support-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cambodia-support-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.cambodia-emblem {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.cambodia-support-title {
    font-family: var(--font-main);
    font-size: 2.4rem;
    font-weight: 200;
    color: var(--light-cream);
    line-height: 1.3;
    margin: 0;
}

.cambodia-support-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cambodia-support-description p {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 200;
    line-height: 1.5;
    color: var(--light-cream);
    margin: 0;
    text-align: center
}

.cambodia-support-visual {
    position: relative;
    overflow: hidden;

}

.cambodia-support-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cambodia-support-visual:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .cambodia-support {
        padding: 6rem 0;
    }

    .cambodia-support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cambodia-emblem {
        width: 70px;
    }

    .cambodia-support-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cambodia-support {
        padding: 4rem 0;
    }

    .cambodia-support-content {
        gap: 2rem;
    }

    .cambodia-emblem {
        width: 60px;
    }

    .cambodia-support-title {
        font-size: 2rem;
    }

    .cambodia-support-description p {
        font-size: 1rem;
    }
}

#developer .developer-leader .leader-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: static;
    margin-bottom: 2rem;
    min-height: 0;
    margin: 2rem auto;
}

#developer .developer-leader .leader-photo img {
    object-position: 58% 10%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}


#developer .developer-leader .col-lg-7 {
    padding: 3rem 4rem;
}

.leader-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.leader-badge::before {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--rich-brown);
    flex-shrink: 0;
}

.leader-badge-text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rich-brown);
}

.leader-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 0.5rem;
}

.leader-subtitle {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: var(--light-cream);
    margin: 2rem 0;
    line-height: 2.2rem;
    text-align: justify;
    font-weight: 200;
}

.leader-text p.lead {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.1rem;
    color: var(--light-cream);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--rich-brown);
}
.leader-text p {
    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--light-cream);
    margin-bottom: 1.2rem;
    font-weight: 200;
    text-align: justify;
}

.leader-text strong {
    color: var(--rich-brown);
    font-weight: 600;
}

/* Leader Card */

.leader-card{
    height: 100%;

}

.leader-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leader-photo {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}
.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 10%;
}
.leader-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    width: 300px;
    height: 150px;
}
.leader-info-blur {
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: center;
}
.leader-info-blur h4 {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 100;
    color: var(--light-cream);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-info-blur p {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 100;
    color: var(--light-cream);
    margin: 0;
    opacity: 0.9;
}

.leader-card h4 {
    font-family: var(--font-main);
    color: var(--light-cream);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.leader-card .position {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--light-cream);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.credentials {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

.credentials li {
    font-family: var(--font-main);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--light-cream);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-weight: 200;
}

.credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--rich-brown);
    border-radius: 50%;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: #0077b5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    color: #005885;
}
.linkedin-link i {
    font-size: 1.2rem;
}

/* Partners Ecosystem */
.partners-ecosystem {
    margin-top: 3rem;
}

.ecosystem-title {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 200;
    color: var(--light-cream);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    flex: 1;
    transition: color 0.4s ease;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(244, 244, 244, 0.2);
}

.partner-card {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(244, 244, 244, 0.2);
    transition: all 0.3s ease;
}

.partner-card:last-child {
    border-right: none;
}

.partner-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin: 2rem auto 1rem;
}

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

.partner-card-text {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.partner-card h4 {
    font-family: var(--font-main);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.partner-role {
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--rich-brown);
    margin-bottom: 1rem;
    display: inline-block;
}

.partner-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.partner-description {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.partner-portfolio {
    font-family: var(--font-main);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.partner-link {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--deep-brown);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.partner-link:hover {
    color: var(--rich-brown);
}

/* Responsive */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .partner-card {
        border-right: none;
        border-bottom: 1px solid rgba(244, 244, 244, 0.2);
    }
    
    .partner-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .developer {
        padding: 4rem 0;
    }
    
    .developer-title {
        font-size: 2.5rem;
    }
    
    .developer-title .first-letter {
        font-size: 4rem;
    }
    
  
    
    .row {
        flex-direction: column-reverse;
    }
    
    .leader-card {
        margin-bottom: 2rem;
    }
    
    .developer-leader .col-lg-5 {
        padding: 0;
    }
    
    .developer-leader .leader-photo {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 300px;
     
    }
    
    .developer-leader .col-lg-7::after {
        display: none;
    }
}
/* Investor Package Section */
.investor-package {
    padding: 6rem 0;
    background: var(--dark-charcoal);
    color: var(--light-cream);
}

.package-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.package-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 1.5rem;
}

.package-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.package-lead {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.package-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-cream);
    font-weight: 200;
}

/* Package Items */
.package-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(244, 244, 244, 0.2);
    border-bottom: none;
}

.package-items-1 {
    grid-template-columns: 1fr;
}

.package-items-2 {
    grid-template-columns: 1fr 1fr;
    border-bottom: none;;
}

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

.package-items-4 {
    grid-template-columns: repeat(4, 1fr);
    border-top: none;;
}

.package-items-6 {
    grid-template-columns: repeat(3, 1fr);
    border-top: none;
}

.package-item {
    padding: 2rem;
    border-right: 1px solid rgba(244, 244, 244, 0.2);
    border-bottom: 1px solid rgba(244, 244, 244, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    min-height: 200px;
}

/* 3 kolumny - domyślne style */
.package-items-3 .package-item:nth-child(3n) {
    border-right: none;
}

/* 2 kolumny */
.package-items-2 .package-item:nth-child(2n) {
    border-right: none;
}

/* 4 kolumny */
.package-items-4 .package-item:nth-child(4n) {
    border-right: none;
}

/* 6 bloków - 3 kolumny */
.package-items-6 .package-item:nth-child(3n) {
    border-right: none;
}

/* 1 kolumna */
.package-items-1 .package-item {
    border-right: none;
}

.package-item:hover {
    background: rgba(244, 244, 244, 0.08);
}

.package-item-highlight {
    background: var(--rich-brown);
    border: 1px solid rgba(154, 51, 45, 0.3) !important;
}

.package-item-highlight:hover {
    background: var(--rich-brown);
    transform: none;
}



.package-item-full {
    grid-column: 1 / -1;
}


.item-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.item-features li {
    font-family: var(--font-main);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--light-cream);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.item-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--rich-brown);
    font-weight: bold;
}

.item-icon {
    width: 35px;
    height: 35px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(18%) saturate(920%) hue-rotate(347deg) brightness(86%) contrast(87%);
    transition: filter 0.3s ease;
}

.package-item:hover .item-icon img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(18%) saturate(920%) hue-rotate(347deg) brightness(96%) contrast(92%);
}

.item-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.package-item-image {
    padding: 0 !important;
    border-radius: 0 !important;
}

.item-image-full {
    width: 100%;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.item-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.item-text h3 {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: auto;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-text p {
    font-family: var(--font-main);
    font-size: 0.85rem;
    line-height: 1.3;
    color: var(--light-cream);
    margin: 0;
    margin-top: auto;
    font-weight: 200;   
    text-align: justify;
}

/* Package CTA Bottom */
.package-cta-bottom {
    grid-column: 1 / -1;
    padding: 5rem 2rem;
    border: 1px solid rgba(244, 244, 244, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.cta-text h3 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.cta-text p {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-cream);
    margin-bottom: 0;
    font-weight: 200;
}

/* Benefits */
.package-benefits {
    background: rgba(244, 244, 244, 0.05);
    padding: 3rem;
    border: 1px solid rgba(244, 244, 244, 0.1);
    text-align: left;
}

.package-benefits h3 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 1.5rem;
}

.package-benefits p {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.package-benefits strong {
    color: var(--rich-brown);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.benefits-list li {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-cream);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rich-brown);
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA */
.package-cta {
    background: rgba(244, 244, 244, 0.05);
    padding: 3rem;
    border: 1px solid rgba(244, 244, 244, 0.1);
    text-align: left;
}

.package-cta h3 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.package-cta > p {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-cream);
    margin-bottom: 2rem;
}

.package-form {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-main);
    font-size: 1rem;
    border: 2px solid rgba(109, 73, 49, 0.2);
    transition: all 0.3s ease;
}


.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
    flex-shrink: 0;
}

.form-checkbox label {
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--light-cream);
    line-height: 1.5;
    cursor: pointer;
    font-weight: 200;
}

/* MailerLite checkbox styles */
.ml-form-checkboxRow label.checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    padding-left: 0 !important;
    min-height: auto !important;
}

.ml-form-checkboxRow label.checkbox input[type="checkbox"] {
    position: relative !important;
    opacity: 1 !important;
    margin: 0.15rem 0 0 0 !important;
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
}

.ml-form-checkboxRow .label-description {
    margin: 0 !important;
    flex: 1 !important;
}

.ml-form-checkboxRow .label-description p {
    font-family: var(--font-main) !important;
    font-size: 0.95rem !important;
    color: var(--light-cream) !important;
    line-height: 1.5 !important;
    font-weight: 200 !important;
    margin: 0 !important;
}

.package-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--deep-brown);
    color: var(--light-cream);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--deep-brown);
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-cta .cta-button:hover {
    background: transparent;
    color: var(--deep-brown);
    transform: translateY(-2px);
}

.form-note {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--deep-brown);
    font-style: italic;
    margin-top: 1rem;
}
/* Responsive */
@media (max-width: 768px) {
    .investor-package {
        padding: 4rem 0;
    }
    
    .package-title {
        font-size: 2.5rem;
    }
    
    .package-title .first-letter {
        font-size: 4rem;
    }
    
    /* Investor Package: horyzontalny scroll kart, highlight pod spodem */
    #investor-package .package-items {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 0 1rem 0;
        border: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    #investor-package .package-items::-webkit-scrollbar { display: none; }
    #investor-package .package-items { -ms-overflow-style: none; scrollbar-width: none; }

    #investor-package .package-items .package-item {
        flex: 0 0 80%;
        min-width: 80%;
        border: 1px solid rgba(244, 244, 244, 0.2);
        scroll-snap-align: start;
    }

    #investor-package .package-item.package-item-highlight {
        margin-top: 1rem;
        width: 100%;
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    /* Apsara: layout specjalny na mobile */
    #apsara .package-items-2 {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    #apsara .package-items-2 .package-item {
        width: 100%;
    }
    
    /* 6 bloków z ikonami - przewijane poziomo jako jeden ciąg */
    #apsara .package-items-6,
    #apsara .apsara-icon-blocks {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 0 1rem 0;
        border: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    #apsara .package-items-6::-webkit-scrollbar,
    #apsara .apsara-icon-blocks::-webkit-scrollbar { display: none; }
    #apsara .package-items-6,
    #apsara .apsara-icon-blocks { -ms-overflow-style: none; scrollbar-width: none; }
    
    #apsara .package-items-6 .package-item,
    #apsara .apsara-icon-blocks .package-item {
        flex: 0 0 80%;
        min-width: 80%;
        border: 1px solid rgba(244, 244, 244, 0.2);
        scroll-snap-align: start;
    }
    
    /* Highlight - bez zmian */
    #apsara .package-items-1 {
        display: grid !important;
        grid-template-columns: 1fr;
    }
    
    #apsara .package-item-highlight {
        width: 100%;
    }
    
    .package-cta-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }
    
    /* Navigation Arrows for Package Items */
    .package-nav-arrows {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 2rem;
    }
    
    .package-nav-arrow {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--rich-brown);
        color: var(--light-cream);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .package-nav-arrow:hover:not(:disabled) {
        background: var(--light-cream);
        color: var(--dark-charcoal);
        transform: scale(1.1);
    }
    
    .package-nav-arrow:disabled {
        cursor: not-allowed;
    }
    
    .package-nav-arrow:active:not(:disabled) {
        transform: scale(0.95);
    }
}

@media (max-width: 576px) {
    .package-items:not(.apsara-icon-blocks) {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .package-items-2:not(.apsara-icon-blocks),
    .package-items-3:not(.apsara-icon-blocks),
    .package-items-4:not(.apsara-icon-blocks) {
        grid-template-columns: 1fr;
    }
    
    .package-item {
        border-right: none;
    }
    
 
    
    .item-image {
        height: 150px;
    }
    
    .item-image-full {
        min-height: 150px;
    }
    
    /* Apsara blocks pozostają scrollowalne */
    #apsara .apsara-icon-blocks {
        display: flex !important;
    }
    
    .package-cta-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .package-benefits,
    .package-cta {
        padding: 2rem;
    }
}

/* Location Section */
.location {
    padding: 6rem 0 0 0;
    background: var(--light-cream);
}

.location-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.location-text-side {
    padding: 6rem;
    background: var(--light-cream);
}

.location-map-side {
    position: relative;
    background: #e0e0e0;
}

.location-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-map iframe {
    filter: grayscale(100%);
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}
.location-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.location-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.location-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--dark-charcoal);
    font-weight: 300;
    line-height: 1.6;
}

/* Text */
.location-text p.lead {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    line-height: 1.8rem;
    margin-bottom: 2rem;
    text-align: justify;
}

.location-text h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-charcoal);
    margin: 2rem 0 1rem 0;
}

.location-text p {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.3rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.location-text strong {
    color: var(--deep-brown);
    font-weight: 600;
}

.location-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.location-list li {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6rem;
    color: var(--dark-charcoal);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-weight: 200;
}

.location-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--rich-brown);
    border-radius: 50%;
}


.cta-text {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light-cream);
    margin: 0;
    max-width: 500px;
}

/* Map */
.location-map {
    margin-bottom: 2rem;
}
.location-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--deep-brown);
    display: flex;
    align-items: flex-start;
    justify-content: left;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.3rem;
    color: var(--rich-brown);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin-bottom: 0.25rem;
}

.stat-text span {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--deep-brown);
}

/* Responsive */
@media (max-width: 992px) {
    .row {
        flex-direction: column-reverse;
    }
    
 
}

@media (max-width: 768px) {
    
    
    .location-title {
        font-size: 2.5rem;
    }
    
    .location-title .first-letter {
        font-size: 4rem;
    }
    
    .location-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .location-text-side {
        padding: 3rem 2rem;
    }
    
    .location-map-side {
        min-height: 400px;
    }
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-actions {
    display: flex;
    gap: 1rem;
}

.portfolio-client,
.portfolio-tech {
    font-size: 0.9rem;
    color: var(--stone-text);
    margin-bottom: 0.5rem;
}

.portfolio-tech {
    font-weight: 500;
}

.portfolio-stats {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.portfolio-stats .stat {
    background: rgba(154, 51, 45, 0.1);
    color: var(--warm-accent);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(154, 51, 45, 0.2);
}
/* Profit Split Section */
.profit-split {
    padding: 6rem 0;
    background: var(--light-cream);
}

.profit-header {
    text-align: left;
    margin-bottom: 4rem;
}

/* Profit Header Accent */
.profit-header-accent {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profit-accent-line {
    width: 60px;
    height: 2px;
    background: var(--rich-brown);
}

.profit-accent-text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rich-brown);
}

.profit-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.profit-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.profit-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--dart-charcoal);
    font-weight: 200;
}

/* Chart Section */
.profit-chart-section {
    margin: 3rem 0;
}

.profit-chart-wrapper {
    max-width: 350px;
    margin: 0 auto;
}

.profit-chart {
    max-width: 350px;
    margin: 0 auto 2rem;
    display: block;
}

.chart-segment {
    fill: none;
    stroke-width: 25;
    transition: stroke-width 0.3s ease;
    stroke-linecap: round;
}

.chart-segment.investor {
    stroke: var(--rich-brown);
}

.chart-segment.operator {
    stroke: var(--dark-charcoal);
}

.chart-main {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 400;
    fill: var(--dark-charcoal);
}

.chart-sub {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    fill: var(--dark-charcoal);
}

/* Bar Chart Styles */
.profit-bar-chart {
    margin: 0 auto;
}

.bar-container {
    display: flex;
    height: 80px;
    position: relative;
}

.bar-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.investor-bar {
    width: 70%;
    background: linear-gradient(
        90deg,
        var(--rich-brown) 0%,
        #c75b55 50%,
        var(--rich-brown) 100%
    );
    background-size: 200% 100%;
    animation: gradient-slide-right 6s linear infinite;
    box-shadow: 0 15px 30px rgba(154, 51, 45, 0.4);
}

.operator-bar {
    width: 30%;
    background: var(--dark-charcoal);
    box-shadow: 0 15px 30px rgba(22, 22, 22, 0.4);
}

@keyframes gradient-slide-right {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.bar-percentage {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--light-cream);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bar-labels {
    display: flex;
    margin-top: 1.5rem;
}

.bar-label {
    display: flex;
    justify-content: center;
    align-items: center;
}

.investor-label {
    width: 70%;
}

.operator-label {
    width: 30%;
}

.bar-label span {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Wrapper */
.profit-content-wrapper {
    margin: 0 auto;
}

/* Introduction */
.profit-intro {
    margin-bottom: 3rem;
}

.profit-intro h3 {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.profit-intro p {
    font-family: var(--font-main);
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--dark-charcoal);
    margin-bottom: 0;
    max-width: 600px;
    font-weight: 200;
}

/* Steps Grid - Block Style */
.profit-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 2rem 0;
}

.profit-step-box {
    position: relative;
    padding: 2rem;
    border: 1px solid var(--rich-brown);
    border-right: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.profit-step-box:last-child {
    border-right: 1px solid var(--rich-brown);
}

.profit-step-box:hover {
    border-color: var(--rich-brown);
    background: rgba(255, 255, 255, 0.8);
}

.step-box-number {
    width: 50px;
    height: 50px;
    /* background: var(--rich-brown); */
    color: var(--deep-brown);
    display: flex
;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 4.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    margin-left: -5px;
}

.profit-step-box h4 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 2rem;
}

.profit-step-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--dark-charcoal);
    margin-top: auto;
    text-align: justify;
}

.profit-step-box strong {
    color: var(--deep-brown);
    font-weight: 200;
}

/* Benefits Intro */
.profit-benefits-intro {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.profit-benefits-intro p {
    font-family: var(--font-main);
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--dark-charcoal);
    margin-bottom: 0;
    max-width: 600px;
}

/* Benefits - Block Style */
.profit-benefits {
    border: 1px solid var(--rich-brown);
    transition: all 0.3s ease;
}

.profit-benefits .benefit-item:hover {
    border-color: var(--rich-brown);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

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

.benefit-item {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--rich-brown);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 200px;
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item h5 {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: auto;
    padding-bottom: 2rem;
}

.benefit-item p {
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: var(--dark-charcoal);
    line-height: 1.3;
    margin: 0;
    margin-top: auto;
}

/* Animation */
@keyframes drawCircle {
    from {
        stroke-dashoffset: 502.4;
    }
}

.chart-segment.investor.animate {
    animation: drawCircle 2s ease-out forwards;
}
/* Responsive */
@media (max-width: 992px) {
    .row {
        flex-direction: column-reverse;
    }
    
    .profit-chart-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .profit-split {
        padding: 4rem 0;
    }
    
    .profit-title {
        font-size: 2.5rem;
    }
    
    .profit-title .first-letter {
        font-size: 4rem;
    }
    
    .profit-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .profit-step-box {
        border-right: 1px solid var(--rich-brown);
        border-bottom: none;
    }
    
    .profit-step-box:last-child {
        border-bottom: 1px solid var(--rich-brown);
    }
    
    .profit-intro p {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        border-right: none;
        border-bottom: 1px solid var(--rich-brown);
    }
    
    .benefit-item:last-child {
        border-bottom: none;
    }
    
    .profit-chart {
        max-width: 280px;
    }
    
    .chart-legend {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}
/* Q&A Section - Investment Accordion Style */
.qa {
    padding: 6rem 0 2rem 0;
    background: var(--dark-charcoal);
}

.qa-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.qa-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.qa-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.qa-subtitle {

    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 2;
    color: var(--light-cream);
    margin-bottom: 1rem;
    font-weight: 200;
    width: 100%;
    margin: 0 auto;

}

/* Q&A List - Investment Accordion Style */
.qa-list {
    max-width: 1000px;
    margin: 0 auto;
}

.qa-item {
    border-bottom: 1px solid rgba(244, 244, 244, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-item:last-child {
    border-bottom: none;
}


.qa-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s 
cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 200;
    color: var(--light-cream);
    margin: 0;
}

.qa-question:hover {
    background: rgba(255, 255, 255, 0.02);
}


.qa-question .accordion-toggle {
    color: var(--rich-brown);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    flex-shrink: 0;
    margin-left: 1rem;
    display: inline-block;
}

.qa-item.active .qa-question .accordion-toggle {
    opacity: 1;
    transform: rotate(0deg);
}

.qa-question .accordion-toggle:hover {
    opacity: 1;
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    padding: 0rem 3rem 0rem 2rem;
}

.qa-answer.active {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
    padding: 0rem 3rem 0rem 2rem;
}

.qa-answer p {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-cream);
    margin: 0;
    font-weight: 200;
}

.qa-answer p:last-child {
    margin-bottom: 2rem;
}
/* Responsive Q&A */
@media (max-width: 768px) {
    .qa {
        padding: 4rem 0;
    }
    
    .qa-title {
        font-size: 2.5rem;
    }
    
    .qa-title .first-letter {
        font-size: 4rem;
    }
    
    .qa-question {
        padding: 1.5rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .qa-question .accordion-toggle {
        font-size: 1.5rem;
    }
    
    .qa-answer {
        padding: 0 1.5rem;
    }
    
    .qa-answer.active {
        padding: 0rem 1.5rem 1.5rem 1.5rem;
    }
    
    .qa-answer p {
        margin: 0 0 1rem 0;
        font-size: 0.95rem;
    }
    
    .qa-answer p:last-child {
        margin-bottom: 1.5rem;
    }
}
/* ROI Explanation Section */
.roi-explanation {
    padding: 6rem 0;
    background: var(--dark-charcoal);
    color: var(--light-cream);
    position: relative;
    overflow: hidden;
}

.roi-explanation::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('assets/images/5.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.roi-explanation::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        135deg,
        var(--dark-charcoal) 0%,
        var(--dark-charcoal) 40%,
        rgba(22, 22, 22, 0.95) 60%,
        rgba(22, 22, 22, 0.7) 80%,
        transparent 100%
    );
    z-index: 1;
}

.roi-explanation > * {
    position: relative;
    z-index: 2;
}

.roi-header {
    text-align: left;
    margin-bottom: 4rem;
}

/* ROI Header Accent */
.roi-header-accent {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.roi-accent-line {
    width: 60px;
    height: 2px;
    background: var(--rich-brown);
}

.roi-accent-text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rich-brown);
}
.roi-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 1rem;

}

.roi-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.roi-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 200;
    color: var(--light-cream);
    margin: 0;
    line-height: 1.4;
}

/* Main Stats */
.roi-main-stat {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
    position: relative;
}

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

.stat-number {
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 200;
    background: linear-gradient(
        90deg, 
        var(--light-cream) 0%, 
        var(--rich-brown) 25%,
        var(--light-cream) 50%,
        var(--rich-brown) 75%,
        var(--light-cream) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1;
    text-align: left;
    animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stat-label {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--light-cream);
    line-height: 1.4;
    text-align: left;
}

/* ROI Text & Model Container */
.roi-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 3rem;
    margin: 0 auto 4rem;
    align-items: start;
}

.roi-content-wrapper::before {
    content: '';
    grid-column: 2;
    height: 100%;
    background: rgba(244, 244, 244, 0.2);
    border-left: 1px solid rgba(244, 244, 244, 0.2);
}

/* ROI Text */
.roi-text {
    grid-column: 1;
}

.roi-text-lead-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.roi-text-accent-line {
    width: 2px;
    height: auto;
    background: var(--rich-brown);
    flex-shrink: 0;
    align-self: stretch;
}

.roi-text p {
    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-cream);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.roi-text p.lead {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.1rem;
    color: var(--light-cream);
    margin-bottom: 0;
    text-align: justify;
}

.roi-text strong {
    color: var(--rich-brown);
    font-weight: 600;
}

/* ROI Model */
.roi-model {
    grid-column: 3;
    position: relative;
    padding: 3rem;
    text-align: left;
    height: fit-content;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(244, 244, 244, 0.01);
    border: 1px solid;
    border-image: linear-gradient(
        90deg, 
        var(--light-cream) 0%, 
        var(--rich-brown) 25%,
        var(--light-cream) 50%,
        var(--rich-brown) 75%,
        var(--light-cream) 100%
    ) 1;
    border-image-slice: 1;
    animation: border-gradient-shift 6s ease-in-out infinite;
}

@keyframes border-gradient-shift {
    0%, 100% {
        border-image: linear-gradient(
            90deg, 
            var(--light-cream) 0%, 
            var(--rich-brown) 25%,
            var(--light-cream) 50%,
            var(--rich-brown) 75%,
            var(--light-cream) 100%
        ) 1;
    }
    50% {
        border-image: linear-gradient(
            90deg, 
            var(--rich-brown) 0%, 
            var(--light-cream) 25%,
            var(--rich-brown) 50%,
            var(--light-cream) 75%,
            var(--rich-brown) 100%
        ) 1;
    }
}

.roi-model > * {
    position: relative;
    z-index: 1;
}

.roi-model h3 {
    font-family: var(--font-main);
    font-size: 1.3 rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 1.5rem;
}

.roi-model p {
    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-cream);
    margin-bottom: 2rem;
    text-align: justify;
}


/* Responsive */
@media (max-width: 992px) {
    .roi-main-stat {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .roi-main-stat {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .roi-explanation {
        padding: 4rem 0;
    }
    
    .roi-title {
        font-size: 2.5rem;
    }
    
    .roi-title .first-letter {
        font-size: 4rem;
    }
    
    .roi-main-stat {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .roi-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .roi-content-wrapper::before {
        display: none;
    }
    
    .roi-text {
        grid-column: 1;
    }
    
    .roi-model {
        grid-column: 1;
        padding: 2rem;
    }
    
    .roi-text p {
        font-size: 1rem;
    }
    
    .roi-text p.lead {
        font-size: 1.15rem;
    }
    
    .roi-model h3 {
        font-size: 1.5rem;
    }
    
    .roi-model p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .roi-main-stat {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}
.service-highlight {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(154, 51, 45, 0.1);
    text-align: center;
    border: 1px solid rgba(154, 51, 45, 0.2);
}

.highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--warm-accent);
    margin-bottom: 0.25rem;
}

.highlight-text {
    font-size: 0.85rem;
    color: var(--muted-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Testimonials Investors Section */
.testimonials-investors {
    padding: 0rem 0 6rem 0;
    background: var(--dark-charcoal);
    position: relative;
    overflow: hidden;
}

.testimonials-investors::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('assets/images/stone.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.testimonials-investors::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(175deg, var(--dark-charcoal) 0%, var(--dark-charcoal) 40%, rgba(22, 22, 22, 0.95) 60%, rgba(22, 22, 22, 0.7) 80%, transparent 100%);
    z-index: 0;
}

.testimonials-investors > * {
    position: relative;
    z-index: 1;
}

.testimonials-header-accent {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonials-accent-line {
    width: 60px;
    height: 2px;
    background: var(--rich-brown);
}

.testimonials-accent-text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rich-brown);
}

.testimonials-header {
    text-align: left;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.testimonials-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.testimonials-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-cream);
    max-width: 800px;
    font-weight: 200;
}

/* Featured Testimonial */
.featured-testimonial {
    margin-bottom: 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border: 1px solid rgba(244, 244, 244, 0.2);
}

.testimonial-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: var(--dark-charcoal);
}

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

.testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--deep-brown);
}

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

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-cream);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--rich-brown);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder i:hover {
    transform: scale(1.1);
}

.video-placeholder p {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 500;
}
.investor-badge {
    display: inline-block;
    background: var(--rich-brown);
    color: var(--light-cream);
    padding: 0.5rem 1rem;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.featured-text {
    max-width: 700px;
    padding: 40px 50px;
}

.investor-name {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.investor-title,
.investor-company {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--light-cream);
    margin-bottom: 1rem;
    font-weight: 200;
    display: inline;
}

.investor-title::after {
    content: ' | ';
    margin: 0 0.5rem;
    color: var(--rich-brown);
}

.investor-quote {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 200;
    font-style: italic;
    color: var(--light-cream);
    border-left: 2px solid var(--rich-brown);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.investor-description {
    font-family: var(--font-main);
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 200;
    color: var(--light-cream);
    text-align: justify;
}

/* Investors Grid */
.investors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(244, 244, 244, 0.2);
    border-bottom: none;
}

.investor-card {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(244, 244, 244, 0.2);
    transition: all 0.3s ease;
}

.investor-card:last-child {
    border-right: none;
}

.investor-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--dark-charcoal);
    margin: 2rem auto 1.5rem;
}

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

.investor-card-text {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.investor-icon {
    width: 80px;
    height: 80px;
    background: var(--deep-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.investor-icon i {
    font-size: 3rem;
    color: var(--rich-brown);
}

.card-investor-name {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--light-cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.investor-meta {
    margin-bottom: 1rem;
    white-space: nowrap;
}

.card-investor-title,
.card-investor-company {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: var(--light-cream);
    font-weight: 200;
    display: inline-block;
}

.card-investor-title::after {
    content: ' | ';
    margin: 0 0.5rem;
    color: var(--rich-brown);
}

.card-quote {
    color: var(--light-cream);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;

}

/* Footer */
.testimonials-footer {
    text-align: center;
    padding: 4rem;
    border: 1px solid rgba(244, 244, 244, 0.2);
}

.testimonials-footer p {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 2rem;
}


/* Responsive */
@media (max-width: 992px) {
    .investors-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .investor-card {
        border-right: none;
        border-bottom: 1px solid rgba(244, 244, 244, 0.2);
    }
    
    .investor-card:last-child {
        border-bottom: none;
    }
    
    .featured-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials-investors {
        padding: 4rem 0;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-title .first-letter {
        font-size: 4rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
 
}
.testimonial-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--warm-accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.testimonial-content p {
    color: var(--body);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.author-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.author-info h4 {
    color: var(--subhead);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--muted-body);
    margin: 0;
    font-size: 0.9rem;
}

.author-info .company {
    color: var(--warm-accent);
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}
/* Timeline Section */
.timeline {
    padding: 6rem 0;
    background: var(--light-cream);
}

.timeline-header-accent {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timeline-accent-line {
    width: 60px;
    height: 2px;
    background: var(--rich-brown);
}

.timeline-accent-text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rich-brown);
}

.timeline-header {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 100%;
}

.timeline-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.timeline-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.timeline-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--dark-charcoal);
    font-weight: 200;
    line-height: 1.6;
}

/* Timeline Accordion */
.timeline-accordion {
    margin-top: 4rem;
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-accordion::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--rich-brown);
}

.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline-card:last-child {
    border-bottom: none;
}
.timeline-card.active {
    background: rgba(255, 255, 255, 0.05);
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--light-cream);
    border: 2px solid var(--rich-brown);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.timeline-card.active::before {
    background: var(--rich-brown);
    box-shadow: 0 0 0 4px rgba(154, 51, 45, 0.2);
}

.timeline-card-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem 2rem 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-main);
}

.timeline-card-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.timeline-card:hover::before {
    background: var(--rich-brown);
    box-shadow: 0 0 0 4px rgba(154, 51, 45, 0.2);
}

.timeline-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
}

.timeline-card-title {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--dark-charcoal);
    margin: 0;
    line-height: 1.2;
    text-align: left;
    transition: color 0.4s ease;
}

.timeline-card.active .timeline-card-title {
    color: var(--rich-brown);
}

.timeline-period {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(22, 22, 22, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.timeline-card.active .timeline-period {
    color: var(--rich-brown);
}

.timeline-period-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-status-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-status-dot {
    width: 8px;
    height: 8px;
    background: var(--rich-brown);
    border-radius: 50%;
    animation: blink 3s ease-in-out infinite;
}

.timeline-status-blink {
    font-size: 0.8rem;
    color: var(--rich-brown);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: blink 3s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.timeline-toggle-icon {
    color: var(--rich-brown);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.timeline-card.active .timeline-toggle-icon {
    transform: rotate(0deg);
    opacity: 1;
}

.timeline-card-header:hover .timeline-toggle-icon {
    opacity: 1;
}

.timeline-card-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    padding: 0 3rem;
}

.timeline-card.active .timeline-card-content {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
    padding: 0rem 3rem 2rem 2.5rem;
}

.timeline-inner {
    padding-top: 0;
}

.timeline-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-inner li {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 200;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-inner li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rich-brown);
    font-weight: bold;
}

.timeline-inner li:last-child {
    margin-bottom: 0;
}

/* Old timeline styles - keeping for fallback */
.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--deep-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--light-cream);
    z-index: 2;
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--rich-brown);
}

.timeline-content {
    background: var(--light-cream);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(109, 73, 49, 0.1);
}

.timeline-content h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.timeline-content ul li {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--deep-brown);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.timeline-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--rich-brown);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline {
        padding: 4rem 0;
    }
    
    .timeline-title {
        font-size: 2.5rem;
    }
    
    .timeline-title .first-letter {
        font-size: 4rem;
    }
    
    .timeline-container::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 100px;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) .timeline-period,
    .timeline-item:nth-child(even) .timeline-content {
        order: initial;
        text-align: left !important;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon i {
        font-size: 1.5rem;
    }
    
    .timeline-period {
        text-align: left !important;
    }
}
/* Why ROI Section */
.why-roi {
    padding: 6rem 0 0 0;
    background: var(--light-cream);
}

.why-roi-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

/* Why ROI Header Accent */
.why-roi-header-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-roi-accent-line {
    width: 60px;
    height: 2px;
    background: var(--rich-brown);
}

.why-roi-accent-text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rich-brown);
}

.why-roi-title {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 200;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.why-roi-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.why-roi-subtitle {
    font-family: var(--font-main);
    font-size: 1.3rem;
    color: var(--deep-brown);
    font-weight: 200;
}

/* ROI Factors Grid - Accordion Style */
.roi-factors-grid {
    margin-top: 4rem;
    width: 100%;
    margin-bottom: 4rem;
    background-color: var(--light-cream);
}

.roi-factor-card {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--rich-brown);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.roi-factor-card:last-child {
    border-bottom: none;
}

.roi-factor-card.active {
    background: rgba(255, 255, 255, 0.05);
}

.factor-card-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-main);
}

.factor-card-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.factor-card-title {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 200;
    color: var(--dark-charcoal);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: left;
    flex: 1;
    transition: color 0.4s ease;
}



.factor-toggle-icon {
    color: var(--rich-brown);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.roi-factor-card.active .factor-toggle-icon {
    transform: rotate(0deg);
    opacity: 1;
}

.factor-card-header:hover .factor-toggle-icon {
    opacity: 1;
}

.factor-card-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.roi-factor-card.active .factor-card-content {
    max-height: 2000px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    overflow: visible !important;
}
.factor-inner {
    padding: 0rem 3rem 5rem 3rem;
}
.factor-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.factor-item {
    display: grid;
    grid-template-columns: 1fr 1px 1.5fr;
    gap: 1.5rem 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 244, 244, 1);
    align-items: start;
}

.factor-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.factor-item::before {
    content: '';
    grid-column: 2;
    height: 100%;
    background: 1px solid rgba(244, 244, 244, 0.2);
    border-left: 1px solid rgba(244, 244, 244, 0.2);
}

.factor-item h4 {

    font-size: 1.5rem;
    font-weight: 200;
    margin: 0;
    font-family: var(--font-main);
    line-height: 1.3;
    grid-column: 1;
}

.factor-item > p {
    grid-column: 3;
}

.factor-item p {
    color: var(--dark-charcoal);
    font-family: var(--font-main);
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    text-align: justify;
}

.factor-item p:last-child {
    margin-bottom: 0;
}

.factor-item strong {
    font-weight: 600;
}

.factor-note {
    font-size: 0.85rem !important;
    font-style: italic;
    color: var(--rich-brown) !important;
    opacity: 0.9;
}

.roi-factor-item {
    background: var(--light-cream);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(109, 73, 49, 0.1);
    transition: all 0.3s ease;
}

.roi-factor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(109, 73, 49, 0.15);
}

.factor-toggle {
    width: 100%;
    padding: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: background 0.3s ease;
}

.factor-toggle:hover {
    background: var(--light-cream);
}

.factor-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.factor-icon {
    width: 60px;
    height: 60px;
    background: var(--deep-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.factor-icon i {
    font-size: 1.5rem;
    color: var(--rich-brown);
}

.factor-toggle h3 {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin: 0;
    line-height: 1.3;
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--deep-brown);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.factor-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.factor-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.factor-content.active {
    max-height: 1000px;
}

.factor-text {
    padding: 0 2rem 2rem 2rem;
}

.factor-text h4 {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.factor-text p {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.factor-text strong {
    color: var(--deep-brown);
    font-weight: 600;
}

.factor-link {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--rich-brown);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.factor-link:hover {
    color: var(--deep-brown);
    transform: translateX(5px);
}

/* Summary Section - Full Width with Background */
.why-roi-summary {
    position: relative;
    padding: 6rem 0;
    margin-top: 4rem;
    overflow: hidden;
}

.why-roi-summary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('assets/images/stone.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    transform: rotate(180deg);
}

.why-roi-summary .container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.summary-headline {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.summary-headline strong {
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--dark-charcoal);
    display: block;
    margin-bottom: 0rem;
}

.summary-description {
    font-family: var(--font-main);
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark-charcoal);
    margin: 0;
    opacity: 0.85;
    font-weight: 200;
}

/* Responsive */
@media (max-width: 992px) {
    .factor-card-header {
        padding: 2rem;
    }
    
    .factor-card-content {
        padding: 0 2rem;
    }
    
    .roi-factor-card.active .factor-card-content {
        padding: 0 2rem 2rem;
    }

    .factor-inner{
        padding: 0rem 2rem 3rem 0.5rem;
    }

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

@media (max-width: 768px) {
    .why-roi {
        padding: 4rem 0;
    }
    
    .why-roi-title {
        font-size: 2.5rem;
    }
    
    .why-roi-title .first-letter {
        font-size: 4rem;
    }
    
    .why-roi-subtitle {
        font-size: 1.1rem;
    }
    
    .factor-card-header {
        padding: 1.5rem;
    }
    
    .factor-card-title {
        font-size: 1.3rem;
    }
    
    .factor-card-content {
        padding: 0 1.5rem;
    }
    
    .roi-factor-card.active .factor-card-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .factor-toggle {
        padding: 1.5rem;
    }
    
    .factor-icon {
        width: 50px;
        height: 50px;
    }
    
    .factor-icon i {
        font-size: 1.2rem;
    }
    
    .factor-toggle h3 {
        font-size: 1.1rem;
    }
    
    .factor-text {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .why-roi-summary {
        padding: 4rem 0;
    }
    
    .summary-headline {
        font-size: 1.5rem;
    }
    
    .summary-description {
        font-size: 1rem;
    }
}
/* All styles from remaining section files will be added here */

/* ===== NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}
.navbar {
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}


.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand-link {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: all 0.3s ease;
    transform: scale(2);
    position: relative;
    top: 75px;
    left: 69px;
}


/* Logo scaling on scroll */
.navbar.scrolled .logo-img {
    height: 50px;
    max-width: 200px;
    transform: scale(1);
    top: 0;
    left: 0;
}

.brand-text {

    font-size: 2rem;
    font-weight: 400;
    color: var(--light-cream);
}

/* Navigation Menu */
.navbar-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: var(--light-cream);
    display: inline-block;
    font-weight: 200;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--rich-brown) !important;
}


.navbar-nav .nav-link i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

/* CTA Button - Special Styling */
.cta-button {
    position: relative;
    padding: 0.5rem 2rem !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #242323;
    font-size: 0.80rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--deep-brown);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover {
    color: var(--light-cream) !important;
    text-decoration: none;
}

.cta-button:hover::before {
    width: 100%;
}

/* Universal Gold Button */
.gold-button {
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem!important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    background: var(--rich-brown);
    color: var(--light-cream);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 200;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.gold-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-cream);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.gold-button:hover {
    color: var(--dark-charcoal) !important;
    text-decoration: none;
}

.gold-button:hover::before {
    width: 100%;
}

/* Contact Form 7 - Basic Form Styles */
.contact-form .wpcf7-form p {
    margin-bottom: 20px;
}

.contact-form .wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-main);
    font-weight: 200;
    color: var(--light-cream);
    font-size: 0.95rem;
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(244, 244, 244, 0.2);
    font-weight: 200;
    background: transparent;
    color: var(--light-cream);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form .wpcf7-form input::placeholder,
.contact-form .wpcf7-form textarea::placeholder {
    color: var(--light-cream);
}

.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .wpcf7-form textarea:focus {
    outline: none;
    border-color: rgba(244, 244, 244, 0.4);
    background: rgba(244, 244, 244, 0.15);
    box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.1);
}

.contact-form .wpcf7-response-output {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--light-cream);
}

.contact-form .wpcf7-mail-sent-ok {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.contact-form .wpcf7-validation-errors,
.contact-form .wpcf7-mail-sent-ng {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.contact-form .wpcf7-not-valid-tip {
    color: #e74c3c;
    font-family: var(--font-main);
    font-size: 0.9rem;
    margin-top: 5px;
}

.contact-form .wpcf7-not-valid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.1) !important;
}

/* Contact Form 7 Submit Button - Nuclear Option */
.contact-form .wpcf7-form .wpcf7-submit,
.contact-form .wpcf7-form input[type="submit"],
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-submit,
.contact-form .wpcf7-form input.wpcf7-submit,
.contact-form .wpcf7-form input[type="submit"][class*="wpcf7"],
.contact-form .wpcf7-form input[class*="wpcf7-submit"],
.contact-form .wpcf7-form input[class*="submit"] {
    position: relative !important;
    display: inline-block !important;
    padding: 1rem 2rem !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: color 0.4s ease !important;
    color: var(--light-cream) !important;
    text-decoration: none !important;
    font-family: var(--font-main) !important;
    font-weight: 200 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    border-width: 0 !important;
    cursor: pointer !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    outline: none !important;
}

.contact-form .wpcf7-form .wpcf7-submit::before,
.contact-form .wpcf7-form input[type="submit"]::before,
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-submit::before,
.contact-form .wpcf7-form input.wpcf7-submit::before,
.contact-form .wpcf7-form input[type="submit"][class*="wpcf7"]::before,
.contact-form .wpcf7-form input[class*="wpcf7-submit"]::before,
.contact-form .wpcf7-form input[class*="submit"]::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 100% !important;
    background-color: var(--light-cream) !important;
    background: var(--light-cream) !important;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: -1 !important;
    opacity: 1 !important;
}

.contact-form .wpcf7-form .wpcf7-submit:hover,
.contact-form .wpcf7-form input[type="submit"]:hover,
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-submit:hover,
.contact-form .wpcf7-form input.wpcf7-submit:hover,
.contact-form .wpcf7-form input[type="submit"][class*="wpcf7"]:hover,
.contact-form .wpcf7-form input[class*="wpcf7-submit"]:hover,
.contact-form .wpcf7-form input[class*="submit"]:hover {
    color: var(--dark-charcoal)!important;
    text-decoration: none!important;
    background: var(--light-cream);
}

.contact-form .wpcf7-form .wpcf7-submit:hover::before,
.contact-form .wpcf7-form input[type="submit"]:hover::before,
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-submit:hover::before,
.contact-form .wpcf7-form input.wpcf7-submit:hover::before,
.contact-form .wpcf7-form input[type="submit"][class*="wpcf7"]:hover::before,
.contact-form .wpcf7-form input[class*="wpcf7-submit"]:hover::before,
.contact-form .wpcf7-form input[class*="submit"]:hover::before {
    width: 100% !important;
}

.wpcf7-list-item{
    margin: 0;
}


/* CTA Button variations */
.cta-button.hero-cta {
    background: var(--rich-brown);
    color: var(--light-cream);
    border: 1px solid var(--rich-brown);
    box-shadow: 0 4px 15px rgba(154, 51, 45, 0.3);
}

.cta-button.hero-cta::before {
    background-color: var(--deep-brown);
}

.cta-button.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 51, 45, 0.4);
}

/* CTA Button as button element */

/* Last Nav Link - uses CTA styling */

.navbar-nav-menu .nav-link.last-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-cream);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar-nav-menu .nav-link.last-link:hover {
    color: var(--dark-charcoal) !important;
}

.navbar-nav-menu .nav-link.last-link:hover::before {
    width: 100%;
}

/* Last link on scrolled navbar */
.navbar.scrolled .nav-link.last-link,
.navbar.scrolled .nav-link.last-link.gold-button {
    border-color: #242323;
    background-color: var(--rich-brown);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    color: var(--light-cream);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 200;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.5rem 2rem;
    display: inline-block;
}

.navbar.scrolled .nav-link.last-link::before,
.navbar.scrolled .nav-link.last-link.gold-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-cream);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar.scrolled .nav-link.last-link:hover,
.navbar.scrolled .nav-link.last-link.gold-button:hover {
    color: var(--dark-charcoal) !important;
    text-decoration: none;
}

.navbar.scrolled .nav-link.last-link:hover::before,
.navbar.scrolled .nav-link.last-link.gold-button:hover::before {
    width: 100%;
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: transparent;
    color: #242323;
    display: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2836, 35, 35, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}

.navbar-nav-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav-mobile .nav-link {
    color: #242323 !important;
}
.navbar-nav-mobile .nav-link.last-link {
    position: relative;
    border: 1px solid #242323;
    padding: 0.5rem 2.5rem;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    text-align: center;
    margin-top: 1rem;
}
.navbar-nav-mobile .nav-link.last-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--deep-brown);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar-nav-mobile .nav-link.last-link:hover {
    color: var(--light-cream) !important;
}

.navbar-nav-mobile .nav-link.last-link:hover::before {
    width: 100%;
}

/* Responsive Design - removed duplicate navbar styles */

.navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 1rem;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    justify-content: right;
    width: 100%;
}

@media (max-width: 576px) {
    .logo-img {
        height: 60px;
    }
    
    .navbar.scrolled .logo-img {
        height: 40px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    color: var(--light-cream);
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}


.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--headline);
    font-weight: 400;
 
    text-shadow: none;
    animation: fadeInUp 1s ease;
}

.hero .meta,
.hero .kicker {
    color: var(--body);
    opacity: 0.9;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.4s both;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--cream-surface);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: var(--dark-body-on-light);
}

.about-text p {
    color: var(--stone-text);
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    box-shadow: var(--shadow-card);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--near-black);
}

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

.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: none;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-cream);
    box-shadow: none;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--subhead);
}

.service-card p {
    color: var(--body);
    margin-bottom: 1.5rem;
}

/* ===== DARK BAND SECTION ===== */
.band--dark {
    background: linear-gradient(180deg, var(--primary-charcoal) 0%, #2B221D 100%);
    box-shadow: 0 24px 48px rgba(7,7,7,0.6);
}

.band--dark p,
.band--dark .body {
    color: var(--subhead);
}

/* ===== APEX SHOWCASE BLOCK ===== */
.apex,
.apex-block,
.floating-structure {
    background: transparent;
    box-shadow: var(--shadow-hero);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    background: var(--cream-surface);
}

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

.portfolio-item {
    background: var(--light-cream);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-body-on-light);
}

.portfolio-content p {
    color: var(--stone-text);
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--near-black);
}

.testimonials-slider {
    margin-top: 3rem;
}

.testimonial-item {
    text-align: center;
    padding: 2rem;
}

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
    color: #333;
}

.testimonial-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--dark-charcoal);
    color: var(--light-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: var(--light-cream);
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}



.contact-form {
    padding: 2.5rem;
}

/* Contact Info Grid */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: var(--light-cream);
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--light-cream);
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--light-cream);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: var(--light-cream);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-details a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-main);
}

.contact-details a:hover {
    color: var(--rich-brown);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(244, 244, 244, 0.2);
    background: transparent;
    color: var(--body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(154, 51, 45, 0.28);
    box-shadow: 0 6px 18px rgba(154, 51, 45, 0.08);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--near-black);
    color: var(--light-cream);
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.8;
    color: var(--muted-body);
}

.footer-widget h3,
.footer-widget h4 {
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.footer-widget p {
    color: var(--muted-body);
    margin-bottom: 1rem;
}

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

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

.footer-menu a {
    color: var(--muted-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--deep-brown);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-cream);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--deep-brown);
    color: var(--light-cream);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    width: 16px;
    font-size: 1.2rem;
    position: relative;
    top: -8px;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* ===== ACTION ICONS ===== */
.action-icon,
.controls .icon {
    fill: var(--light-cream);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: var(--transition-smooth);
}

.action-icon:hover,
.controls .icon:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}


/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

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

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.align-center { align-items: center; }

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    /* Timeline Mobile */
    .timeline-title {
        font-size: 1.8rem;
    }
    
    .timeline-subtitle {
        font-size: 1rem;
    }
    
    .timeline-card-header {
        padding: 1.5rem 1.5rem 1.5rem 2rem;
    }
    
    .timeline-card-title {
        font-size: 1.1rem;
    }
    
    .timeline-period {
        font-size: 0.75rem;
    }
    
    .timeline-toggle-icon {
        font-size: 1.5rem;
    }
    
    .timeline-card.active .timeline-card-content {
        padding: 0rem 1.5rem 1.5rem 2rem;
    }
    
    .timeline-inner li {
        font-size: 0.9rem;
    }
}


/* Offer Section Icons */
.section-item-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
    grid-column: 1;
}

.section-item-icon {
    width: 23px;
    height: 32px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    fill: var(--light-cream) !important;
    color: var(--light-cream) !important;
    filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(1200%) hue-rotate(
        32deg) brightness(100%) contrast(100%);
}

.section-item-icon svg {
    fill: var(--light-cream) !important;
}

.section-item-icon path {
    fill: var(--light-cream) !important;
}

.section-item:hover .section-item-icon {
    opacity: 1;
}

.section-item-header h4 {
    margin: 0;

    color: var(--text-color);
    flex: 1;
    font-weight: 200;
    margin: 0;
    font-family: var(--font-main);
    line-height: 1.3;
}

/* Responsive Offer Icons */
@media (max-width: 768px) {
    .section-item-header {
        gap: 12px;
    }
    
    .section-item-icon {
        width: 20px;
        height: 28px;
        margin-top: -5px;
    }
    
    .section-item-header h4 {
        font-size: 1rem;
    }
}

/* Why ROI Section Icons */
.factor-item-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
    grid-column: 1;
}

.factor-item-icon {
    width: 23px;
    height: 32px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.factor-item:hover .factor-item-icon {
    opacity: 1;
}

/* First factor item active */
.factor-item:first-child .factor-item-icon {
    opacity: 1;
}



/* Responsive Why ROI Icons */
@media (max-width: 768px) {
    .factor-item-header {
        gap: 12px;
    }
    
    .factor-item-icon {
        width: 30px;
        height: 30px;
    }
    
    .factor-item-header h4 {
        font-size: 0.95rem;
    }
}
/* Footer Contact Styles */
.site-footer {
    background: var(--deep-brown);
    color: var(--light-cream);
    padding: 6rem 0 0;
    position: relative;
    scroll-margin-top: 100px;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(180deg, var(--dark-charcoal) 0%, var(--deep-brown) 100%);
    z-index: 1;
}

/* Footer Header */
.footer-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;

}

.footer-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 200;
    color: var(--light-cream);
    margin-bottom: 1rem;
}

.footer-title .first-letter {
    font-family: var(--font-extra);
    font-size: 4rem;
}

.footer-description {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-cream);
    margin-bottom: 1rem;
    font-weight: 300;
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
}

.footer-description-highlight {
    font-family: var(--font-main);
    font-size: 1.5rem;
    display: block;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-content {
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid rgba(244, 244, 244, 0.2);
    position: relative;
    z-index: 2;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(244, 244, 244, 0.2);
    position: relative;
    z-index: 2;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--light-cream);
    font-weight: 300;
    text-transform: uppercase;
    padding: 2rem 0;
}

.footer-content h3 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-cream);
}

.footer-content p {
    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--light-cream);
}

.contact-items {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}



.contact-details h4 {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light-cream);
}

.contact-details p {
    margin: 0;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--light-cream);
}

.contact-details a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-main);
}

.contact-details a:hover {
    color: var(--rich-brown);
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title-center h1 {
        font-size: 4.5rem;
    }
    
    .hero-subtitle-top-right h2 {
        font-size: 1.3rem;
    }
    
    .hero-description-bottom-right p {
        font-size: 1.4rem;
    }
}

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .hero-title-center h1 {
        font-size: 4rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .masonry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium Devices (992px and up) */
@media (min-width: 992px) {
    .navbar-nav-menu {
        display: flex;
    }
    
    .navbar-toggler {
        display: none;
    }
}

/* Small Devices (768px and up) */
@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    .hero {
        min-height: 800px;
    }
    
    .info-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    #investment-partners .developer-leader .col-lg-7{
        padding: 6rem 5rem;
    }

    

    #developer .leader-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "overview"
            "visual"
            "portrait"
            "bio";
        padding: 2rem;
    }

    #developer .leader-cell {
        padding: 2rem;
    }
}

/* Extra Small Devices (576px and up) */
@media (min-width: 576px) {
    .container {
        padding: 0 20px;
    }
}
/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Large Tablets and Small Desktops (992px and down) */
@media (max-width: 992px) {
    /* Navbar styles moved to main mobile breakpoint */
    
    .hero {
        min-height: 700px;
    }
    
    .hero-info-row {
        padding: 1.5rem 0;
    }
    
    .info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        position: relative;
        top: -35px;
    }

 
    
    .hero-title-center h1 {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
    
    .hero-subtitle-top-right h2 {
        font-size: 1rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }

    
    .hero-description-bottom-right p {
        font-size: 1.1rem;
    }
    
    .offer {
        padding: 6rem 0;
    }
    
    .letter-left {
        padding-right: 2rem;
    }
    
    .letter-info-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apartments-intro-split {
        grid-template-columns: 1fr;
    }
    
    
    .row {
        flex-direction: column;
    }
    
    .apsara {
        padding: 4rem 0;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .developer {
        padding: 4rem 0;
    }
    
    .investor-package {
        padding: 4rem 0;
    }
    
    .location {
        padding: 4rem 0;
    }
    
    .profit-split {
        padding: 4rem 0;
    }
    
    .roi-main-stat {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investors-grid {
        grid-template-columns: 1fr;
    }
    
    .factor-card-header {
        padding: 2rem;
    }

    .letter-right{
        border-left: none!important;
    }

    .intro-right{
        padding: 1rem;
    }
}
/* Tablets (768px and down) */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-info-row {
        padding: 1rem 0;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-title-center,
    .hero-subtitle-top-right,
    .hero-description-bottom-right {
        position: static;
        transform: none;
    }
    
    .hero-title-center h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle-top-right h2 {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    

    
    .hero-description-bottom-right p {
        font-size: 1rem;
    }
    
    .accordion-section-header {
        padding: 1.5rem 1.5rem;
    }
    
    .offer {
        padding: 5rem 0;
    }
    
    .letter-cta-buttons {
        flex-direction: column;
    }
    
    .letter {
        padding: 5rem 0;
    }
    
    .letter-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .letter-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(244, 244, 244, 0.2);
        padding-top: 2rem;
    }
    
    .letter-info-row {
        grid-template-columns: 1fr;
    }
    
    .letter-support-badge {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
    }
    
    .intro-boxes {
        gap: 0.6rem;
    }
    
    .apartments {
        padding: 4rem 0;
    }
    

    .apsara {
        padding: 4rem 0;
    }
    
    .developer {
        padding: 4rem 0;
    }
    
    .investor-package {
        padding: 4rem 0;
    }
    
    .location {
        padding: 4rem 0 0 0;
    }
    
    .profit-split {
        padding: 4rem 0;
    }
    
    .qa {
        padding: 4rem 0;
    }
    
    .roi-explanation {
        padding: 4rem 0;
    }
    
    .testimonials-investors {
        padding: 4rem 0;
    }
    
    .timeline {
        padding: 4rem 0;
    }
    
    .why-roi {
        padding: 4rem 0 0 0;
    }
    
    .site-footer {
        padding: 4rem 0 0;
    }
    
    .section-items {
        grid-template-columns: 1fr;
    }
    
    .accordion-section-header {
        padding: 1.5rem 2rem;
    }
    
    .section-inner {
        padding: 1.5rem 2rem;
    }
    
    .footer-content {
        padding: 2rem 1.5rem;
    }
    
    .footer-title {
        font-size: 2.5rem;
    }
    
    .footer-title .first-letter {
        font-size: 4rem;
    }
    
    .contact-form .wpcf7-form {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .timeline-title {
        font-size: 2rem;
    }
    
    .timeline-subtitle {
        font-size: 1rem;
    }
    
    .timeline-card {
        margin-bottom: 1rem;
    }
    
    .timeline-card-header {
        padding: 1.5rem;
    }
    
    .timeline-card-title {
        font-size: 1rem;
    }
    
    .timeline-period {
        font-size: 0.9rem;
    }
    
    .timeline-card-content {
        padding: 1.5rem;
    }
    
    .section-item-header {
        gap: 12px;
    }
    
    .section-item-icon {
        width: 20px;
        height: 28px;
    }
    
    .section-item-header h4 {
        font-size: 1rem;
    }
    
    .factor-item-header {
        gap: 12px;
    }
    
    .factor-item-icon {
        width: 20px;
        height: 28px;
    }
    
    .factor-item-header h4 {
        font-size: 1rem;
    }

    .hero-content{
        top: 0rem;
        align-items: flex-start;
        padding-top: 10rem;
    }

   
}

/* Mobile Devices (576px and down) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .hero {
        min-height: 550px;
    }
    
    .hero-title-center h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle-top-right h2 {
        font-size: 0.8rem;
    }
    
    .hero-description-bottom-right p {
        font-size: 0.9rem;
    }
    
    .offer {
        padding: 4rem 0;
    }
    
    .letter {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .intro-boxes {
        gap: 0.6rem;
    }
    
    
    .roi-main-stat {
        grid-template-columns: 1fr;
    }
    
    .accordion-section-header {
        padding: 1rem 1.5rem;
    }
    
    .section-inner {
        padding: 1rem 1.5rem;
    }
    
    .footer-content {
        padding: 1.5rem 1rem;
    }
    
    .footer-title {
        font-size: 2rem;
    }
    
    .footer-title .first-letter {
        font-size: 4rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title-center h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-top-right h2 {
        font-size: 0.7rem;
    }
    
    .hero-description-bottom-right p {
        font-size: 0.8rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .footer-title .first-letter {
        font-size: 4rem;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-info-row {
        bottom: 20px;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-video-fullwidth,
    .scroll-indicator,
    .cta-button,
    .gold-button {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        height: auto;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* ===== MOBILE BURGER MENU ===== */
/* Mobile Burger Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 30px;
    height: 1px;
    background-color: var(--light-cream);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(57, 39, 30, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.mobile-nav-link {
    color: var(--light-cream) !important;
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}
.mobile-nav-link:hover {
    color: var(--rich-brown) !important;
}
.mobile-nav-link.last-link {
    background-color: var(--rich-brown);
    color: var(--dark-charcoal) !important;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link.last-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--light-cream);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.mobile-nav-link.last-link:hover {
    color: var(--dark-charcoal) !important;
}

.mobile-nav-link.last-link:hover::before {
    left: 0;
}

/* Mobile breakpoint - hide desktop menu, show burger */
@media (max-width: 992px) {
    .navbar-nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .logo-img {
        max-height: 70px;
        height: 70px;
        transform: scale(1) !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    .navbar.scrolled .logo-img {
        max-height: 35px;
        height: 35px;
    }

    .navbar-toggler{
        border: none!important;
    }
    
    .navbar .container {
        justify-content: space-between;
    }

    .navbar-toggler:focus{
        box-shadow: none!important;
        outline: none!important;
        border: none!important;
    }

    .qa-question{
        text-align: left;
    }

    #investment-partners .developer-leader .col-lg-7{
        padding: 6rem 3rem;
    }

    #developer .leader-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "overview"
            "visual"
            "portrait"
            "bio";
    }

    #developer .leader-cell {
        padding: 1.75rem;
    }
    .testimonial-grid {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        border: 1px solid rgba(244, 244, 244, 0.2);
    }

    .location-text-side{
        padding: 3rem;
    }

    #developer .developer-leader .col-lg-7{
        padding: 3rem 4rem 0;
    }

    .leader-photo img{
        max-height: 600px;
    }
}

/* ===== MOBILE FIXED CTA BUTTON ===== */
.mobile-cta-fixed {
    display: none; /* Hidden by default */
}

@media (max-width: 768px) {
    .mobile-cta-fixed {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 1rem 1.5rem !important;
        background: var(--rich-brown);
        color: var(--light-cream);
        font-family: var(--font-main);
        font-weight: 200;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        text-decoration: none;
        z-index: 999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 0;
        overflow: hidden;
        transition: color 0.4s ease, box-shadow 0.4s ease;
    }

    .mobile-cta-fixed::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: var(--light-cream);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .leader-text p.lead{
        font-size: 1.1rem;
        line-height: 1.7rem;
    }

    .leader-subtitle{
        font-size: 1.1rem;
        line-height: 1.7rem;
    }

    .leader-text p{
        font-size: 0.9rem;
    }

    .mobile-cta-fixed .mobile-cta-text {
        font-weight: 200;
    }

    .mobile-cta-fixed i {
        font-size: 1rem;
    }

    .mobile-cta-fixed:hover {
        color: var(--dark-charcoal) !important;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    }

    .mobile-cta-fixed:hover::before {
        width: 100%;
    }

    .mobile-nav-link.last-link{
        color: var(--light-cream)!important;
    }


    /* Add padding to footer to prevent content overlap */
    .site-footer {
        padding-bottom: 80px;
    }
}