@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";.header{z-index:1000;width:100%;padding:1.5rem 0;transition:all .3s;position:fixed;top:0;left:0}.header-scrolled{background:#ffffffe6;border-radius:0;padding:.75rem 0}.header-container{justify-content:space-between;align-items:center;display:flex}.logo img{height:50px;transition:height .3s}.header-scrolled .logo img{height:40px}.desktop-nav{align-items:center;gap:2rem;display:flex}.nav-list{gap:1.5rem;display:flex}.nav-link{color:var(--text-white);font-weight:500;position:relative}.header-scrolled .nav-link{color:var(--text-dark)}.nav-link:after{content:"";background-color:var(--primary-color);width:0;height:2px;transition:width .3s;position:absolute;bottom:-4px;left:0}.nav-link:hover:after{width:100%}.mobile-toggle{color:var(--text-white);cursor:pointer;background:0 0;border:none;display:none}.header-scrolled .mobile-toggle{color:var(--text-dark)}.mobile-nav{background-color:var(--bg-color);width:100%;box-shadow:var(--shadow-md);max-height:0;padding:0;transition:max-height .3s;position:absolute;top:100%;left:0;overflow:hidden}.mobile-nav.open{max-height:400px}.mobile-nav-list{flex-direction:column;gap:1rem;padding:1rem 1.5rem;display:flex}.w-full{width:100%}.text-center{text-align:center}@media (width<=768px){.desktop-nav{display:none}.mobile-toggle{display:block}}.hero{background:url(/images/wk_photos/coworking-1.jpg) 50%/cover no-repeat;align-items:center;min-height:100vh;padding-top:80px;display:flex;position:relative}.hero-overlay{background:linear-gradient(90deg,#0f172ae6,#0f172a66);width:100%;height:100%;position:absolute;top:0;left:0}.hero-content{z-index:1;max-width:800px;color:var(--text-white);position:relative}.hero-title{color:var(--text-white);margin-bottom:1.5rem;font-size:3.5rem;line-height:1.1}.hero-subtitle{color:#e2e8f0;margin-bottom:1rem;font-size:1.25rem}.hero-location-text{color:#cbd5e1;margin-bottom:2.5rem;font-size:1rem}.hero-cta-group{flex-wrap:wrap;gap:1rem;display:flex}.btn-lg{padding:1rem 2rem;font-size:1.125rem}.hero .btn-outline{border-color:var(--text-white);color:var(--text-white)}.hero .btn-outline:hover{background-color:var(--text-white);color:var(--text-dark)}@media (width<=768px){.hero-title{font-size:2.5rem}}.workspace-card{background-color:var(--bg-color);flex-direction:column;transition:transform .3s,box-shadow .3s;display:flex;overflow:hidden}.workspace-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-5px)}.workspace-img-wrapper{height:250px;overflow:hidden}.workspace-img{object-fit:cover;width:100%;height:100%;transition:transform .5s}.workspace-card:hover .workspace-img{transform:scale(1.05)}.workspace-content{flex-direction:column;flex:1;padding:2rem;display:flex}.workspace-content h3{margin-bottom:1rem;font-size:1.5rem}.workspace-desc{color:var(--text-light);flex:1;margin-bottom:1.5rem}.workspace-benefits{margin-bottom:2rem}.workspace-benefits li{color:var(--text-dark);margin-bottom:.5rem;font-size:.95rem;font-weight:500}.amenities-grid{grid-template-columns:repeat(4,1fr);gap:2rem;display:grid}.amenity-card{background-color:var(--bg-color);border-radius:var(--radius-xl);text-align:center;z-index:1;border:1px solid #e2e8f099;padding:2.5rem 2rem;transition:all .4s cubic-bezier(.175,.885,.32,1.275);position:relative;overflow:hidden;box-shadow:0 4px 20px #00000008}.amenity-card:before{content:"";opacity:0;z-index:-1;background:linear-gradient(135deg,#2b5cff0d 0%,#fff0 100%);width:100%;height:100%;transition:opacity .4s;position:absolute;top:0;left:0}.amenity-card:hover{border-color:#2b5cff4d;transform:translateY(-10px);box-shadow:0 20px 40px #2b5cff1a}.amenity-card:hover:before{opacity:1}.amenity-icon-wrapper{background:linear-gradient(135deg,#e0e7ff 0%,#f1f5f9 100%);border-radius:20px;justify-content:center;align-items:center;width:72px;height:72px;margin:0 auto 1.5rem;padding:16px;transition:all .4s;display:flex;box-shadow:inset 0 2px 4px #fffc,0 4px 10px #0000000d}.amenity-card:hover .amenity-icon-wrapper{background:linear-gradient(135deg, var(--primary-color) 0%, #4f46e5 100%);transform:scale(1.1)rotate(5deg)}.amenity-icon{object-fit:contain;width:100%;height:100%;transition:filter .4s}.amenity-card:hover .amenity-icon{filter:invert()}.amenity-card h4{color:var(--text-dark);margin-bottom:1rem;font-size:1.15rem;font-weight:700;transition:color .3s}.amenity-card:hover h4{color:var(--primary-color)}.amenity-card p{color:var(--text-light);font-size:.95rem;line-height:1.6}@media (width<=1200px){.amenities-grid{grid-template-columns:repeat(3,1fr)}}@media (width<=768px){.amenities-grid{grid-template-columns:repeat(2,1fr)}.amenity-card{padding:1.5rem 1rem}}@media (width<=480px){.amenities-grid{grid-template-columns:1fr}}.faq-container{flex-direction:column;gap:1rem;max-width:800px;margin:0 auto;display:flex}.faq-item{background-color:var(--bg-color);border:1px solid var(--border-color);border-radius:var(--radius-md);cursor:pointer;transition:all .3s;overflow:hidden}.faq-item:hover{border-color:var(--primary-color)}.faq-item.active{border-color:var(--primary-color);box-shadow:var(--shadow-sm)}.faq-question{justify-content:space-between;align-items:center;padding:1.5rem;display:flex}.faq-question h3{margin:0;font-size:1.125rem;font-weight:600}.faq-icon{color:var(--primary-color);flex-shrink:0}.faq-answer{background-color:#f8fafc;max-height:0;padding:0 1.5rem;transition:max-height .3s,padding .3s;overflow:hidden}.faq-item.active .faq-answer{max-height:200px;padding:0 1.5rem 1.5rem}.faq-answer p{color:var(--text-light);margin:0}.contact-form-container{background-color:var(--bg-color);padding:2.5rem}.contact-form{flex-direction:column;gap:1.25rem;display:flex}.form-group{flex-direction:column;gap:.5rem;display:flex}.form-group label{color:var(--text-dark);font-size:.95rem;font-weight:600}.form-group input,.form-group select,.form-group textarea{border:1px solid var(--border-color);border-radius:var(--radius-md);background-color:var(--bg-light);padding:.75rem 1rem;font-family:inherit;font-size:1rem;transition:border-color .3s,box-shadow .3s}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--primary-color);background-color:var(--bg-color);outline:none;box-shadow:0 0 0 3px #2b5cff1a}.btn-submit{width:100%;margin-top:.5rem;padding:1rem}.form-success-msg{color:#166534;border-radius:var(--radius-md);text-align:center;background-color:#dcfce7;margin-top:1rem;padding:1rem;font-weight:500;animation:.3s ease-out fadeIn}.map-container{border-radius:var(--radius-lg);width:100%;height:100%;min-height:400px;padding:0;overflow:hidden}.footer{background-color:var(--bg-dark);color:var(--text-white);padding:4rem 0 2rem}.footer-logo{height:60px;margin-bottom:1.5rem}.footer-desc{color:#94a3b8;line-height:1.6}.footer-heading{color:var(--text-white);margin-bottom:1.5rem;font-size:1.25rem}.footer-links ul{flex-direction:column;gap:.75rem;display:flex}.footer-links a{color:#94a3b8}.footer-links a:hover{color:var(--primary-color)}.contact-item{color:#94a3b8;gap:1rem;margin-bottom:1.25rem;display:flex}.contact-icon{color:var(--primary-color);flex-shrink:0}.footer-bottom{text-align:center;color:#64748b;border-top:1px solid #1e293b;margin-top:3rem;padding-top:2rem;font-size:.875rem}:root{--primary-color:#2b5cff;--primary-hover:#1e45c7;--secondary-color:#f7941d;--bg-color:#fff;--bg-light:#f8fafc;--bg-dark:#0f172a;--text-dark:#1e293b;--text-light:#64748b;--text-white:#fff;--border-color:#e2e8f0;--radius-sm:.375rem;--radius-md:.5rem;--radius-lg:1rem;--radius-xl:1.5rem;--shadow-sm:0 1px 2px 0 #0000000d;--shadow-md:0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;--shadow-lg:0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;--shadow-hover:0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;--glass-bg:#ffffffb3;--glass-border:#ffffff4d}*{box-sizing:border-box;margin:0;padding:0}body{color:var(--text-dark);background-color:var(--bg-color);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:Inter,sans-serif;line-height:1.6;overflow-x:hidden}a{color:inherit;text-decoration:none;transition:color .3s}ul{list-style:none}h1,h2,h3,h4,h5,h6{color:var(--bg-dark);font-weight:700;line-height:1.2}img{max-width:100%;height:auto;display:block}.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}.section{padding:6rem 0}.section-light{background-color:var(--bg-light)}.section-title{text-align:center;margin-bottom:4rem}.section-title h2{margin-bottom:1rem;font-size:2.5rem}.section-title p{color:var(--text-light);max-width:600px;margin:0 auto;font-size:1.125rem}.btn{border-radius:var(--radius-md);cursor:pointer;border:none;justify-content:center;align-items:center;padding:.75rem 1.5rem;font-size:1rem;font-weight:600;transition:all .3s;display:inline-flex}.btn-primary{background-color:var(--primary-color);color:var(--text-white);box-shadow:var(--shadow-md)}.btn-primary:hover{background-color:var(--primary-hover);box-shadow:var(--shadow-lg);color:var(--text-white);transform:translateY(-2px)}.btn-secondary{background-color:var(--secondary-color);color:var(--text-white);box-shadow:var(--shadow-md)}.btn-secondary:hover{filter:brightness(.9);box-shadow:var(--shadow-lg);transform:translateY(-2px)}.btn-outline{color:var(--primary-color);border:2px solid var(--primary-color);background-color:#0000}.btn-outline:hover{background-color:var(--primary-color);color:var(--text-white)}.grid{gap:2rem;display:grid}.grid-cols-2{grid-template-columns:repeat(2,1fr)}.grid-cols-3{grid-template-columns:repeat(3,1fr)}.grid-cols-4{grid-template-columns:repeat(4,1fr)}@media (width<=1024px){.grid-cols-4,.grid-cols-3{grid-template-columns:repeat(2,1fr)}}@media (width<=768px){.grid-cols-4,.grid-cols-3,.grid-cols-2{grid-template-columns:1fr}.section{padding:4rem 0}.section-title h2{font-size:2rem}}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.animate-fade-in{animation:.8s ease-out forwards fadeIn}.glass-card{background:var(--glass-bg);-webkit-backdrop-filter:blur(10px);border:1px solid var(--glass-border);border-radius:var(--radius-lg);box-shadow:var(--shadow-md)}.shorts-grid{flex-wrap:wrap;justify-content:center;gap:2rem;display:flex}.short-container{border-radius:var(--radius-lg);background:var(--bg-color);box-shadow:var(--shadow-md);flex-direction:column;align-items:center;transition:transform .3s,box-shadow .3s;display:flex;overflow:hidden}.short-container:hover{box-shadow:var(--shadow-lg);transform:translateY(-5px)}.short-container iframe{border-radius:var(--radius-lg) var(--radius-lg) 0 0;border:none}.short-title{color:var(--text-dark);text-align:center;width:100%;padding:1.25rem 1rem;font-size:1.1rem;font-weight:700}
