/* --- PREMIUM CORPORATE CO-WORKING THEME --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    /* Enterprise Color Palette */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;          /* Very soft gray for sections */
    --bg-dark: #0a192f;           /* Deep Corporate Navy */
    
    --accent-primary: #00b4d8;    /* Electric Teal/Cyan */
    --accent-hover: #0096c7;
    --accent-gold: #f59e0b;       /* For highlights/ratings */
    
    /* Text Colors */
    --text-dark: #0f172a;         /* Almost Black */
    --text-body: #475569;         /* Slate */
    --text-muted: #94a3b8;
    --text-light: #f8fafc;        /* Off-white for dark backgrounds */
    
    /* UI Elements */
    --border-color: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px -5px rgba(10, 25, 47, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(10, 25, 47, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --header-height: 90px;
    --border-radius: 12px;        /* Slightly sharper corners for corporate feel */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { color: var(--text-dark); font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* --- UTILITIES --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.py-mega { padding: 100px 0; }
.py-large { padding: 70px 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-dark h2, .bg-dark h3 { color: var(--text-light); }

/* --- BUTTONS --- */
.btn-primary {
    background: var(--accent-primary); color: #fff !important;
    padding: 16px 32px; border-radius: 6px; font-weight: 600; 
    display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.3); transition: var(--transition);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4); }

.btn-outline {
    background: transparent; color: var(--text-dark) !important;
    padding: 14px 32px; border-radius: 6px; font-weight: 600; border: 2px solid var(--border-color);
    display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); cursor: pointer;
}
.btn-outline:hover { border-color: var(--accent-primary); color: var(--accent-primary) !important; }

/* --- TOP BAR --- */
.top-bar { background: var(--bg-dark); color: var(--text-muted); font-size: 0.85rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--text-light); font-weight: 500; }
.top-bar a:hover { color: var(--accent-primary); }
.top-bar-left { display: flex; gap: 20px; }

/* --- HEADER --- */
header {
    position: sticky; top: 0; width: 100%; height: var(--header-height); z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color); transition: var(--transition); display: flex; align-items: center;
}
header.scrolled { height: 75px; box-shadow: var(--shadow-sm); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo h1 { font-size: 1.8rem; font-weight: 800; letter-spacing: -1px; color: var(--bg-dark); display: flex; align-items: center; gap: 8px;}
.logo h1 span { color: var(--accent-primary); }

.nav-links { display: flex; gap: 35px; list-style: none; align-items: center; margin: 0; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-dark); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--accent-primary); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; z-index: 1001; }
.hamburger span { width: 25px; height: 3px; background: var(--bg-dark); border-radius: 5px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--accent-primary);}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--accent-primary);}

/* --- HERO SECTION --- */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; padding: 60px 0; background: var(--bg-dark); overflow: hidden;}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.7) 50%, transparent 100%); }

.hero-content { position: relative; z-index: 1; max-width: 650px; color: var(--text-light); }
.hero-badge { display: inline-block; background: rgba(0, 180, 216, 0.2); color: var(--accent-primary); padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; border: 1px solid rgba(0, 180, 216, 0.3);}
.hero h1 { font-size: 4rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; }

/* --- SECTION HEADERS --- */
.section-header { margin-bottom: 50px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 15px; }
.section-header p { font-size: 1.1rem; color: var(--text-body); max-width: 600px; margin: 0 auto; }
.section-header.text-center { margin-left: auto; margin-right: auto; }

/* --- WORKSPACE CARDS (Grid 3) --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.workspace-card { background: var(--bg-white); border-radius: var(--border-radius); border: 1px solid var(--border-color); overflow: hidden; transition: var(--transition); cursor: pointer;}
.workspace-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--accent-primary); }
.workspace-img { height: 240px; width: 100%; overflow: hidden; position: relative;}
.workspace-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.workspace-card:hover .workspace-img img { transform: scale(1.05); }
.workspace-content { padding: 30px; }
.workspace-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.workspace-content p { color: var(--text-body); font-size: 0.95rem; margin-bottom: 20px; }
.workspace-features { list-style: none; margin-bottom: 20px; padding-top: 20px; border-top: 1px solid var(--border-color);}
.workspace-features li { font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; color: var(--text-body);}
.workspace-features li::before { content: '✓'; color: var(--accent-primary); font-weight: bold; }

/* --- AMENITIES GRID --- */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.amenity-card { background: var(--bg-white); padding: 30px; border-radius: var(--border-radius); border: 1px solid var(--border-color); display: flex; flex-direction: column; align-items: center; text-align: center; transition: var(--transition); }
.amenity-card:hover { border-color: var(--accent-primary); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.amenity-icon { font-size: 2.5rem; margin-bottom: 15px; color: var(--accent-primary); background: rgba(0, 180, 216, 0.1); width: 70px; height: 70px; display: flex; justify-content: center; align-items: center; border-radius: 50%; }
.amenity-card h4 { font-size: 1.1rem; margin-bottom: 5px; }

/* --- SPLIT LAYOUT (About/Location) --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img-wrapper { position: relative; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img-wrapper img { width: 100%; display: block; }
.experience-badge { position: absolute; bottom: 30px; left: -30px; background: var(--bg-white); padding: 20px 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 15px; border: 1px solid var(--border-color);}
.experience-badge h4 { font-size: 2.5rem; color: var(--accent-primary); line-height: 1; }
.experience-badge p { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--text-body); line-height: 1.2; margin: 0;}

/* --- STATS COUNTER --- */
.stats-wrapper { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 60px; margin-top: 60px;}
.stat-box { text-align: center; }
.stat-box h3 { font-size: 3.5rem; color: var(--text-light); margin-bottom: 5px; line-height: 1;}
.stat-box h3 span { color: var(--accent-primary); }
.stat-box p { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;}

/* --- TESTIMONIALS --- */
.testimonial-card { background: var(--bg-white); padding: 40px; border-radius: var(--border-radius); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); position: relative; }
.quote-icon { font-size: 4rem; color: rgba(0, 180, 216, 0.1); position: absolute; top: 20px; left: 30px; line-height: 1; font-family: serif; }
.stars { color: var(--accent-gold); font-size: 1.2rem; margin-bottom: 15px; position: relative; z-index: 1;}
.testimonial-text { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 25px; font-style: italic; position: relative; z-index: 1;}
.client-info h4 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 2px;}
.client-info p { font-size: 0.85rem; color: var(--text-muted);}

/* --- CTA SECTION --- */
.cta-box { background: var(--bg-dark); border-radius: var(--border-radius); padding: 80px 5%; text-align: center; color: var(--text-light); position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--accent-primary); }
.cta-box h2 { font-size: 3rem; margin-bottom: 15px; color: var(--text-light); }
.cta-box p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- FOOTER --- */
footer { background: var(--bg-light); padding: 80px 0 20px; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-brand h2 { font-size: 1.8rem; margin-bottom: 15px; color: var(--bg-dark); display: flex; align-items: center; gap: 8px;}
.footer-brand span { color: var(--accent-primary); }
.footer-brand p { color: var(--text-body); margin-bottom: 25px; font-size: 0.95rem; line-height: 1.6;}
.socials a { display: inline-flex; width: 40px; height: 40px; background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 50%; align-items: center; justify-content: center; font-size: 1.2rem; margin-right: 10px; transition: var(--transition); color: var(--text-body); }
.socials a:hover { background: var(--accent-primary); border-color: var(--accent-primary); color: #fff; transform: translateY(-3px); }

.footer-links h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--bg-dark); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-body); font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent-primary); }

.contact-info li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-body); font-size: 0.95rem; margin-bottom: 15px; line-height: 1.5;}
.contact-info li i { margin-top: 4px; color: var(--accent-primary); }

.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 0.85rem; }

/* --- ANIMATIONS (Triggered by JS) --- */
.reveal { opacity: 0; visibility: hidden; transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; visibility: visible; }
.slide-up { transform: translateY(40px); }
.slide-up.active { transform: translateY(0); }
.slide-left { transform: translateX(-40px); }
.slide-left.active { transform: translateX(0); }
.slide-right { transform: translateX(40px); }
.slide-right.active { transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.2rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 50px; }
    .split-img-wrapper { order: -1; }
    .experience-badge { left: 20px; bottom: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .top-bar-left span:last-child { display: none; } /* Hide address on small screens in top bar */
}

@media (max-width: 768px) {
    .top-bar { display: none; } /* Hide top bar on mobile for cleaner look */
    .nav-links, .header-actions { display: none; }
    .hamburger { display: flex; }
    
    /* Mobile Menu */
    .nav-container.menu-open .nav-links {
        display: flex; flex-direction: column; position: absolute; top: var(--header-height); left: 0;
        width: 100%; background: var(--bg-white); padding: 30px 5%; border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); align-items: flex-start;
    }
    .nav-container.menu-open .nav-links a { font-size: 1.1rem; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--bg-light); }
    
    .py-mega { padding: 60px 0; }
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}