/* ==========================================================================
   RST Business Suites - Core Design System & Layout Styles
   ========================================================================== */

/* --- 1. CSS Custom Properties (Design System) --- */
:root {
    /* Colors */
    --color-primary: #B35A2E;
    --color-accent: #C66A37;
    --color-dark-brown: #2B1E18;
    --color-gold: #C89A5A;
    --color-bg: #FAF8F6;
    --color-white: #FFFFFF;
    --color-black-text: #1A1A1A;
    --color-muted-text: #555555;
    --color-borders: #EDE7E2;
    --color-shadow: rgba(0, 0, 0, 0.08);

    /* Fonts */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing & Layout */
    --container-max-width: 1440px;
    --container-content-width: 1280px;
    --section-spacing: 120px;
    --transition-duration: 0.6s;
    --transition-easing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. CSS Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-bg);
    color: var(--color-black-text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-black-text);
    font-family: var(--font-serif);
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* --- 3. Utility Components --- */
.section-container {
    max-width: var(--container-content-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.4s var(--transition-easing), 
                box-shadow 0.4s var(--transition-easing), 
                background-color 0.4s var(--transition-easing),
                color 0.4s var(--transition-easing);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(179, 90, 46, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(179, 90, 46, 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(179, 90, 46, 0.15);
}

/* Inline SVG arrows inside buttons */
.btn .arrow-icon {
    margin-left: 8px;
    transition: transform 0.4s var(--transition-easing);
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Section Header styling */
.section-label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 48px;
    line-height: 1.15;
    color: var(--color-black-text);
}

.italic-text {
    font-style: italic;
    font-family: var(--font-serif);
}

.dot {
    color: var(--color-primary);
}

/* Scroll Fade-up Animation classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-easing), 
                transform 0.8s var(--transition-easing);
}

.animate-fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- 4. Main Sticky Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    transition: background-color 0.4s var(--transition-easing), 
                backdrop-filter 0.4s var(--transition-easing),
                box-shadow 0.4s var(--transition-easing),
                height 0.4s var(--transition-easing);
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.main-header.scrolled {
    height: 90px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(237, 231, 226, 0.5);
}

.header-container {
    max-width: var(--container-content-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Block */
.logo-block {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.4s var(--transition-easing), transform 0.4s var(--transition-easing), filter 0.4s var(--transition-easing);
    animation: logoFloat 5s ease-in-out infinite;
}

.main-header.scrolled .logo-img {
    height: 68px;
}

.logo-block:hover .logo-img {
    transform: scale(1.06) rotate(1.5deg);
    filter: drop-shadow(0 4px 12px rgba(179, 90, 46, 0.2));
}

@keyframes logoFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-black-text);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s var(--transition-easing);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s var(--transition-easing), left 0.3s var(--transition-easing);
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Mobile Nav Toggle hidden on desktop */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1010;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-black-text);
    transition: transform 0.3s, opacity 0.3s;
}

/* --- 5. Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background-color: var(--color-bg);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: scale(1);
    transition: opacity 1000ms ease-in-out;
}

.hero-slide.prev {
    opacity: 0;
    z-index: 2;
    transform: scale(1.05);
    transition: opacity 1000ms ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 3;
    animation: kenBurns 3500ms ease-in-out forwards;
}

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

/* Left White Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 48%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    border-radius: 0 65% 65% 0 / 0 50% 50% 0;
    background: linear-gradient(to right, 
        #FFFFFF 0%, 
        rgba(255, 255, 255, 0.98) 60%, 
        rgba(255, 255, 255, 0.94) 75%, 
        rgba(255, 255, 255, 0.7) 88%, 
        rgba(255, 255, 255, 0) 100%);
}

.hero-container {
    max-width: var(--container-content-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 20;
}

/* Left Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
}

.tagline-container {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.tagline-line {
    width: 32px;
    height: 1px;
    background-color: var(--color-primary);
    margin-right: 12px;
}

.tagline-text {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--color-primary);
}

.hero-title {
    font-size: 76px;
    line-height: 1.05;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-dark-brown);
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 36px;
    font-family: var(--font-sans);
    font-weight: 400;
}

.hero-actions {
    margin-bottom: 40px;
}

.btn-hero {
    padding: 18px 34px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.03em;
}

.slider-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-indicators .indicator {
    height: 6px;
    background-color: #D3C9C1;
    border-radius: 3px;
    transition: background-color 0.4s var(--transition-easing), width 0.4s var(--transition-easing);
    cursor: pointer;
    width: 10px;
}

.slider-indicators .indicator.active {
    width: 32px;
    background-color: var(--color-primary);
}

/* --- 5.5. Essentials Section --- */
.essentials-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-borders);
}

.essentials-header {
    text-align: center;
    margin-bottom: 56px;
}

.essentials-tag {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-primary);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.essentials-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-muted-text);
    max-width: 600px;
    margin: 16px auto 0 auto;
    text-align: center;
}

.essentials-section .features-bar-container {
    margin-top: 0;
}

/* --- 6. Features Bar --- */
.features-bar-container {
    max-width: var(--container-content-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Overlaps hero section */
}

.features-bar {
    background-color: var(--color-white);
    border-radius: 24px;
    border: 1px solid var(--color-borders);
    box-shadow: 0 16px 48px var(--color-shadow);
    padding: 36px 12px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
}

.feature-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.feature-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
    height: 70%;
    background-color: var(--color-borders);
}

.feature-icon {
    color: var(--color-primary);
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    transition: transform 0.4s var(--transition-easing);
}

.feature-col:hover .feature-icon {
    transform: scale(1.1) translateY(-2px);
}

.feature-label {
    display: flex;
    flex-direction: column;
}

.feature-label .label-top {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 19px;
    color: var(--color-black-text);
    line-height: 1.2;
}

.feature-label .label-bottom {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 15px;
    color: var(--color-black-text);
    line-height: 1.2;
    margin-top: 2px;
}

/* --- 7. Spaces Section --- */
.spaces-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-bg);
}

.spaces-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.spaces-header .header-left {
    max-width: 60%;
}

.spaces-header .section-title {
    margin-top: 8px;
}

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

/* Space Cards */
.space-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--color-dark-brown);
    height: 520px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.6s var(--transition-easing), 
                box-shadow 0.6s var(--transition-easing);
    cursor: pointer;
}

.space-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--transition-easing), filter 0.8s var(--transition-easing);
}

.space-card:hover .card-image {
    transform: scale(1.08);
    filter: brightness(0.65);
}

.card-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(179, 90, 46, 0.25);
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 18px;
    border-radius: 50px;
    transition: opacity 0.5s var(--transition-easing), transform 0.5s var(--transition-easing);
    z-index: 2;
    box-shadow: 0 6px 16px rgba(179, 90, 46, 0.08);
}

.space-card:hover .card-badge {
    opacity: 0;
    transform: translateY(-10px);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43, 30, 24, 0) 30%, rgba(43, 30, 24, 0.95) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s var(--transition-easing);
}

.space-card:hover .card-overlay {
    opacity: 1;
}

.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 36px 30px;
    z-index: 3;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--transition-easing), transform 0.6s var(--transition-easing);
}

.space-card:hover .card-content-overlay {
    opacity: 1;
    transform: translateY(0);
}

.card-capacity-label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 26px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.card-description {
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.card-link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    width: fit-content;
    transition: border-color 0.3s, gap 0.3s;
}

.card-link .arrow-icon {
    transition: transform 0.3s var(--transition-easing);
}

.space-card:hover .card-link {
    border-color: rgba(255, 255, 255, 0.9);
}

.space-card:hover .card-link .arrow-icon {
    transform: translateX(4px);
}

/* --- 7.4. Locations Section --- */
.locations-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-bg);
}

.locations-header {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.locations-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-muted-text);
    max-width: 600px;
    margin: 16px auto 0 auto;
    text-align: center;
}

.featured-hub-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background-color: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px var(--color-shadow);
    border: 1px solid var(--color-borders);
    margin-bottom: 90px;
}

.hub-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.hub-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-easing);
}

.featured-hub-card:hover .hub-image {
    transform: scale(1.03);
}

.badge-featured {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(179, 90, 46, 0.2);
    z-index: 5;
}

.hub-content {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-white);
}

.hub-tag {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.hub-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 34px;
    color: var(--color-dark-brown);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.hub-description {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted-text);
    margin-bottom: 32px;
}

.hub-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.detail-icon {
    color: var(--color-primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.detail-info strong {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-dark-brown);
    margin-bottom: 2px;
}

.detail-info span {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-muted-text);
}

/* Map Link Integrations */
.hub-map-link,
.footer-map-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--transition-easing);
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    line-height: 1.45;
}

.hub-map-link:hover,
.footer-map-link:hover {
    color: var(--color-primary);
}

.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(179, 90, 46, 0.1);
    color: var(--color-primary);
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    vertical-align: middle;
    transition: background-color 0.3s, color 0.3s;
}

.hub-map-link:hover .map-badge {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-hub {
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 100%;
    padding: 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 12px;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(179, 90, 46, 0.2);
    transition: background-color 0.4s var(--transition-easing), transform 0.4s var(--transition-easing), box-shadow 0.4s var(--transition-easing);
}

.btn-hub:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(179, 90, 46, 0.35);
}

.coming-soon-wrapper {
    max-width: 1280px;
    margin: 80px auto 0 auto;
    padding: 120px 0;
    text-align: center;
}

.coming-soon-header {
    margin-bottom: 56px;
}

.coming-soon-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-muted-text);
    margin-top: 12px;
}

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

.coming-soon-card {
    position: relative;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background-color: #1A1A1A;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border: none;
    padding: 0;
}

.coming-soon-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.coming-soon-card:hover .card-bg-image {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.75) 100%
    );
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.coming-soon-card:hover .card-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-sizing: border-box;
}

.city-title-wrapper {
    position: relative;
    display: inline-block;
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(200, 154, 90, 0.25) 0%, rgba(200, 154, 90, 0) 70%);
    filter: blur(25px);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.coming-soon-card:hover .title-glow {
    opacity: 1;
}

.city-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: 0;
    text-align: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.coming-soon-card:hover .city-name {
    transform: translateY(-5px);
}

.city-description {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 85%;
    margin-bottom: 24px;
    text-align: left;
    flex-grow: 0;
}

.badge-soon {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 999px;
    width: fit-content;
    transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.coming-soon-card:hover .badge-soon {
    border-color: rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}


/* --- 7.5. Gallery Section --- */
.gallery-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-bg);
}

.gallery-header {
    margin-bottom: 56px;
}

.gallery-grid {
    column-count: 3;
    column-gap: 24px;
}

.gallery-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    break-inside: avoid;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    /* 3D tilt effects */
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.gallery-card:hover {
    box-shadow: 0 20px 48px rgba(43, 30, 24, 0.12);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

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

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(43, 30, 24, 0) 30%, rgba(43, 30, 24, 0.85) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    z-index: 2;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(40px);
    pointer-events: none;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.overlay-text {
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .overlay-text {
    transform: translateY(0);
}

/* Stagger entrance animations for gallery cards */
.gallery-card.animate-fade-up:nth-child(1) { transition-delay: 0.05s; }
.gallery-card.animate-fade-up:nth-child(2) { transition-delay: 0.1s; }
.gallery-card.animate-fade-up:nth-child(3) { transition-delay: 0.15s; }
.gallery-card.animate-fade-up:nth-child(4) { transition-delay: 0.2s; }
.gallery-card.animate-fade-up:nth-child(5) { transition-delay: 0.25s; }
.gallery-card.animate-fade-up:nth-child(6) { transition-delay: 0.3s; }
.gallery-card.animate-fade-up:nth-child(7) { transition-delay: 0.35s; }
.gallery-card.animate-fade-up:nth-child(8) { transition-delay: 0.4s; }
.gallery-card.animate-fade-up:nth-child(9) { transition-delay: 0.45s; }
.gallery-card.animate-fade-up:nth-child(10) { transition-delay: 0.5s; }


.gallery-tag {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.gallery-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.2;
}

/* --- 8. Premium CTA Section --- */
.premium-cta-section {
    padding-bottom: var(--section-spacing);
    background-color: var(--color-bg);
}

.premium-cta-banner {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 80px;
    box-shadow: 0 20px 50px var(--color-shadow);
}

.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(43, 30, 24, 0.85) 0%, rgba(43, 30, 24, 0.45) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    max-width: 580px;
}

.banner-tagline {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.banner-title {
    font-size: 44px;
    line-height: 1.15;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 24px;
}

.banner-description {
    font-family: var(--font-sans);
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 540px;
}

.btn-banner {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(179, 90, 46, 0.3);
}

.btn-banner:hover {
    background-color: var(--color-accent);
}

/* --- 9. Stats Section --- */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Overlap premium CTA bottom */
    padding-bottom: 120px;
    background-color: var(--color-bg);
}

.stats-card {
    background-color: var(--color-white);
    border-radius: 24px;
    border: 1px solid var(--color-borders);
    box-shadow: 0 16px 48px var(--color-shadow);
    padding: 44px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.stat-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 24px;
    position: relative;
}

.stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
    height: 70%;
    background-color: var(--color-borders);
}

.stat-icon {
    color: var(--color-primary);
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-black-text);
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-muted-text);
    margin-top: 4px;
    white-space: nowrap;
}

/* --- 9.5. About Us Section --- */
.about-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-borders);
}

.about-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: flex-start;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-right {
    display: flex;
    flex-direction: column;
}

.about-description {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-muted-text);
    margin-bottom: 32px;
}

.about-bullet-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-borders);
    width: 100%;
}

.about-bullet-item:first-child {
    border-top: 1px solid var(--color-borders);
}

.about-bullet-icon-wrapper {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: transparent;
    transition: transform 0.3s var(--transition-easing), box-shadow 0.3s var(--transition-easing);
}

.about-bullet-item:hover .about-bullet-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(179, 90, 46, 0.15);
}

.about-bullet-text-container {
    border-left: 1px solid var(--color-borders);
    padding-left: 20px;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.about-bullet-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--color-dark-brown);
}

/* --- 10. Footer --- */
.main-footer {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-borders);
    padding: 90px 0 0 0;
}

.footer-container {
    max-width: var(--container-content-width);
    margin: 0 auto;
    padding: 0 40px 60px 40px;
    display: grid;
    grid-template-columns: 0.85fr 2.15fr;
    gap: 80px;
}

/* Brand info column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-rst {
    font-size: 42px;
}

.footer-logo .logo-sub {
    font-size: 9px;
    letter-spacing: 0.32em;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 19px;
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-borders);
    color: var(--color-black-text);
    transition: all 0.3s var(--transition-easing);
}

.social-links a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Footer Link Columns */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1.1fr 2.1fr;
    gap: 40px;
}

/* Footer Query Form */
.query-col {
    grid-column: span 1;
}

.footer-query-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-query-form .form-group {
    position: relative;
    width: 100%;
}

.footer-query-form .form-input,
.footer-query-form .form-textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid var(--color-borders);
    padding: 10px 0;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-black-text);
    outline: none;
    transition: border-color 0.3s var(--transition-easing);
    resize: none;
}

.footer-query-form .form-input::placeholder,
.footer-query-form .form-textarea::placeholder {
    color: var(--color-muted-text);
    opacity: 0.8;
}

.footer-query-form .form-input:focus,
.footer-query-form .form-textarea:focus {
    border-bottom-color: var(--color-primary);
}

.btn-form-submit {
    margin-top: 8px;
    padding: 12px 24px;
    font-size: 12px;
    border-radius: 8px;
    cursor: pointer;
    width: fit-content;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-muted-text);
    transition: color 0.3s var(--transition-easing);
}

.footer-col ul a:hover {
    color: var(--color-primary);
}

/* Contact Column */
.contact-col {
    grid-column: span 1;
    min-width: 220px;
}

.contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-muted-text);
    line-height: 1.45;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-footer-cta {
    width: 100%;
    padding: 12px 20px;
    font-size: 12px;
    border-radius: 8px;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--color-borders);
    padding: 30px 0;
    background-color: var(--color-white);
}

.footer-bottom-container {
    max-width: var(--container-content-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-muted-text);
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.developer-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s var(--transition-easing), opacity 0.3s var(--transition-easing);
}

.developer-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

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

/* --- 11. Media Queries & Responsiveness --- */

/* Laptop screens (under 1280px) */
@media (max-width: 1280px) {
    .section-container, .header-container, .hero-container, .features-bar-container, .footer-container, .footer-bottom-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .spaces-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .space-card {
        height: 480px;
    }
    
    .footer-container {
        gap: 40px;
    }
}

/* Tablet screens (under 1024px) */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 90px;
    }
    
    .hero-section {
        margin: 0;
        width: 100%;
        height: 750px;
        min-height: auto;
        max-height: auto;
    }

    .hero-overlay {
        width: 55%;
    }

    .hero-container {
        padding: 0 40px;
    }
    
    .hero-content {
        max-width: 380px;
    }
    
    .hero-title {
        font-size: 58px;
    }
    
    .features-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 30px;
    }
    
    .feature-col:nth-child(3)::after, 
    .feature-col:nth-child(6)::after {
        display: none;
    }
    
    .feature-col::after {
        display: none; /* Hide dividers on smaller grid */
    }
    
    .spaces-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .spaces-header .header-left {
        max-width: 100%;
    }
    
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px;
    }
    
    .stat-col::after {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
    
    .gallery-grid {
        column-count: 2;
    }

    .featured-hub-card {
        grid-template-columns: 1fr;
    }

    .hub-image-wrapper {
        min-height: 380px;
    }

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

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

    .about-left {
        text-align: center;
        align-items: center;
    }

    .about-right {
        align-items: center;
        text-align: center;
    }

    .about-bullet-list {
        max-width: 520px;
        margin: 0 auto;
    }

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

/* Mobile screens (under 768px) */
@media (max-width: 768px) {
    :root {
        --section-spacing: 80px;
    }
    
    .main-header {
        height: 80px;
    }
    
    .main-header.scrolled {
        height: 70px;
    }
    
    .logo-rst {
        font-size: 32px;
    }
    
    .logo-img {
        height: 52px;
    }
    
    .main-header.scrolled .logo-img {
        height: 44px;
    }
    
    /* Hamburger Menu Logic */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        border-bottom: 1px solid var(--color-borders);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 24px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s, transform 0.3s;
    }
    
    .main-header.scrolled .nav-menu {
        top: 70px;
    }
    
    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .header-cta {
        display: none; /* Hide CTA button in header, will use burger */
    }
    
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: none;
        padding-top: 110px;
        padding-bottom: 80px;
        background-color: #FAF8F6;
    }
    
    .hero-overlay {
        display: none;
    }

    .hero-container {
        padding: 0 24px;
        width: 100%;
        height: auto;
        justify-content: center;
        z-index: 20;
        order: 1;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    .tagline-container {
        justify-content: center;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 38px;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-description {
        text-align: center;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 540px;
    }

    .hero-actions {
        margin-bottom: 24px;
    }

    .slider-indicators {
        margin: 0 auto;
        justify-content: center;
    }

    .hero-slider {
        position: relative;
        width: calc(100% - 48px);
        max-width: 580px;
        height: 320px;
        margin: 30px auto 0 auto;
        z-index: 10;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        order: 2;
    }
    
    .features-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }
    
    .spaces-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .space-card {
        height: 460px;
    }
    
    .premium-cta-banner {
        height: auto;
        min-height: 340px;
        padding: 40px 24px;
        text-align: center;
        justify-content: center;
    }
    
    .banner-overlay {
        background: rgba(43, 30, 24, 0.75);
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    
    .stat-col {
        justify-content: flex-start;
        width: fit-content;
        margin: 0 auto;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .gallery-grid {
        column-count: 1;
        max-width: 480px;
        margin: 0 auto;
    }

    .hub-content {
        padding: 36px 24px;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-description {
        font-size: 16px;
    }
}

/* Small mobile (under 480px) */
@media (max-width: 480px) {
    .hero-section {
        height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-slider {
        height: 240px;
        width: calc(100% - 32px);
    }
    
    .features-bar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-col {
        min-width: 100%;
    }

    /* Coming Soon Card responsive fixes */
    .coming-soon-card {
        height: 380px;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .city-name {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .city-description {
        font-size: 14px;
        margin-bottom: 16px;
        max-width: 100%;
    }
    
    .badge-soon {
        padding: 10px 18px;
        font-size: 11px;
    }
}

/* --- 9.5. Team Section --- */
.team-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-borders);
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.team-card {
    position: relative;
    width: 380px;
    margin-bottom: 40px;
    transition: transform 0.4s var(--transition-easing);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background-color: #EDE7E2;
    border: 1px solid var(--color-borders);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-easing);
}

.team-card:hover .team-image {
    transform: scale(1.04);
}

.team-info-box {
    background-color: var(--color-white);
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(43, 30, 24, 0.04);
    margin: -50px 20px 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    border: 1px solid var(--color-borders);
    transition: box-shadow 0.4s var(--transition-easing);
}

.team-card:hover .team-info-box {
    box-shadow: 0 16px 40px rgba(43, 30, 24, 0.08);
}

.member-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-dark-brown);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.member-role {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.member-description {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted-text);
    margin-bottom: 20px;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.member-socials a {
    color: var(--color-muted-text);
    transition: color 0.3s var(--transition-easing), transform 0.3s var(--transition-easing);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-socials a:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.team-cta {
    text-align: center;
    margin-top: 40px;
}

/* Mobile & Tablet responsive overrides for Team Section */
@media (max-width: 1024px) {
    .team-grid {
        gap: 30px;
    }
    
    .team-card {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .team-card {
        width: 100%;
        max-width: 380px;
    }
}

/* --- 9.7. Google Reviews Section --- */
.reviews-section {
    padding: 120px 0;
    background-color: #FAF8F6;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-borders);
}

/* Subtle background glows */
.reviews-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
}

.reviews-glow.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #B35A2E 0%, rgba(179,90,46,0) 70%);
    top: -10%;
    left: -10%;
}

.reviews-glow.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #D8A86B 0%, rgba(216,168,107,0) 70%);
    bottom: -15%;
    right: -10%;
}

.reviews-section .section-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-tagline {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.reviews-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 500;
    font-style: italic;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.reviews-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

/* Rating Summary Box */
.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 64px;
    gap: 12px;
}

.summary-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-val {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 800;
    color: #1A1A1A;
}

.rating-stars, .card-stars {
    color: #D8A86B;
    font-size: 20px;
    letter-spacing: 3px;
}

.summary-details {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-muted-text);
}

.badge-separator {
    color: #CCCCCC;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(52, 168, 83, 0.08);
    color: #2E7D32;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
}

.verified-badge svg {
    flex-shrink: 0;
}

/* Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

/* Review Card */
.review-card {
    background-color: var(--color-white);
    border: 1px solid #ECECEC;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.card-top-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B35A2E 0%, #D8A86B 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.08);
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}

.reviewer-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--color-muted-text);
}

.reviewer-status svg {
    flex-shrink: 0;
}

.card-stars {
    font-size: 18px;
    margin-bottom: 16px;
    transition: text-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card:hover .card-stars {
    text-shadow: 0 0 8px rgba(216, 168, 107, 0.6);
}

.review-text {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 24px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--color-muted-text);
    border-top: 1px solid #F5F5F5;
    padding-top: 16px;
    margin-top: auto;
}

.posted-google {
    font-weight: 500;
}

/* Button Section */
.reviews-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-review {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    border: none;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-review:hover {
    background-color: var(--color-dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(179, 90, 46, 0.25);
}

.btn-all-reviews {
    transition: background-color 0.3s, color 0.3s;
}

.btn-all-reviews:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    border-color: var(--color-primary);
}

/* Responsiveness overrides for Reviews */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 0;
    }
    
    .reviews-title {
        font-size: 42px;
    }
    
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 24px;
        margin-bottom: 36px;
        /* Hide scrollbars but keep swipe */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }
    
    .review-card {
        min-width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        scroll-snap-align: center;
    }
    
    .reviews-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }
    
    .reviews-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* --- 12. Chatbot Widget Styling --- */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(179, 90, 46, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--transition-easing), background-color 0.3s;
}

.chatbot-toggle:hover {
    transform: scale(1.08) rotate(5deg);
    background-color: var(--color-accent);
}

.chatbot-window {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 360px;
    height: 520px;
    max-height: calc(100vh - 120px);
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(43, 30, 24, 0.12);
    border: 1px solid var(--color-borders);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s var(--transition-easing), transform 0.3s var(--transition-easing), pointer-events 0.3s;
}

.chatbot-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white) !important;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 6px;
}

.chatbot-header-text {
    display: flex;
    flex-direction: column;
}

.chatbot-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    letter-spacing: 0.02em;
    color: var(--color-white) !important;
}

.chatbot-status {
    font-family: var(--font-sans);
    font-size: 11px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-white) !important;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #2ec4b6;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #2ec4b6;
}

.chatbot-close-btn {
    background: none;
    border: none;
    color: var(--color-white);
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.chatbot-close-btn:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #FAF8F6;
}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.5;
}

.bot-message {
    background-color: var(--color-white);
    color: var(--color-dark-brown);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bot-message a {
    color: var(--color-primary);
    text-decoration: underline;
}

.user-message {
    background-color: var(--color-primary);
    color: var(--color-white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chatbot-suggestions {
    padding: 10px 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    background-color: #FAF8F6;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    scrollbar-width: none;
}

.chatbot-suggestions::-webkit-scrollbar {
    display: none;
}

.suggestion-pill {
    white-space: nowrap;
    background-color: var(--color-white);
    color: var(--color-muted-text);
    border: 1px solid var(--color-borders);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.suggestion-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: rgba(179, 90, 46, 0.03);
}

.chatbot-input-area {
    display: flex;
    padding: 12px 16px;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-borders);
    align-items: center;
    gap: 10px;
}

.chatbot-input-area input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-dark-brown);
}

.chatbot-input-area input::placeholder {
    color: #b0a399;
}

.chatbot-send-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.chatbot-send-btn:hover {
    transform: scale(1.1);
}

.dot-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 2px;
}

.dot-typing span {
    width: 6px;
    height: 6px;
    background-color: #b0a399;
    border-radius: 50%;
    animation: typingBounce 1s infinite ease-in-out;
}

.dot-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.dot-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

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

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 480px;
        bottom: 68px;
    }
}

/* --- 9.6. Team Bio Modals --- */
.btn-read-bio {
    background: none;
    border: none;
    color: var(--color-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.btn-read-bio:hover {
    color: var(--color-dark-brown);
}

.btn-read-bio::after {
    content: '➔';
    font-size: 12px;
    transition: transform 0.3s;
}

.btn-read-bio:hover::after {
    transform: translateX(4px);
}

/* Modal Window styles */
.bio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bio-modal.open {
    opacity: 1;
    pointer-events: all;
}

.bio-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 30, 24, 0.4);
    backdrop-filter: blur(10px);
}

.bio-modal-content {
    background-color: var(--color-white);
    border-radius: 24px;
    width: 90%;
    max-width: 650px;
    max-height: 80vh;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.bio-modal.open .bio-modal-content {
    transform: scale(1) translateY(0);
}

.bio-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #F5F5F5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: background 0.3s, color 0.3s;
}

.bio-modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.bio-modal-header {
    padding: 36px 36px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #F0EAE5;
}

.bio-modal-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--color-borders);
}

.bio-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-modal-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bio-modal-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-black-text);
}

.bio-modal-role {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-modal-body {
    padding: 24px 36px 36px;
    overflow-y: auto;
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.bio-modal-body p {
    margin-bottom: 18px;
}

.bio-modal-body p:last-child {
    margin-bottom: 0;
}

.bio-section-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black-text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.bio-expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
    padding-left: 20px;
    margin-top: 10px;
}

.bio-expertise-list li {
    font-size: 14px;
    color: #555;
    position: relative;
    list-style-type: square;
}

@media (max-width: 600px) {
    .bio-modal-content {
        max-height: 90vh;
    }
    
    .bio-modal-header {
        padding: 28px 24px 16px;
    }
    
    .bio-modal-body {
        padding: 20px 24px 28px;
    }
    
    .bio-expertise-list {
        grid-template-columns: 1fr;
    }
}

/* --- 13. Cinematic Brand Splash Screen --- */
body.splash-active {
    overflow: hidden !important;
    height: 100vh !important;
}

.brand-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(
        circle at top,
        #FFFFFF 0%,
        #FAF8F6 60%,
        #EDE7E2 100%
    );
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-splash.fade-out {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.03);
    pointer-events: none;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* Center Logo Container */
.splash-logo-container {
    position: relative;
    width: 260px;
    height: auto;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.85);
    animation: splash-logo-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
    overflow: hidden;
    border-radius: 8px;
}

.splash-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Logo Sweep Effect */
.logo-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    animation: logo-light-sweep 4s ease-in-out 1.5s infinite;
}

/* Soft Golden Glow */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(200, 154, 90, 0.18) 0%, rgba(200, 154, 90, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
    animation: logo-glow-pulse 4s ease-in-out infinite;
}

/* Elegant Tagline */
.splash-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-dark-brown);
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: tagline-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
    text-align: center;
}

/* Loading Container & Bar */
.splash-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: loading-container-in 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

.splash-loader-bar {
    width: 260px;
    height: 3px;
    background-color: rgba(43, 30, 24, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.splash-loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        to right,
        #B35A2E 0%,
        #D8A86B 50%,
        #B35A2E 100%
    );
    border-radius: 999px;
    animation: loader-fill 2.5s cubic-bezier(0.45, 0, 0.55, 1) 1.2s forwards;
}

.splash-loader-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(43, 30, 24, 0.7);
    opacity: 0.8;
}

/* Floating Particles */
.splash-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.splash-particles .particle {
    position: absolute;
    background-color: #B35A2E;
    border-radius: 50%;
    bottom: -20px;
    opacity: 0;
    pointer-events: none;
    animation: float-particle 10s linear infinite;
}

/* Particle Positions and Delays */
.splash-particles .p1 { left: 15%; width: 2px; height: 2px; animation-duration: 9s; animation-delay: 0.5s; }
.splash-particles .p2 { left: 35%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 2s; }
.splash-particles .p3 { left: 55%; width: 2px; height: 2px; animation-duration: 8s; animation-delay: 4s; }
.splash-particles .p4 { left: 75%; width: 3px; height: 3px; animation-duration: 11s; animation-delay: 1s; }
.splash-particles .p5 { left: 25%; width: 2px; height: 2px; animation-duration: 10s; animation-delay: 3s; }
.splash-particles .p6 { left: 65%; width: 3px; height: 3px; animation-duration: 14s; animation-delay: 0s; }
.splash-particles .p7 { left: 45%; width: 2px; height: 2px; animation-duration: 9s; animation-delay: 5s; }
.splash-particles .p8 { left: 85%; width: 3px; height: 3px; animation-duration: 13s; animation-delay: 2.5s; }

/* Animation Keyframes */
@keyframes splash-logo-in {
    0% {
        opacity: 0;
        transform: scale(0.85);
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes logo-glow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

@keyframes logo-light-sweep {
    0% {
        left: -150%;
    }
    30% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

@keyframes tagline-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading-container-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes loader-fill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.12;
    }
    90% {
        opacity: 0.12;
    }
    100% {
        transform: translateY(-110vh) translateX(50px);
        opacity: 0;
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .splash-logo-container {
        width: 190px;
    }
    
    .splash-loader-bar {
        width: 200px;
    }
    
    .logo-glow {
        width: 240px;
        height: 240px;
    }
    
    .splash-tagline {
        font-size: 12px;
        letter-spacing: 4px;
    }
}
