/* ===========================
   DESIGN3 - GLASSMORPHISM WITH THEME SUPPORT
   =========================== */

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

:root {
    /* Brand Color - From Logo */
    --brand-coral: #ca745d;
    --brand-coral-light: #db9682;
    --brand-coral-dark: #b85f47;
    --brand-coral-darker: #9d4d39;
    
    /* Dark Theme (Default) - Warm neutral backgrounds */
    --primary: #ca745d;
    --primary-light: #db9682;
    --primary-dark: #b85f47;
    --secondary: #9d4d39;
    --accent: #e8a890;
    
    --bg-primary: #1a1614;
    --bg-secondary: #2a2421;
    --bg-tertiary: #3a332d;
    --bg-card: rgba(255, 255, 255, 0.08);
    --bg-card-hover: rgba(202, 116, 93, 0.15);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-tertiary: rgba(255, 255, 255, 0.6);
    
    --border-color: rgba(202, 116, 93, 0.15);
    --border-color-hover: rgba(202, 116, 93, 0.4);
    
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(202, 116, 93, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    
    --gradient-primary: linear-gradient(135deg, #ca745d 0%, #b85f47 100%);
    --gradient-bg: linear-gradient(135deg, #1a1614 0%, #2a2421 50%, #3a332d 100%);
    --gradient-text: linear-gradient(135deg, #db9682 0%, #ca745d 100%);
}

/* Light Theme */
[data-theme="light"] {
    --primary: #c15f43;
    --primary-light: #ca745d;
    --primary-dark: #a84e35;
    --secondary: #8a4d3a;
    --accent: #c15f43;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f7f3f0;
    --bg-tertiary: #efe9e4;
    --bg-card: #f7f3f0;
    --bg-card-hover: #efe7e2;
    
    --text-primary: #241b17;
    --text-secondary: #5c524c;
    --text-tertiary: #8a8078;
    
    --border-color: rgba(38, 27, 22, 0.08);
    --border-color-hover: rgba(193, 95, 67, 0.35);
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(38, 27, 22, 0.07);
    --glass-shadow: rgba(38, 27, 22, 0.08);
    
    --gradient-primary: linear-gradient(135deg, #ca745d 0%, #b85f47 100%);
    --gradient-bg: linear-gradient(180deg, #ffffff 0%, #f8f4f1 100%);
    --gradient-text: linear-gradient(135deg, #c15f43 0%, #a84e35 100%);
}

html {
    scroll-behavior: smooth;
    transition: background 0.3s ease, color 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ===========================
   ANIMATED BACKGROUND
   =========================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--gradient-bg);
    transition: background 0.3s ease;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(202, 116, 93, 0.12) 0%, rgba(202, 116, 93, 0.06) 100%);
    backdrop-filter: blur(5px);
    animation: float 20s infinite;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

[data-theme="light"] .bubble {
    background: linear-gradient(135deg, rgba(202, 116, 93, 0.05) 0%, rgba(202, 116, 93, 0.02) 100%);
    border-color: transparent;
    opacity: 0.5;
}

.bubble:nth-child(1) {
    width: 300px;
    height: 300px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 200px;
    height: 200px;
    right: 15%;
    top: 40%;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 150px;
    height: 150px;
    left: 60%;
    bottom: 30%;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 250px;
    height: 250px;
    right: 30%;
    bottom: 10%;
    animation-delay: 6s;
}

.bubble:nth-child(5) {
    width: 180px;
    height: 180px;
    left: 30%;
    bottom: 20%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, -100px) scale(0.9);
    }
    75% {
        transform: translate(30px, -70px) scale(1.05);
    }
}

/* ===========================
   GLASS CARD EFFECT
   =========================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: all 0.3s ease;
}

/* .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
} */

/* Light theme: crisp white cards floating on soft neutral shadows */
[data-theme="light"] .glass-card {
    background: #ffffff;
    border: 1px solid rgba(38, 27, 22, 0.06);
    box-shadow: 0 1px 3px rgba(38, 27, 22, 0.04), 0 12px 32px rgba(38, 27, 22, 0.07);
}

/* Light theme: crisp floating navbar */
[data-theme="light"] .nav-wrapper {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 24px rgba(38, 27, 22, 0.08);
}

/* Light theme: brand-accent pill chips */
[data-theme="light"] .label,
[data-theme="light"] .badge {
    background: rgba(193, 95, 67, 0.1);
    color: var(--primary);
    border-color: rgba(193, 95, 67, 0.18);
}

/* ===========================
   THEME TOGGLE
   =========================== */
.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    order: 1;
}

@media (min-width: 768px) {
    .theme-toggle {
        order: 0;
    }
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: scale(1.05);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
    transition: all 0.3s ease;
    position: absolute;
}

.theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
}

.nav-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px var(--glass-shadow);
    min-height: 70px;
    gap: 20px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-icon {
    font-size: 20px;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-links {
    display: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.05);
    opacity: 0.9 !important;
}

.mobile-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    order: 2;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 100px;
    left: 20px;
    right: 20px;
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 30px;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s ease;
}

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

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

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

.badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-heading {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* ===========================
   HERO VISUAL (IMAGE + FLOATING BADGES)
   =========================== */
.hero-visual {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px var(--glass-shadow);
    display: block;
}

.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(30, 26, 24, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .hero-float {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(38, 27, 22, 0.08);
    box-shadow: 0 10px 30px rgba(38, 27, 22, 0.12);
}

.hero-float .card-icon {
    font-size: 30px;
    margin: 0;
    line-height: 1;
}

.hero-float h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.1;
}

.hero-float p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.hero-float-1 {
    top: 18px;
    left: 18px;
}

.hero-float-2 {
    bottom: 18px;
    right: 18px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(202, 116, 93, 0.3);
}

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

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-glass:hover {
    background: var(--bg-card-hover);
}

.btn-full {
    width: 100%;
}

/* ===========================
   SECTIONS
   =========================== */
section {
    padding: 140px 0 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.section-header h2 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card {
    padding: 35px;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

/* ===========================
   AMENITIES SECTION
   =========================== */
.amenities-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.amenity-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateX(5px);
}

.amenity-icon-sm {
    font-size: 24px;
    flex-shrink: 0;
}

.amenity-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

/* ===========================
   SPACES SECTION
   =========================== */
.spaces {
    background: transparent;
}

.spaces-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.space-card {
    padding: 40px;
    position: relative;
}

.space-card.featured {
    background: var(--bg-card-hover);
    border: 2px solid var(--border-color-hover);
}

.space-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    padding: 6px 16px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--border-color);
}

.featured-badge {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.space-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.space-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.space-price {
    text-align: right;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
}

.space-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.space-perks {
    list-style: none;
    margin-bottom: 30px;
}

.space-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.space-perks li:last-child {
    border-bottom: none;
}

.space-perks svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

/* ===========================
   PRICING COMPARISON
   =========================== */
.pricing-comparison {
    background: transparent;
}

.comparison-card {
    padding: 50px 30px;
}

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

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 15px;
    padding: 20px 0;
    align-items: center;
}

.table-header {
    border-bottom: 2px solid var(--border-color);
}

.table-row {
    border-bottom: 1px solid var(--border-color);
}

.header-item {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
    text-align: center;
}

.header-item:first-child {
    text-align: left;
}

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

.row-value {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.table-cta-row {
    border-bottom: none;
    padding-top: 30px;
}

.table-cta-row .row-label {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Small Button Variant */
.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.testimonial-card {
    padding: 35px;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.author h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.author span {
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    background: transparent;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form-card {
    padding: 40px;

    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-row {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-tertiary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(202, 116, 93, 0.1);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    border: 1px solid var(--border-color-hover);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
}

.link-group h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ===========================
   RESPONSIVE - TABLET & UP
   =========================== */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .spaces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenities-list {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .spaces-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hero: asymmetric two-column layout on desktop */
@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-visual {
        justify-content: flex-end;
    }
    
    .hero-image {
        height: 460px;
    }
    
    .hero-float-1 {
        top: 28px;
        left: -28px;
    }
    
    .hero-float-2 {
        bottom: 28px;
        right: -28px;
    }
}

/* ===========================
   VIDEO BACKGROUND
   =========================== */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 22, 20, 0.85) 0%, rgba(42, 36, 33, 0.9) 100%);
}

[data-theme="light"] .video-overlay {
    background: linear-gradient(135deg, rgba(253, 251, 249, 0.75) 0%, rgba(245, 241, 237, 0.85) 100%);
}

.hero .hero-container {
    position: relative;
    z-index: 1;
}

/* ===========================
   DROPDOWN NAVIGATION
   =========================== */
.nav-dropdown {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-primary);
    font-weight: 600;
    padding: 0;
}

.nav-dropdown span {
    color: var(--text-primary);
    font-weight: 600;
}

.nav-dropdown svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px var(--glass-shadow);
    z-index: 1000;
}

/* Bridge gap between dropdown trigger and menu */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 5px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-card-hover);
    padding-left: 20px;
}

/* ===========================
   OFFERINGS SUMMARY
   =========================== */
.offerings-summary {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.offering-card {
    text-decoration: none;
    color: inherit;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offering-card:hover {
    transform: translateY(-10px);
}

.offering-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.offering-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.offering-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.offering-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

/* ===========================
   WORKSPACE GALLERY CAROUSEL
   =========================== */
.workspace-gallery {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--bg-card-hover);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* ===========================
   WHY US SECTION
   =========================== */
.why-us {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.why-card {
    padding: 35px;
    text-align: center;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Workspace Models Specific Styles */
.workspace-models {
    grid-template-columns: 1fr;
    gap: 30px;
}

.model-card {
    position: relative;
    padding: 40px 30px;
    text-align: left;
}

.model-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.model-badge.featured-badge {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: white;
}

.featured-model {
    border-color: var(--border-color-hover);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

.model-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-weight: 500;
}

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

.model-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.model-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary);
}

.workspace-comparison {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.workspace-comparison h3 {
    color: var(--text-primary);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 30px;
}

.comparison-tags {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-tag {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
}

.comparison-tag:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateX(5px);
}

.tag-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    min-width: 130px;
    text-align: left;
}

.tag-arrow {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.tag-value {
    color: var(--text-secondary);
    font-size: 15px;
    text-align: right;
    flex: 1;
}

@media (max-width: 768px) {
    .comparison-tag {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .tag-label,
    .tag-value {
        text-align: center;
    }
    
    .tag-arrow {
        transform: rotate(90deg);
    }
}

/* ===========================
   RESPONSIVE - MOBILE
   =========================== */

/* Mobile Devices */
@media (max-width: 767px) {
    .nav-wrapper {
        padding: 10px 20px;
        min-height: 60px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .amenities-section {
        padding: 40px 0;
    }
    
    .amenities-section .section-header {
        margin-bottom: 30px;
    }
    
    .amenities-section .label {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .amenities-section .section-header h2 {
        font-size: clamp(24px, 5vw, 32px);
    }
    
    .amenities-section .section-header p {
        font-size: 15px;
        margin-top: 10px;
    }
    
    .amenities-list {
        gap: 10px;
    }
    
    .amenity-item {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .amenity-icon-sm {
        font-size: 18px;
    }
    
    .amenity-label {
        font-size: 13px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .pricing-quote-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .quote-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .quote-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .pricing-quote-card h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .pricing-quote-card > p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .quote-features {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .quote-feature-item {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .quote-feature-item span {
        font-size: 14px;
    }
    
    .btn-quote {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1.5fr repeat(5, 1fr);
        gap: 8px;
        font-size: 12px;
    }
    
    .header-item,
    .row-label,
    .row-value {
        font-size: 11px;
    }
    
    .btn-sm {
        padding: 8px 10px;
        font-size: 10px;
    }
    
    .comparison-card {
        padding: 25px 10px;
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .map-container {
        height: 350px;
        border-radius: 20px;
    }
    
    .map-overlay {
        padding: 30px 20px 20px;
    }
    
    .map-info h3 {
        font-size: 22px;
    }
    
    .map-info p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* ===========================
   RESPONSIVE - TABLET & UP
   =========================== */
@media (min-width: 768px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workspace-models {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-slide img {
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .offerings-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .workspace-models {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================
   PAGE HEADER (About, Offerings, etc.)
   =========================== */
.page-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 150px 20px 80px;
    position: relative;
    z-index: 1;
}

.header-card {
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-secondary);
}

.active {
    color: var(--accent) !important;
}

/* ===========================
   OUR STORY SECTION
   =========================== */
.our-story {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.story-content h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    margin-top: 15px;
}

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

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.story-image {
    padding: 20px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

/* ===========================
   MISSION & VISION
   =========================== */
.mission-vision {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.mv-card {
    padding: 50px 40px;
    text-align: center;
}

.mv-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================
   CORE VALUES
   =========================== */
.core-values {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.value-card {
    padding: 35px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   TEAM SECTION
   =========================== */
.team-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.team-card {
    padding: 30px;
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.cta-card {
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.cta-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* ===========================
   OFFERING PAGES STYLES
   =========================== */
.offering-overview {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.overview-image {
    padding: 20px;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.overview-content h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    margin-top: 15px;
}

.overview-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.overview-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
}

.highlight-item svg {
    flex-shrink: 0;
    stroke: var(--primary);
}

.offering-features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.offering-pricing {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.pricing-card {
    padding: 40px 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.price {
    margin: 25px 0 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 10px;
}

.price .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price .period {
    font-size: 16px;
    color: var(--text-tertiary);
    align-self: flex-end;
    margin-bottom: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pricing-note a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ===========================
   PRICING QUOTE CARD
   =========================== */
.pricing-quote-card {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-quote-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(202, 116, 93, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-quote-card:hover::before {
    opacity: 1;
}

.pricing-quote-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: 0 20px 60px var(--glass-shadow);
}

.quote-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(202, 116, 93, 0.3);
    position: relative;
    z-index: 1;
}

.quote-icon svg {
    stroke: white;
}

.pricing-quote-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.pricing-quote-card > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.quote-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.quote-feature-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateX(5px);
}

.quote-feature-item svg {
    flex-shrink: 0;
}

.quote-feature-item span {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
}

.btn-quote {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
}

.quote-note {
    font-size: 14px;
    color: var(--text-tertiary);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===========================
   PRIME LOCATION SECTION (HOMEPAGE)
   =========================== */
.prime-location {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.location-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.location-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
}

.location-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.location-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.location-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.location-detail {
    display: block;
    font-size: 14px;
    color: var(--text-tertiary);
}

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

/* ===========================
   CONNECTIVITY SECTION (CONTACT PAGE)
   =========================== */
.connectivity-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.connectivity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.connectivity-card {
    padding: 35px 30px;
}

.connectivity-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.connectivity-icon {
    font-size: 36px;
}

.connectivity-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.connectivity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.connectivity-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.connectivity-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    stroke: var(--primary);
}

.connectivity-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===========================
   RESPONSIVE - PRIME LOCATION
   =========================== */
@media (min-width: 768px) {
    .location-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .connectivity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .location-highlights {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .connectivity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================
   RESPONSIVE - OFFERING PAGES
   =========================== */
@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-image img {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================
   RESPONSIVE - ABOUT PAGE
   =========================== */
@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .story-image img {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */
.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;
}

.form-content h2 {
    color: var(--text-primary);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
}

.form-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-tertiary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(202, 116, 93, 0.1);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: #0f172a;
    color: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-image {
    display: none;
    border-radius: 20px;
    overflow: hidden;
}

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

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

.map-section h2 {
    color: var(--text-primary);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.map-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.map-container img,
.map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 100%);
    padding: 50px 30px 30px;
}

.map-info {
    max-width: 400px;
}

.map-info h3 {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    /* .form-row {
        grid-template-columns: 1fr 1fr;
    } */
    
    .form-wrapper {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
    
    .form-image {
        display: block;
    }
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.faq-section .section-header p {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 18px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--border-color-hover);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* FAQ CTA Button */
.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.faq-cta p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 20px;
}

/* ===========================
   FAQ PAGE STYLES
   =========================== */
.faq-page-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.faq-category-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.faq-category-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    color: var(--text-primary);
}

.faq-category-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: white !important;
    box-shadow: 0 4px 20px rgba(202, 116, 93, 0.3);
}

.faq-content {
    position: relative;
}

.faq-category-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.faq-category-content.active {
    display: block;
}

.category-title {
    color: var(--text-primary);
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.faq-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .faq-categories {
        gap: 10px;
    }
    
    .faq-category-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* ===========================
   CHECKOUT PAGE
   =========================== */
.checkout-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.checkout-forms {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checkout-card {
    padding: 35px;
}

.checkout-card-title {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 25px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* Plan Selector */
.plan-selector {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.plan-option-content {
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.plan-option input[type="radio"]:checked + .plan-option-content {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(202, 116, 93, 0.2);
}

.plan-option:hover .plan-option-content {
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.plan-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.plan-option-header h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.plan-price {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.plan-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-tertiary);
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.featured-plan .plan-option-content {
    border: 2px solid var(--border-color-hover);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Checkout Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(202, 116, 93, 0.1);
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.form-help {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Addon Options */
.addon-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.addon-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.addon-content {
    padding: 16px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.addon-option input[type="checkbox"]:checked + .addon-content {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.addon-option:hover .addon-content {
    background: var(--bg-card-hover);
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.addon-header h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

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

.addon-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Checkout Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-summary {
    padding: 30px;
}

.summary-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-section h3 {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.summary-placeholder {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-style: italic;
}

.summary-plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 8px;
}

.summary-plan-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-plan-info strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.summary-plan-period {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.summary-plan-price {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.summary-addon {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--bg-card);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}

.summary-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.summary-row.security-deposit {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 15px 0;
}

.checkout-btn {
    margin-top: 10px;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.security-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 8px;
    margin-top: 15px;
}

.security-note svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.security-note p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* Benefits Card */
.benefits-card {
    padding: 25px;
}

.benefits-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.benefits-list svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* Help Card */
.help-card {
    padding: 25px;
    text-align: center;
}

.help-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.help-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Responsive Checkout */
@media (max-width: 1024px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
        order: -1;
    }

    .order-summary {
        position: sticky;
        top: 80px;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 60px 0;
    }

    .checkout-card {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .plan-price {
        font-size: 1.3rem;
    }

    .checkout-sidebar {
        gap: 15px;
    }

    .order-summary,
    .benefits-card,
    .help-card {
        padding: 20px;
    }
}
