/* ===========================
   DESIGN3 - GLASSMORPHISM
   =========================== */

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

:root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --accent: #3b82f6;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --text-dark: #1a1a2e;
    --text-light: #6b7280;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ===========================
   ANIMATED BACKGROUND
   =========================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    backdrop-filter: blur(5px);
    animation: float 20s infinite;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.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: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

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

.nav-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

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

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

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

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

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    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: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 10px;
}

/* ===========================
   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%;
}

.hero-card {
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #93c5fd;
    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: white;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -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: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===========================
   FLOATING CARDS
   =========================== */
.hero-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    text-align: center;
    /* animation: floatCard 3s ease-in-out infinite; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.floating-card.card-1 {
    animation-delay: 0s;
}

.floating-card.card-2 {
    animation-delay: 1s;
}

.floating-card.card-3 {
    animation-delay: 2s;
}

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

.card-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.floating-card h4 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.floating-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   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: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
}

.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: rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

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

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    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: white;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    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: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

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

.amenity-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    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: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.space-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: #93c5fd;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.featured-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    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: white;
}

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

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.space-desc {
    color: rgba(255, 255, 255, 0.85);
    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: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.space-perks svg {
    stroke: white;
    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 rgba(255, 255, 255, 0.2);
}

.table-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-item {
    font-weight: 700;
    color: white;
    font-size: 14px;
    text-align: center;
}

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

.row-label {
    color: white;
    font-weight: 600;
}

.row-value {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

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

.table-cta-row .row-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* 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: rgba(255, 255, 255, 0.9);
    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: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.author h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
}

.author span {
    color: rgba(255, 255, 255, 0.7);
    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: white;
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    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: rgba(255, 255, 255, 0.15);
    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: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    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: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form select {
    cursor: pointer;
}

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

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(20px);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    max-width: 300px;
}

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

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

.social-link:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    transform: translateY(-3px);
    border: 1px solid rgba(59, 130, 246, 0.5);
}

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

.link-group h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.link-group a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    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);
    }
}

/* ===========================
   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(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.9) 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: white;
    font-weight: 600;
    padding: 0;
}

.nav-dropdown span {
    color: white;
    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: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    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: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: rgba(37, 99, 235, 0.3);
    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: white;
    margin-bottom: 12px;
}

.offering-card p {
    color: rgba(255, 255, 255, 0.7);
    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: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    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: rgba(255, 255, 255, 0.25);
    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: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent);
    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: white;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    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: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.model-badge.featured-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: rgba(59, 130, 246, 0.5);
    color: white;
}

.featured-model {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.model-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    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: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.model-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #3b82f6;
}

.workspace-comparison {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.workspace-comparison h3 {
    color: white;
    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: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

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

.tag-arrow {
    color: rgba(59, 130, 246, 0.8);
    font-size: 20px;
    font-weight: 700;
}

.tag-value {
    color: rgba(255, 255, 255, 0.7);
    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);
    }
        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: white;
    margin-bottom: 25px;
}

.page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.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: white;
    margin-bottom: 25px;
    margin-top: 15px;
}

.story-content p {
    color: rgba(255, 255, 255, 0.8);
    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(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    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: white;
    margin-bottom: 20px;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.8);
    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: white;
    margin-bottom: 12px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    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: white;
    margin-bottom: 8px;
}

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

.team-bio {
    color: rgba(255, 255, 255, 0.7);
    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: white;
    margin-bottom: 20px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    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: white;
    margin-bottom: 25px;
    margin-top: 15px;
}

.overview-content p {
    color: rgba(255, 255, 255, 0.8);
    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: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.highlight-item svg {
    flex-shrink: 0;
    stroke: #3b82f6;
}

.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: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    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: white;
    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(--accent);
    font-weight: 700;
    margin-top: 10px;
}

.price .amount {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.price .period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    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: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
}

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

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-note a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pricing-note a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* ===========================
   PRICING QUOTE CARD
   =========================== */
.pricing-quote-card {
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    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(59, 130, 246, 0.1) 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: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.quote-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
}

.quote-icon svg {
    stroke: white;
}

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

.pricing-quote-card > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    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: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.quote-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

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

.quote-feature-item span {
    color: rgba(255, 255, 255, 0.9);
    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: rgba(255, 255, 255, 0.6);
    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: rgba(59, 130, 246, 0.4);
}

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

.location-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.location-card p {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.location-detail {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.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 rgba(255, 255, 255, 0.1);
}

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

.connectivity-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    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: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.connectivity-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    stroke: #3b82f6;
}

.connectivity-list li strong {
    color: rgba(255, 255, 255, 0.95);
    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: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

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

.contact-card h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

.contact-form-section {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.3);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;
}

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

.form-content p {
    color: rgba(255, 255, 255, 0.7);
    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: white;
    font-weight: 500;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 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: white;
    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: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    padding: 50px 30px 30px;
}

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

.map-info h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-info p {
    color: rgba(255, 255, 255, 0.7);
    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: rgba(255, 255, 255, 0.7);
    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: rgba(59, 130, 246, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    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: rgba(59, 130, 246, 0.8);
}

.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: rgba(255, 255, 255, 0.8);
    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 rgba(255, 255, 255, 0.1);
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.8);
    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 rgba(255, 255, 255, 0.1);
}

.faq-category-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    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: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    color: white;
}

.faq-category-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: rgba(59, 130, 246, 0.5);
    color: white !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 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: white;
    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: #fff;
    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: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.plan-option input[type="radio"]:checked + .plan-option-content {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.plan-option:hover .plan-option-content {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

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

.plan-option-header h3 {
    color: #fff;
    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: rgba(255, 255, 255, 0.6);
}

.plan-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.featured-plan .plan-option-content {
    border: 2px solid rgba(37, 99, 235, 0.4);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    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: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-help {
    color: rgba(255, 255, 255, 0.6);
    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: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.addon-option input[type="checkbox"]:checked + .addon-content {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.addon-option:hover .addon-content {
    background: rgba(255, 255, 255, 0.08);
}

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

.addon-header h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

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

.addon-content p {
    color: rgba(255, 255, 255, 0.7);
    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: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-section h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.summary-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-style: italic;
}

.summary-plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

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

.summary-plan-info strong {
    color: #fff;
    font-size: 1rem;
}

.summary-plan-period {
    color: rgba(255, 255, 255, 0.6);
    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: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

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

.summary-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.summary-row.security-deposit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    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: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    margin-top: 15px;
}

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

.security-note p {
    color: rgba(255, 255, 255, 0.7);
    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: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.help-card p {
    color: rgba(255, 255, 255, 0.7);
    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;
    }
}