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

:root {
    --primary: #1a1a1a;
    --secondary: #2c5f2d;
    --accent: #c9a566;
    --light: #f5f5f5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border: #e0e0e0;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth scrolling for all browsers */
html {
    -webkit-overflow-scrolling: touch;
}

/* Better text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Touch-friendly links and buttons */
a,
button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

/* Header Top Bar */
.header-top {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo-img {
    height: 115px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.cta-button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 165, 102, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    /* Increased to ensure button visibility */
    max-height: 100vh;
    /* Constrain to viewport height */
    overflow: hidden;
}

@supports (height: 100dvh) {
    .hero {
        height: 100dvh;
    }
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(44, 95, 45, 0.6));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
    /* Ensure content fits within viewport */
    max-height: calc(100vh - 160px);
    /* Account for header and ensure button visibility */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 20;
    /* Higher z-index to ensure visibility */
    margin-top: 20px;
    /* Ensure buttons are always visible at bottom of viewport */
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 165, 102, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-full,
.btn-outline-full,
.btn-dark-full {
    width: 100%;
    text-align: center;
}

.btn-primary-full {
    background: var(--accent);
    color: var(--white);
}

.btn-outline-full {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-full:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-dark-full {
    background: var(--primary);
    color: var(--white);
}

.btn-white-sm {
    background: var(--white);
    color: var(--primary);
    padding: 10px 25px;
    font-size: 14px;
}


.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

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

.section-header-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Location Section */
.location-section {
    background: var(--white);
}

.single-location {
    max-width: 1000px;
    margin: 0 auto;
}

.location-card-large {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-card-large .location-image {
    height: 400px;
    overflow: hidden;
}

.location-card-large .location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details {
    padding: 50px;
    text-align: center;
}

.location-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
}

.location-details .address {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 500;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.feature-icon {
    font-size: 28px;
}

.feature-item span:last-child {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Workspaces Section */
.workspaces-section {
    background: var(--light);
}

.workspace-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 2px solid var(--border);
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.workspace-tab-content {
    display: none;
}

.workspace-tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workspace-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.workspace-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.workspace-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.workspace-details>p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 15px;
    color: var(--text-dark);
}

/* Amenities Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

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

.amenity-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Plans Section */
.plans-section {
    background: var(--light);
}

.plans-grid,
.plans-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular {
    border: 3px solid var(--accent);
    transform: scale(1.05);
}

.plan-card.premium {
    border: 3px solid var(--primary);
}

.popular-badge,
.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.popular-badge {
    background: var(--accent);
}

.premium-badge {
    background: var(--primary);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.plan-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
}

.plan-price .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    color: var(--text-light);
    align-self: flex-end;
    padding-bottom: 10px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

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

.contact-pricing {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    display: block;
    padding: 20px 0;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.event-image {
    position: relative;
    height: 250px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-date .day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-content>p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 15px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card>p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.method-details p {
    color: var(--text-light);
}

.whatsapp-method {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 12px;
}

.whatsapp-method .method-icon {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-method h4,
.whatsapp-method p {
    color: var(--white);
}

.whatsapp-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--white);
    color: #25D366;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.whatsapp-float span {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover span {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover svg {
    transform: rotate(15deg);
}

.contact-form-container {
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

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

.social-links a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--accent);
}

.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);
}

/* Animations */
.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Large Desktops (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-content h1 {
        font-size: 80px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* MacBook specific viewport heights */
@media screen and (min-width: 1200px) and (max-height: 900px) {
    .hero {
        min-height: 600px;
        max-height: 85vh;
        /* Use less viewport height on shorter screens */
    }

    .hero-content {
        max-height: calc(85vh - 120px);
    }

    .hero-content h1 {
        font-size: 56px;
        /* Slightly smaller on shorter screens */
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        margin-bottom: 20px;
    }
}

/* Laptop/Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid,
    .plans-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .section-header-center h2 {
        font-size: 42px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 10px;
    }

    .header-info {
        font-size: 12px;
        gap: 15px;
    }

    .cta-button {
        display: none;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .workspace-inner {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .workspace-image {
        order: -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .location-details {
        padding: 40px 30px;
    }

    .map-container iframe {
        height: 350px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-header-center h2 {
        font-size: 36px;
    }

    .section-header-center p {
        font-size: 16px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .plans-grid,
    .plans-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-description {
        min-height: auto;
    }

    .plan-card.popular,
    .plan-card.premium {
        transform: scale(1);
    }

    .plan-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .amenity-card {
        padding: 25px 20px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .workspace-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .location-card-large .location-image {
        height: 250px;
    }

    .location-details h3 {
        font-size: 28px;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-column:first-child {
        grid-column: 1;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-info h2 {
        font-size: 32px;
    }
}

/* Mobile Landscape (480px - 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }

    .about-image,
    .workspace-image {
        height: 300px;
    }

    .workspace-inner {
        padding: 20px;
    }

    .event-image {
        height: 200px;
    }

    .location-card-large .location-image {
        height: 200px;
    }

    .location-details {
        padding: 30px 20px;
    }

    .location-details h3 {
        font-size: 24px;
    }

    .location-details .address {
        font-size: 16px;
    }

    .map-container {
        margin-top: 30px;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Mobile Portrait (320px - 479px) */
@media (max-width: 479px) {
    .header-top {
        padding: 8px 0;
    }

    .header-info {
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
        text-align: center;
    }

    .logo h1 {
        font-size: 22px;
    }

    .logo-img {
        height: 35px;
        max-width: 150px;
    }

    .footer-logo-img {
        height: 40px;
        max-width: 180px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .section-header-center h2 {
        font-size: 24px;
    }

    .section-header-center p {
        font-size: 15px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-image {
        height: 250px;
    }

    .location-card-large .location-image {
        height: 180px;
    }

    .location-details {
        padding: 20px 15px;
    }

    .location-details h3 {
        font-size: 22px;
    }

    .location-details .address {
        font-size: 14px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .amenity-card,
    .plan-card {
        padding: 20px 15px;
    }

    .plan-price .amount {
        font-size: 48px;
    }

    .event-content h3 {
        font-size: 18px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .contact-info h2 {
        font-size: 26px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .method-icon {
        margin: 0 auto;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-float span {
        display: none;
    }

    .map-container {
        margin-top: 20px;
    }

    .map-container iframe {
        height: 200px;
        border-radius: 10px;
    }
}

/* ===== Section Padding ===== */
section {
    padding: 80px 0;
}

/* ===== Comparison Section ===== */
.comparison-section {
    background: var(--light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 15px;
}

.comparison-table thead {
    background: var(--primary);
    color: var(--white);
}

.comparison-table th {
    padding: 18px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table th.highlight-col {
    background: var(--accent);
    color: var(--white);
}

.comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.comparison-table td.highlight-col {
    background: rgba(201, 165, 102, 0.08);
    font-weight: 600;
    color: var(--secondary);
}

.comparison-table tbody tr:hover {
    background: rgba(201, 165, 102, 0.04);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-note {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-note a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.comparison-note a:hover {
    text-decoration: underline;
}

/* ===== Blog Section ===== */
.blog-section {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 25px;
}

.blog-content time {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.blog-content h3 {
    font-size: 18px;
    margin: 10px 0 15px;
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.blog-link:hover {
    color: var(--secondary);
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 15px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(201, 165, 102, 0.05);
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 165, 102, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== Responsive: New Sections ===== */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
    }
}

@media (max-width: 767px) {
    .blog-image {
        height: 180px;
    }

    .blog-content h3 {
        font-size: 16px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .blog-content {
        padding: 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 18px;
    }
}

/* Blog & Article Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-listing-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 30px;
}

.blog-content time {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.blog-content h2,
.blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h2 a,
.blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-content h2 a:hover,
.blog-content h3 a:hover {
    color: var(--secondary);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--accent);
}

/* Article Styles */
.article-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 120px 0 80px;
}

.article-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.article-category {
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.article-excerpt {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.article-content {
    padding: 80px 0;
}

.article-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-image {
    margin-bottom: 40px;
}

.article-image img {
    width: 100%;
    border-radius: 12px;
}

.article-image figcaption {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

.table-of-contents {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.table-of-contents h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--secondary);
}

.article-body h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.article-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.article-body h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.related-posts {
    list-style: none;
}

.related-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.related-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-posts a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-posts a:hover {
    color: var(--secondary);
}

/* Location & Service Pages */
.location-hero,
.service-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 120px 0 80px;
}

.location-hero-content,
.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-badge {
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-subtitle,
.service-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

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

.price-highlight {
    margin: 30px 0 40px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
}

.price-period {
    font-size: 24px;
    opacity: 0.8;
}

.price-note {
    display: block;
    font-size: 16px;
    opacity: 0.8;
    margin-top: 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.location-hero-image,
.service-hero-image {
    text-align: center;
    margin-top: 40px;
}

.location-hero-image img,
.service-hero-image img {
    max-width: 600px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Benefits & Features Sections */
.why-location-section,
.whats-included-section {
    padding: 80px 0;
}

.benefits-grid,
.included-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card,
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
}

.benefit-icon,
.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3,
.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p,
.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Tables */
.pricing-details-section {
    padding: 80px 0;
    background: var(--light);
}

.pricing-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-option {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-5px);
}

.pricing-option.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 15px;
}

.price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

.price .period {
    font-size: 18px;
    color: var(--text-light);
}

.pricing-description {
    color: var(--text-light);
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-dark);
}

.pricing-features li:before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.newsletter-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #b8954d;
}

/* Additional Component Styles */
.location-features-section {
    padding: 80px 0;
}

.location-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-features-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.location-features-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.location-features-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.transportation-section {
    padding: 80px 0;
    background: var(--light);
}

.transportation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.transport-option {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.transport-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.transport-option h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.transport-option ul {
    list-style: none;
    padding: 0;
}

.transport-option li {
    padding: 8px 0;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.transport-option li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.workspace-options-section {
    padding: 80px 0;
}

.workspace-comparison {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.workspace-option {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.workspace-image {
    flex: 0 0 300px;
}

.workspace-image img {
    width: 100%;
    border-radius: 12px;
}

.workspace-details {
    flex: 1;
}

.workspace-details h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.workspace-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.workspace-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.workspace-features li {
    padding: 8px 0;
    color: var(--text-dark);
    padding-left: 25px;
    position: relative;
}

.workspace-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.community-section {
    padding: 80px 0;
    background: var(--light);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.community-benefits {
    margin-top: 60px;
}

.community-benefits h3 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefit-item .benefit-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.audience-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.audience-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.audience-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.audience-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.audience-benefits {
    list-style: none;
    padding: 0;
}

.audience-benefits li {
    padding: 6px 0;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
}

.audience-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.location-benefits-section {
    padding: 80px 0;
}

.location-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.location-benefits-grid .benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.location-benefits-grid .benefit-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.location-benefits-grid .benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.pricing-comparison {
    margin-top: 60px;
}

.pricing-comparison h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight-col {
    background: rgba(44, 95, 45, 0.05);
    font-weight: 600;
}

.pricing-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.price-item .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.price-item .plan {
    font-size: 14px;
    color: var(--text-light);
}

.resource-links {
    list-style: none;
    padding: 0;
}

.resource-links li {
    margin-bottom: 12px;
}

.resource-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: var(--secondary);
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.tip-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.tip-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.sector-item {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
}

.sector-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.sector-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.story-item {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
}

.story-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.story-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2,
.cta-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.9;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center .section-label {
    display: inline-block;
    background: rgba(201, 165, 102, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-header-center h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Responsive Styles for New Pages ===== */

/* Tablet and Below (991px) */
@media (max-width: 991px) {

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    /* Article Layout */
    .article-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
    }

    /* Page Heroes */
    .page-hero-content h1,
    .article-hero-content h1 {
        font-size: 36px;
    }

    .page-hero-content p,
    .article-excerpt {
        font-size: 18px;
    }

    .location-hero-content h1,
    .service-hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle,
    .service-subtitle {
        font-size: 18px;
    }

    /* Benefits & Features Grids */
    .benefits-grid,
    .included-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    /* Pricing Options */
    .pricing-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-option.featured {
        transform: scale(1);
    }

    /* Location Features */
    .location-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-features-content h2 {
        font-size: 28px;
    }

    /* Transportation Grid */
    .transportation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Workspace Options */
    .workspace-comparison {
        flex-direction: column;
    }

    .workspace-option {
        flex-direction: column;
    }

    .workspace-image {
        flex: 1;
        width: 100%;
    }

    /* Community Stats */
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Sectors Grid */
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    /* Success Stories */
    .success-stories {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Section Headers */
    .section-header-center h2 {
        font-size: 28px;
    }
}

/* Mobile (767px) */
@media (max-width: 767px) {

    /* Page Heroes */
    .page-hero,
    .article-hero,
    .location-hero,
    .service-hero {
        padding: 100px 0 60px;
    }

    .page-hero-content h1,
    .article-hero-content h1,
    .location-hero-content h1,
    .service-hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .page-hero-content p,
    .article-excerpt,
    .hero-subtitle,
    .service-subtitle {
        font-size: 16px;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-card.featured {
        grid-column: 1;
    }

    .blog-image img {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h2,
    .blog-content h3 {
        font-size: 20px;
    }

    /* Article Content */
    .article-content {
        padding: 40px 0;
    }

    .article-body {
        gap: 30px;
    }

    .article-body h2 {
        font-size: 24px;
        margin: 30px 0 15px;
    }

    .article-body h3 {
        font-size: 20px;
        margin: 25px 0 12px;
    }

    .article-body h4 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .table-of-contents {
        padding: 20px;
    }

    .table-of-contents h3 {
        font-size: 18px;
    }

    /* Article Meta */
    .article-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }

    /* Breadcrumbs */
    .breadcrumb {
        font-size: 12px;
    }

    /* Hero Features */
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .feature-item {
        font-size: 14px;
    }

    /* Price Highlight */
    .price-amount {
        font-size: 36px;
    }

    .price-period {
        font-size: 20px;
    }

    /* Benefits & Features */
    .benefits-grid,
    .included-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card,
    .feature-card {
        padding: 25px 20px;
    }

    .benefit-icon,
    .feature-icon {
        font-size: 36px;
    }

    .benefit-card h3,
    .feature-card h3 {
        font-size: 20px;
    }

    /* Pricing Options */
    .pricing-options-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-option {
        padding: 30px 20px;
    }

    .pricing-header h3 {
        font-size: 20px;
    }

    .price .amount {
        font-size: 32px;
    }

    /* Location Features */
    .location-features-content h2 {
        font-size: 24px;
    }

    .highlight-item h4 {
        font-size: 18px;
    }

    /* Transportation */
    .transportation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .transport-option {
        padding: 25px 20px;
    }

    .transport-option h3 {
        font-size: 20px;
    }

    /* Location Features */
    .location-features-content h2 {
        font-size: 24px;
    }

    .highlight-item h4 {
        font-size: 18px;
    }

    /* Workspace Options */
    .workspace-option {
        padding: 25px 20px;
    }

    .workspace-details h3 {
        font-size: 20px;
    }

    /* Workspace Options */
    .workspace-option {
        flex-direction: column;
    }

    .workspace-image {
        width: 100%;
    }

    .workspace-details {
        width: 100%;
    }

    /* Community Stats */
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Benefits List */
    .benefits-list {
        gap: 20px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-content h3 {
        font-size: 24px;
    }

    .newsletter-content p {
        font-size: 16px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* CTA Sections */
    .cta-content h2,
    .cta-content h3 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-features {
        flex-direction: column;
        gap: 10px;
    }

    /* Sidebar Widgets */
    .sidebar-widget {
        padding: 20px;
    }

    .sidebar-widget h4 {
        font-size: 18px;
    }

    /* Comparison Table */
    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 600px;
    }

    /* Pricing Widget */
    .pricing-widget {
        gap: 15px;
    }

    .price-item {
        padding: 15px;
    }

    /* Resource Links */
    .resource-links {
        list-style: none;
    }

    .resource-links li {
        margin-bottom: 10px;
    }

    /* Tips List */
    .tips-list {
        gap: 15px;
    }

    .tip-item h5 {
        font-size: 16px;
    }

    /* Sectors Grid */
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Success Stories */
    .success-stories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sectors Grid */
    .sectors-grid {
        gap: 20px;
    }

    /* Section Headers */
    .section-header-center h2 {
        font-size: 24px;
    }

    .section-header-center p {
        font-size: 16px;
    }

    /* Audience Grid */
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 25px 20px;
    }

    /* Location Benefits */
    .location-benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (575px) */
@media (max-width: 575px) {

    /* Page Heroes */
    .page-hero-content h1,
    .article-hero-content h1,
    .location-hero-content h1,
    .service-hero-content h1 {
        font-size: 24px;
    }

    /* Blog Content */
    .blog-content h2,
    .blog-content h3 {
        font-size: 18px;
    }

    /* Article Body */
    .article-body h2 {
        font-size: 22px;
    }

    .article-body h3 {
        font-size: 18px;
    }

    .article-body h4 {
        font-size: 16px;
    }

    /* Price Amount */
    .price-amount {
        font-size: 32px;
    }

    /* Pricing Options */
    .pricing-header h3 {
        font-size: 18px;
    }

    .price .amount {
        font-size: 28px;
    }

    /* Benefits & Features */
    .benefit-card h3,
    .feature-card h3 {
        font-size: 18px;
    }

    /* Community Stats */
    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Newsletter */
    .newsletter-content h3 {
        font-size: 20px;
    }

    /* CTA */
    .cta-content h2,
    .cta-content h3 {
        font-size: 20px;
    }

    /* Hero Buttons */
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Header Info */
    .header-info {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
        font-size: 13px;
    }

    /* Location Hero Image */
    .location-hero-image img,
    .service-hero-image img {
        max-width: 100%;
    }
}

/* Extra Small Mobile (479px) */
@media (max-width: 479px) {

    /* Page Heroes */
    .page-hero,
    .article-hero,
    .location-hero,
    .service-hero {
        padding: 80px 0 40px;
    }

    .page-hero-content h1,
    .article-hero-content h1,
    .location-hero-content h1,
    .service-hero-content h1 {
        font-size: 22px;
    }

    /* Blog Content */
    .blog-content {
        padding: 15px;
    }

    .blog-content h2,
    .blog-content h3 {
        font-size: 16px;
    }

    /* Article Body */
    .article-body {
        padding: 0 15px;
    }

    .article-body h2 {
        font-size: 20px;
    }

    .article-body h3 {
        font-size: 17px;
    }

    /* Table of Contents */
    .table-of-contents {
        padding: 15px;
    }

    /* Sidebar Widgets */
    .sidebar-widget {
        padding: 15px;
    }

    /* Pricing Options */
    .pricing-option {
        padding: 20px 15px;
    }

    /* Benefits & Features */
    .benefit-card,
    .feature-card {
        padding: 20px 15px;
    }

    /* Community Stats */
    .community-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 24px;
    }

    /* Location Features */
    .location-features-content h2 {
        font-size: 22px;
    }

    /* Transportation */
    .transport-option {
        padding: 20px 15px;
    }

    /* Workspace Options */
    .workspace-option {
        padding: 20px 15px;
    }

    /* Benefits List */
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    /* Section Headers */
    .section-header-center h2 {
        font-size: 22px;
    }

    /* Success Stories */
    .success-stories {
        gap: 15px;
    }

    /* Sectors Grid */
    .sectors-grid {
        gap: 15px;
    }

    .sector-item {
        padding: 20px 15px;
    }

    .sector-item h4 {
        font-size: 18px;
    }
}

/* ===== Blog/Desktop layout tweaks ===== */

/* Mobile & tablet: keep articles stacked */
@media (max-width: 991px) {
    .article-content .container {
        display: block;
    }

    .article-body {
        max-width: 100%;
        margin: 0;
    }

    .article-sidebar {
        position: static;
        margin-top: 40px;
        width: 100%;
    }
}

/* Desktop: cleaner two-column blog layout */
@media (min-width: 992px) {
    .article-content {
        padding: 80px 0 100px;
    }

    .article-content .container {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
        max-width: 1200px;
    }

    .article-body {
        max-width: 760px;
        margin: 0;
        display: block;
    }

    .article-body h2 {
        margin-top: 48px;
        margin-bottom: 20px;
    }

    .article-body h3 {
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .article-body p,
    .article-body ul,
    .article-body ol {
        max-width: 100%;
    }

    .article-sidebar {
        position: sticky;
        top: 120px;
        width: 320px;
        flex-shrink: 0;
    }
}