/*
========================================
V2 - MINIMALIST VERSION
Modern, clean design with lots of whitespace
========================================

EASY EDIT COLORS - Change these values to customize your site colors:
*/

:root {
    /* Main Brand Colors - Overridden by Customizer */
    --primary: var(--primary-color, #2563eb);
    --secondary: var(--secondary-color, #8b5cf6);

    /* Gradients */
    --gradient-start-color: var(--gradient-start, #3b82f6);
    --gradient-end-color: var(--gradient-end, #8b5cf6);
    --gradient: linear-gradient(135deg, var(--gradient-start-color) 0%, var(--gradient-end-color) 100%);

    /* Text Colors */
    --text-dark: var(--heading-color, #0f172a);
    --text-body: var(--text-color, #475569);
    --text-gray: var(--text-color, #64748b);
    /* Fallback map */
    --text-light: #94a3b8;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --bg-dark: #1e293b;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--heading-font);
}

.site-logo img {
    height: auto;
    width: var(--logo-width, 150px);
    display: block;
    max-height: 50px;
}

.site-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 1000;
    letter-spacing: -0.04em;
}

.navbar-brand span {
    font-size: 3rem;
    font-weight: 1000;
    letter-spacing: -0.04em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-only {
    display: flex !important;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: var(--space-xs) 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--gradient);
    color: white !important;
    padding: var(--space-xs) var(--space-md) !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ========================================
   Buttons
   ======================================== */
.header-social,
.header-social-widget {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-right: var(--space-md);
    margin-left: auto;
}

/* Ensure widgets inside the container align correctly */
.header-social-widget .widget,
.header-social-widget .header-widget {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.social-icon-link {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icon-link:hover {
    transform: scale(1.1);
}

.mobile-only-btn,
.mobile-only-social {
    display: none !important;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hero h1 {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.stat p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--bg-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-item {
    background: white;
    padding: var(--space-xl);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: inline-block;
}

.service-item h3 {
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.service-item>p {
    color: var(--text-gray);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.service-features li {
    color: var(--text-gray);
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ========================================
   Process Section
   ======================================== */
.process {
    padding: var(--space-3xl) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.step {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

/* Arrow connectors */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.3;
    z-index: 1;
}

@media (max-width: 991px) {
    .step:not(:last-child)::after {
        display: none;
    }
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.step h3 {
    margin-bottom: var(--space-md);
}

.step p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Team Section
   ======================================== */
.team {
    padding: var(--space-3xl) 0;
    background: var(--bg-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.team-info {
    padding: var(--space-xl);
}

.team-info h3 {
    margin-bottom: var(--space-xs);
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.team-bio {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.team-specialty {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.team-specialty span {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: var(--space-3xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--bg-gray);
    padding: var(--space-xl);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.rating {
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.testimonial-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: var(--space-xl);
}

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

.cta .btn-primary:hover {
    background: var(--bg-gray);
}

.cta-note {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: white;
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
}

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ========================================
   WhatsApp Button
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========================================
   Contact Form Section
   ======================================== */
.contact-form {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: var(--space-2xl);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group .required {
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecf4;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfd;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    margin-bottom: var(--space-lg);
}

.radio-group {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
    font-weight: 500;
    color: var(--text-gray);
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.radio-label:hover {
    color: var(--text-dark);
}

.form-container .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    margin-top: var(--space-md);
}

/* ========================================
   Modal
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: var(--space-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: var(--space-xs);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    color: var(--text-gray);
    margin-bottom: var(--space-xl);
}

.modal-content .form-group {
    margin-bottom: var(--space-md);
}

/* ========================================
   Form Success Message
   ======================================== */
.form-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: var(--space-md);
    border-radius: 12px;
    margin-bottom: var(--space-md);
    display: none;
    align-items: center;
    gap: var(--space-sm);
}

.form-success.active {
    display: flex;
}

.form-success-icon {
    font-size: 1.5rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: var(--space-xl);
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding-top: 120px !important;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu Improvements */
    .btn-nav,
    .header-social {
        display: none;
        /* Hide original button and social on mobile */
    }

    .mobile-only-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: var(--space-md);
    }

    .mobile-only-social {
        display: flex !important;
        /* Force flex display */
        justify-content: center;
        gap: var(--space-md);
        margin-top: var(--space-md);
        margin-bottom: var(--space-sm);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        /* Larger touch target */
        font-size: 1.25rem;
    }

    body.no-scroll {
        overflow: hidden;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}


@media (max-width: 480px) {
    :root {
        --space-3xl: 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Blog & Post Layout (Sidebars)
   ======================================== */
.container-with-sidebars {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.content-area {
    flex: 1;
    min-width: 0;
    /* Prevent flex overflow */
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.widget {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

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

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.widget li a {
    color: var(--text-gray);
    transition: color 0.3s;
}

.widget li a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .sidebar {
        width: 100%;
    }

    .container-with-sidebars {
        flex-direction: column;
    }

    .sidebar-left {
        order: 2;
    }

    .content-area {
        order: 1;
    }

    .sidebar-right {
        order: 3;
    }
}

/* ========================================
   Partners Carousel (Infinite Scroll)
   ======================================== */
.partners {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
    overflow: hidden;
}


.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.partners-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    align-items: center;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Time Slot Grid (Booking Modal)
   ======================================== */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.slots-placeholder {
    grid-column: 1 / -1;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.slot-item {
    background: white;
    border: 2px solid #e8ecf4;
    padding: 8px 4px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.slot-item:hover:not(.taken) {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.slot-item.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.slot-item.taken {
    background: #f1f5f9;
    border-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.7;
}

/* ========================================
   Blog Section
   ======================================== */
.blog-section {
    padding: var(--space-3xl) 0;
    background-color: #f8fafc;
}

.blog-carousel {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.blog-track {
    display: flex;
    width: max-content;
    animation: blog-scroll 50s linear infinite;
    gap: var(--space-xl);
}

.blog-track:hover {
    animation-play-state: paused;
}

.blog-card {
    flex: 0 0 calc(25vw - 40px);
    /* Roughly 4 columns */
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@keyframes blog-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .blog-card {
        flex: 0 0 calc(33.333vw - 40px);
    }
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 280px;
    }

    .blog-track {
        animation: none;
        overflow-x: auto;
        padding-bottom: 1rem;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .blog-section {
        padding: var(--space-xl) 1rem;
    }
}

/* ========================================
   Partners Section & Carousel
   ======================================== */
.partners {
    padding: var(--space-3xl) 0;
    background: white;
}

.partners-carousel {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.partner-logo {
    width: 200px;
    margin: 0 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
