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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    height: 100%;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* CSS Variables */
:root {
    --primary-orange: #ff8c00;
    --background: #f2f2f2;
    --secondary-orange: #ff6b35;
    --dark-orange: #f15a24;
    --accent-teal: #20b2aa;
    --primary-teal: #26c6da;
    --dark-bg: #1a1a1a;
    --light-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --orange-gradient: linear-gradient(135deg, #f7931e 0%, #f15a24 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    --gradient-hover: linear-gradient(135deg, var(--secondary-orange), var(--primary-orange));
}

/* Main Content Styles */
.main-content {
    margin-top: 100px;
    /* Account for fixed navbar */
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    color: #ff6b35;
    /* Orange color */
    font-weight: 600;
    margin: 0;
    padding: 2rem;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--dark-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 1rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link.active {
    color: var(--primary-orange);
    border-bottom: 2px solid rgba(209, 117, 12, 0.1);
    border-radius: 8px;
}

.nav-link i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Navbar Collapse Styles */
.navbar-collapsed .nav-menu {
    display: none;
}

.navbar-collapsed .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
}

.navbar-collapsed .nav-menu.mobile-layout {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-collapsed .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.navbar-collapsed .nav-link {
    padding: 15px 20px;
    display: block;
    width: 100%;
}

.navbar-collapsed #nav-toggle {
    display: block !important;
}

.navbar:not(.navbar-collapsed) #nav-toggle {
    display: none;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 800px;
    max-width: 1000px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.mega-menu-section {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-item {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
}

.mega-menu-item:hover {
    color: var(--primary-orange);
    border-left-color: var(--primary-orange);
    padding-left: 1.5rem;
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1001;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(247, 147, 30, 0.1);
    color: var(--primary-orange);
}

/* Navigation Right Side Elements */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.search-btn {
    margin-top: 12px;
}

.search-btn,
.language-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.search-btn:hover,
.language-btn:hover {
    background: rgba(247, 147, 30, 0.1);
    color: var(--primary-orange);
}

/* Search Bar Styles */
.search-container {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 300px;
    z-index: 1002;
}

.search-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.search-form {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.search-input {
    flex: 1;
    border: none;
    border-radius: 5px;
    padding: 2.5rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-bottom: 1px solid var(--primary-orange);
    border-color: var(--primary-orange);
}

.search-submit {
    background: var(--orange-gradient);
    border: none;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 180px;
    z-index: 1002;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.language-option:hover {
    background: rgba(247, 147, 30, 0.1);
    color: var(--primary-orange);
}

.language-option.active {
    background: rgba(247, 147, 30, 0.1);
    color: var(--primary-orange);
    font-weight: 600;
}

.language-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    margin-right: 10px;
    background-size: cover;
    background-position: center;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* CTA Button */
.cta-btn {
    background: var(--dark-orange);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
    background: var(--secondary-orange);
}

.nav-right .cta-btn {
    margin-left: 1rem;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-images img.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(124, 58, 237, 0.1),
            rgba(99, 102, 241, 0.1));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-card h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 700;
    line-height: 1.3;
}

.input-group {
    margin-bottom: 1rem;
    position: relative;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.input-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.input-group::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    opacity: 0.5;
    z-index: 10;
}

.search-input::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");
}

.location-input::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
}

.input-group ion-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
    z-index: 10;
    pointer-events: none;
}

.get-started-btn {
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* Popular Workspace Section */
.popular-section {
    padding: 5rem 2rem;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.section-title {
    flex: 1;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    flex: 1;
    margin-left: 2rem;
}

.section-description p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
    margin-left: 20px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.nav-btn.active {
    background: #ff6b35;
    color: white;
}

.nav-btn ion-icon {
    font-size: 1.2rem;
}

.workspace-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.workspace-grid::-webkit-scrollbar {
    display: none;
}

.workspace-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 400px;
    height: 500px;
    min-width: 780px;
}

.workspace-card:first-child {
    margin-left: 0;
}

.workspace-card:last-child {
    margin-right: 2rem;
}

.workspace-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.workspace-main {
    background-image: linear-gradient(135deg,
            rgba(124, 58, 237, 0.2),
            rgba(168, 85, 247, 0.2)),
        url("/assets/img/images/All-douala-img/5967789068915950825.jpg");
}

.workspace-secondary {
    background-image: linear-gradient(135deg,
            rgba(34, 197, 94, 0.2),
            rgba(22, 163, 74, 0.2)),
        url("/assets/img/mankis-coworking/yaounde/P1511106.JPG");
}

.workspace-third {
    background-image: linear-gradient(135deg,
            rgba(239, 68, 68, 0.2),
            rgba(220, 38, 38, 0.2)),
        url("/assets/img/images/All-douala-img/5967291110407654517.jpg");
}

.workspace-fourth {
    background-image: linear-gradient(135deg,
            rgba(245, 158, 11, 0.2),
            rgba(217, 119, 6, 0.2)),
        url("/assets/img/mankis-coworking/yaounde/P1511150.JPG");
}

.workspace-fifth {
    background-image: linear-gradient(135deg,
            rgba(59, 130, 246, 0.2),
            rgba(37, 99, 235, 0.2)),
        url("/assets/img/images/All-douala-img/5967789068915950823.jpg");
}

.workspace-sixth {
    background-image: linear-gradient(135deg,
            rgba(168, 85, 247, 0.2),
            rgba(147, 51, 234, 0.2)),
        url("/assets/img/mankis-coworking/yaounde/P1511177.JPG");
}

.workspace-seventh {
    background-image: linear-gradient(135deg,
            rgba(16, 185, 129, 0.2),
            rgba(5, 150, 105, 0.2)),
        url("/assets/img/images/All-douala-img/5965537269102266385.jpg");
}

.workspace-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.workspace-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
}

.discount-badge {
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.workspace-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.workspace-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.view-detail-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-detail-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Find Workspace Section */
.find-workspace-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.find-workspace-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.find-workspace-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    flex-shrink: 0;
}

.find-workspace-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
    flex-shrink: 0;
}

.workspace-listings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.workspace-listing {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.workspace-listing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.workspace-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.workspace-listing:hover .workspace-image img {
    transform: scale(1.02);
}

.discount-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #ff4444;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 68, 68, 0.1);
}

/* Workspace Card Info Styling */
.workspace-info {
    padding: 1.5rem;
    background: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-right: 2px;
}

.price-period {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
}

.price-container ion-icon {
    color: #666;
    font-size: 1rem;
    margin-left: auto;
    margin-right: 4px;
}

.price-container span:last-child {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-detail-btn-new {
    background: #6366f1;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    margin-left: 1rem;
}

.view-detail-btn-new:hover {
    background: #5855eb;
}

.workspace-detail {
    margin-top: 1rem;
}

.workspace-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.workspace-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Find Workspace Section */
@media (max-width: 768px) {
    .find-workspace-header {
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }

    .find-workspace-header h2 {
        font-size: 2rem;
    }

    .find-workspace-header p {
        max-width: 100%;
    }

    .workspace-listings {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .workspace-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .workspace-info {
        padding: 1.25rem;
    }

    .find-workspace-section {
        padding: 3rem 1rem;
    }

    .workspace-price-location {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .workspace-card {
        flex: 0 0 350px;
        min-width: 350px;
    }

    .section-header {
        flex-direction: column;
        gap: 2rem;
    }

    .section-description {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content {
        justify-content: center;
        padding: 1rem;
    }

    .search-card {
        width: 100%;
        max-width: none;
        margin: 1rem;
    }

    .search-card h1 {
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .navbar {
        padding: 1rem;
    }

    .workspace-card {
        flex: 0 0 300px;
        min-width: 300px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .search-card {
        padding: 1.5rem;
    }

    .workspace-content {
        padding: 1.5rem;
    }

    .workspace-title {
        font-size: 1.4rem;
    }
}

/* Join Us Section Styles */
.join-us-section {
    position: relative;
    padding: 6rem 2rem 8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.join-us-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.join-us-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

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

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

.image-1 {
    width: 200px;
    height: 140px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.image-2 {
    width: 180px;
    height: 120px;
    top: 60%;
    left: 10%;
    animation-delay: 1.5s;
}

.image-3 {
    width: 160px;
    height: 110px;
    top: 15%;
    right: 8%;
    animation-delay: 3s;
}

.image-4 {
    width: 190px;
    height: 130px;
    top: 65%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

.join-us-text {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.join-us-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.brand-highlight {
    color: #ff6b35;
}

.get-started-btn-large {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.get-started-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5855eb, #7c3aed);
}

.get-started-btn-large ion-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.get-started-btn-large:hover ion-icon {
    transform: translateX(3px);
}

.decorative-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.orange-circle {
    position: absolute;
    bottom: 5%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35, #ff8c00);
    border-radius: 50%;
    opacity: 0.8;
    animation: pulse 4s ease-in-out infinite;
}

.green-curve {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 80px;
    height: 160px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 40px;
    transform: rotate(15deg);
    opacity: 0.7;
    animation: sway 5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(25deg);
    }
}

.mankis-text {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mankis-text span {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 2rem;
    user-select: none;
    font-family: "Inter", sans-serif;
}

/* Footer Section Styles */
.footer-section {
    background: #1f2937;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

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

.social-links a {
    color: #9ca3af;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .join-us-text h2 {
        font-size: 2.2rem;
    }

    .mankis-text span {
        font-size: 6rem;
        letter-spacing: 1.5rem;
    }

    .floating-image {
        opacity: 0.8;
    }

    .image-1,
    .image-2,
    .image-3,
    .image-4 {
        width: 150px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .join-us-section {
        padding: 4rem 1rem 6rem;
    }

    .join-us-text {
        margin: 1rem;
        padding: 1.5rem;
    }

    .join-us-text h2 {
        font-size: 1.8rem;
    }

    .get-started-btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .mankis-text span {
        font-size: 4rem;
        letter-spacing: 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        order: 2;
    }

    .footer-copyright {
        order: 1;
    }

    .social-links {
        order: 3;
    }
}

@media (max-width: 480px) {
    .floating-image {
        display: none;
    }

    .join-us-text h2 {
        font-size: 1.5rem;
    }

    .mankis-text span {
        font-size: 3rem;
        letter-spacing: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    #nav-toggle {
        display: block !important;
    }

    .mega-menu {
        min-width: 600px;
    }

    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .search-container,
    .language-dropdown {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        padding: 1.5rem;
    }

    .container {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo {
        height: 35px;
    }

    .nav-right .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }

    .dropdown.mobile-active,
    .mega-menu.mobile-active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: 500px;
        overflow-y: auto;
    }

    .dropdown,
    .mega-menu {
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 1.2rem 0;
        font-size: 1.1rem;
    }

    .nav-link i {
        transition: transform 0.3s ease;
    }

    .mobile-active+.nav-link i,
    .nav-item:has(.mobile-active) .nav-link i {
        transform: rotate(180deg);
    }

    .mega-menu,
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--background);
        margin-top: 0.5rem;
        margin-left: 1rem;
        border-left: 3px solid var(--primary-orange);
        padding-left: 1rem;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .search-container,
    .language-dropdown {
        position: fixed;
        top: 80px;
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }


}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo {
        height: 30px;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-right .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
}

@media (max-width: 400px) {
    .nav-right .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo {
        height: 25px;
    }

    .nav-right .cta-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .search-btn,
    .language-btn {
        padding: 0.3rem;
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .dropdown.tablet-active,
    .mega-menu.tablet-active {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}