/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #B17006;
    --accent-light: #DBC0A0;
    --text-color: #333;
    --light-gray: #f8f8f8;
    --spacing-unit: 1rem;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.site-header.scrolled {
    background-color: var(--primary-color);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.site-header.scroll-down {
    transform: translateY(0);
}

.site-header.scroll-up {
    transform: translateY(0);
    background-color: var(--primary-color);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
}

/* Logo */
.logo {
    justify-self: start;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

/* Main Navigation */
.main-nav {
    justify-self: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--accent-light);
}

/* Auth Buttons */
.auth-buttons {
    justify-self: end;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.auth-button {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.auth-button.login {
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.auth-button.signup {
    background-color: var(--accent-color);
    color: white;
    border: 1.5px solid var(--accent-color);
}

.auth-button:hover {
    transform: translateY(-2px);
}

.auth-button.login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.auth-button.signup:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(177, 112, 6, 0.2);
}

/* Navigation Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    background-color: var(--primary-color);
    overflow: hidden;
    background-image: url('../images/studio-hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    width: 50%;
    padding: 0 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    color: white;
    margin-top: 80px; /* Adjust for fixed header */
}

.welcome-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.6s;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button:hover::after {
    transform: translateX(100%);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(177, 112, 6, 0.2);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Remove the duplicate hero image and before pseudo-element */
.hero::before,
.hero-image {
    display: none;
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    background-color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    z-index: 2;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-down.hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll-down span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-down .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.scroll-down .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

/* Hero SVG */
.hero-svg {
    position: absolute;
    right: 2%;
    bottom: 5%;
    width: 500px;
    height: auto;
    z-index: 2;
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(177, 112, 6, 0.1));
}

.hero-svg path {
    animation: morphPath 20s ease-in-out infinite alternate;
}

.hero-svg path:nth-child(2) {
    animation-delay: -5s;
}

.hero-svg path:nth-child(3) {
    animation-delay: -10s;
}

@keyframes morphPath {
    0% {
        d: path("M48.8,-46.1C63.6,-33.8,76.3,-16.9,76.2,-0.1C76.1,16.7,63.1,33.4,48.3,45.7C33.4,58,16.7,65.8,-1.9,67.7C-20.5,69.6,-41,65.5,-54.8,53.2C-68.5,40.9,-75.5,20.5,-73.6,2.1C-71.6,-16.3,-60.7,-32.5,-47,-44.8C-33.3,-57.1,-16.7,-65.4,0.1,-65.5C16.9,-65.6,33.9,-57.5,48.8,-46.1Z");
    }
    50% {
        d: path("M43.3,-33.2C52.5,-18.8,54.3,-1.9,49.7,12.7C45.1,27.2,34.1,39.5,19.8,46.1C5.5,52.8,-12.1,53.9,-27.4,47.4C-42.7,40.9,-55.7,26.8,-58.5,10.4C-61.3,-6,-53.9,-24.7,-41.7,-38.8C-29.5,-52.9,-12.5,-62.4,2,-63.7C16.4,-65,34.1,-47.7,43.3,-33.2Z");
    }
    100% {
        d: path("M38.1,-38.1C47.7,-27.5,52.8,-13.7,52.4,-0.4C52,12.9,46.1,25.9,36.4,35.6C26.7,45.4,13.4,51.9,-0.8,52.7C-14.9,53.5,-29.9,48.5,-41.1,38.7C-52.4,28.9,-59.9,14.4,-59.2,0.7C-58.5,-13.1,-49.5,-26.2,-38.2,-36.8C-26.8,-47.4,-13.4,-55.5,0.2,-55.7C13.7,-55.9,27.5,-48.2,38.1,-38.1Z");
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-10px, 10px);
    }
    50% {
        transform: translate(0, -10px);
    }
    75% {
        transform: translate(10px, 10px);
    }
}

/* Spaces Section */
.spaces-section {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.6;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.space-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.space-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.space-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.space-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
}

.space-content {
    padding: 1.5rem;
}

.space-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.space-content p {
    color: rgba(26, 26, 26, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.space-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.space-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.7);
}

.space-features i {
    color: var(--accent-color);
}

.space-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.space-link:hover {
    gap: 0.75rem;
}

.section-footer {
    text-align: center;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .header-container {
        grid-template-columns: auto auto;
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: flex;
        justify-self: end;
        z-index: 1001;
    }

    .auth-buttons {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/pattern.png');
        opacity: 0.03;
        pointer-events: none;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .main-nav.active ul {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        transition-delay: calc(var(--item-index) * 0.1s);
    }

    .main-nav.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav a {
        font-size: 1.5rem;
        display: inline-block;
        padding: 1rem;
        width: 100%;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
        position: relative;
        overflow: hidden;
    }

    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: 0.8rem;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--accent-light);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .main-nav a:hover {
        color: white;
    }

    .main-nav a:hover::after {
        width: 30px;
    }

    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Hamburger Animation */
    .nav-toggle {
        width: 30px;
        height: 25px;
        position: relative;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background-color: white;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .nav-toggle span:nth-child(1) {
        top: 0;
    }

    .nav-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
        width: 75%;
        right: 0;
    }

    .nav-toggle span:nth-child(3) {
        bottom: 0;
        width: 50%;
        right: 0;
    }

    .nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
        width: 100%;
    }

    .nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
        width: 100%;
    }

    /* Add mobile auth buttons */
    .main-nav .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 80%;
        max-width: 300px;
        margin-top: 3rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav.active .mobile-auth {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .mobile-auth .auth-button {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.03;
    pointer-events: none;
}

.why-choose-us .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    position: relative;
}

.why-choose-us .section-subtitle {
    color: var(--accent-light);
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.why-choose-us .section-subtitle::before,
.why-choose-us .section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent-light);
    transform: translateY(-50%);
}

.why-choose-us .section-subtitle::before {
    right: 100%;
}

.why-choose-us .section-subtitle::after {
    left: 100%;
}

.why-choose-us .section-header h2 {
    color: white;
    font-size: 2.8rem;
    margin: 1rem 0;
}

.why-choose-us .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 16px;
    transform: rotate(10deg);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    transform: rotate(0deg);
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.why-choose-us .section-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-choose-us .cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--accent-light);
    color: var(--accent-light);
    padding: 1.2rem 3rem;
}

.why-choose-us .cta-button.secondary:hover {
    background-color: var(--accent-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(219, 192, 160, 0.3);
}

@media screen and (max-width: 768px) {
    .why-choose-us {
        padding: 6rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .why-choose-us .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(177, 112, 6, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    will-change: transform, opacity;
    pointer-events: auto;
}

.floating-contact.hide {
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.floating-contact i {
    font-size: 1.25rem;
    display: inline-block;
}

.floating-contact span {
    display: inline-block;
    white-space: nowrap;
}

.floating-contact:hover {
    transform: translateY(-5px);
    background-color: var(--accent-light);
    box-shadow: 0 8px 25px rgba(177, 112, 6, 0.3);
    color: white;
}

.floating-contact.hide:hover {
    transform: translateY(100px);
}

@media screen and (max-width: 768px) {
    .floating-contact {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.875rem;
        min-width: 45px;
        min-height: 45px;
        justify-content: center;
    }
    
    .floating-contact span {
        display: none;
    }
    
    .floating-contact i {
        font-size: 1.5rem;
        margin: 0;
    }
}

/* Ensure floating contact stays above mobile menu */
body.nav-open .floating-contact {
    z-index: 1002;
}

/* Featured Spaces Section */
.featured-spaces {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.featured-spaces::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.03;
    pointer-events: none;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.space-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.space-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.space-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-space {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: 500;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.space-card:hover .view-space {
    transform: translateY(0);
}

.view-space:hover {
    background: white;
    color: var(--primary-color);
}

.space-content {
    padding: 1.5rem;
}

.space-content h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    color: var(--text-dark);
}

.space-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.space-features {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.space-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.space-features i {
    color: var(--accent-color);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

@media screen and (max-width: 768px) {
    .featured-spaces {
        padding: 4rem 0;
    }

    .spaces-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .space-content {
        padding: 1.25rem;
    }

    .section-footer {
        margin-top: 2rem;
    }
} 