/* Reset & Base Variables */
:root {
    --bg-color: #ffffff;
    --text-color: #262626;
    --border-color: #dbdbdb;
    --dot-color: #a8a8a8;
    --dot-active: #0095f6;
    --brand-blue: #00376b;
    --hashtag-color: #00376b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fafafa;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    padding-top: 100px; /* Prevents content from jumping due to fixed header */
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgb(34, 33, 90);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, box-shadow 0.3s ease;
    will-change: height, background-color;
}

.main-header.scrolled {
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(34, 33, 90, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    width: 100%;
    max-width: 1600px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.logo {
    height: 70px;
    object-fit: contain;
    transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: height, transform;
    cursor: pointer;
}

.main-header.scrolled .logo {
    height: 48px;
}

.logo:hover {
    transform: scale(1.03);
}

/* Nav Menu */
.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d4af37; /* Premium gold accent */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-btn {
    background-color: rgb(210, 13, 14);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 2px solid rgb(210, 13, 14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-btn:hover {
    background-color: rgb(99, 220, 167);
    color: rgb(34, 33, 90) !important;
    border-color: rgb(99, 220, 167);
    box-shadow: 0 0 20px rgba(99, 220, 167, 0.5);
    transform: translateY(-1px);
}

.nav-btn:active {
    transform: translateY(0);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Backdrop Overlay */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 767px) {
    body {
        padding-top: 80px;
    }
    
    .main-header {
        height: 80px;
    }
    .main-header.scrolled {
        height: 60px;
    }
    .logo {
        height: 50px;
    }
    .main-header.scrolled .logo {
        height: 38px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hamburger Active State: Transform to X */
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Navigation slide-out drawer */
    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background-color: rgb(34, 33, 90);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 99;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        will-change: transform;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    }

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

    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 8px 0;
    }

    .logo-group {
        gap: 12px;
    }

    .header-cta {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Search Bar Section */
.search-container {
    display: flex;
    justify-content: center;
    padding: 30px 20px 10px 20px;
    background-color: #fafafa;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #8e8e8e;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.search-spinner {
    display: none;
    position: absolute;
    left: 16px;
    top: 50%;
    margin-top: -9px; /* Half of height to center it precisely */
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-top-color: rgb(45, 77, 203);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    pointer-events: none;
}

.search-wrapper.loading .search-icon {
    opacity: 0;
}

.search-wrapper.loading .search-spinner {
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    outline: none;
    background-color: #ffffff;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

#search-input::placeholder {
    color: #a8a8a8;
}

#search-input:focus {
    border-color: rgb(45, 77, 203);
    box-shadow: 0 0 0 3px rgba(45, 77, 203, 0.15);
}

/* Feed Container */
.feed-container {
    width: 100%;
    padding: 20px 0;
}

/* Post Article */
.post {
    width: calc(100% - 32px);
    margin: 0 auto 16px auto;
    background: var(--bg-color);
    border: 1px solid rgb(99, 220, 167);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

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

/* Media Container */
.post-media-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.media-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    width: 100%;
    background-color: #fafafa; /* Light gray background */
}
.media-carousel::-webkit-scrollbar {
    display: none;
}

.media-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa; /* Light gray background */
    overflow: hidden;
}

.media-item img,
.media-item video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    display: block;
}

.post.few-photos .media-carousel {
    scroll-snap-type: none;
    overflow-x: hidden;
}

.post.few-photos .media-item {
    flex: 1 1 0 !important;
    scroll-snap-align: none;
    transition: none !important;
}

.post.single-photo .media-item img,
.post.single-photo .media-item video,
.post.few-photos .media-item img,
.post.few-photos .media-item video {
    object-fit: contain !important;
}

/* Desktop layout */
@media (min-width: 768px) {
    .feed-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: dense;
        gap: 24px;
        max-width: 1600px;
        margin: 0 auto;
        padding: 20px 24px;
    }

    .post {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 20px;
        padding: 24px;
    }

    .post.multi-photo, .post.few-photos {
        grid-column: span 2;
    }

    .post.single-photo {
        grid-column: span 1;
        /* Using the default .post-body flex-direction: row */
    }

    .post.single-photo .post-media-container {
        flex: 0 0 340px;
        padding: 0;
    }

    .post.single-photo .post-content {
        flex: 1;
        /* height and margin inherit from default .post-content (450px) */
    }
    
    /* media-carousel also inherits height (450px) */

    .post.single-photo .media-item,
    .post.single-photo .media-carousel .media-item:first-child,
    .post.single-photo .media-item:hover {
        flex-basis: 100%;
    }

    .post-body {
        display: flex;
        flex-direction: row;
        gap: 16px; /* Gap between photos and text */
        align-items: stretch;
        width: 100%;
    }

    .post-media-container {
        flex: 0 0 66.666%; /* 2/3 of layout width */
        position: relative;
        padding: 0;
        /* To align the left image exactly with the container edge */
    }

    .media-carousel {
        height: 450px;
        gap: 8px;
        padding: 0; /* Remove padding to align with location */
        border-radius: 12px;
        box-shadow: none; /* Removed box shadow as per clean design */
        background-color: transparent;
        scroll-snap-type: none;
    }

    .media-item {
        flex: 0 0 180px; /* Mask viewport width by default */
        height: 100%;
        scroll-snap-align: start;
        border-radius: 12px;
        transition: flex-basis 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        will-change: flex-basis;
    }
    
    /* First item is expanded by default */
    .media-carousel .media-item:first-child {
        flex-basis: 340px;
    }

    /* Shrink the first item only when another item is actually hovered */
    .media-carousel:has(.media-item:not(:first-child):hover) .media-item:first-child {
        flex-basis: 180px;
    }
    
    .media-item img,
    .media-item video {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        flex-shrink: 0;
    }

    .media-item:hover {
        flex-basis: 340px; /* Matches ~3:4 portrait aspect ratio at 450px height */
    }

    .post.few-photos .media-item,
    .post.few-photos .media-carousel .media-item:first-child,
    .post.few-photos .media-item:hover,
    .post.few-photos .media-carousel:has(.media-item:not(:first-child):hover) .media-item:first-child {
        flex: 1 1 0 !important;
        flex-basis: 0 !important;
        transition: none !important;
        scroll-snap-align: none;
    }

    .post.single-photo .media-item img,
    .post.single-photo .media-item video,
    .post.few-photos .media-item img,
    .post.few-photos .media-item video {
        object-fit: contain !important;
    }

    .post-content {
        flex: 1; /* take remaining 1/3 space */
        height: 450px; /* Same height as carousel */
        overflow-y: auto;
        border-radius: 12px;
        padding: 24px;
        background-color: #ffffff;
        margin-top: 0;
        font-size: 15px;
        line-height: 1.6;
        scrollbar-width: thin;
    }
}

/* Navigation Arrows (Desktop) */
.nav-arrow {
    display: none;
}

@media (min-width: 768px) {
    .nav-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(255, 255, 255, 0.8);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        cursor: pointer;
        color: #0c2340;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        transition: opacity 0.2s, transform 0.2s, background 0.2s;
    }
    
    .nav-arrow svg {
        width: 24px;
        height: 24px;
        stroke: #0c2340;
    }
    
    .nav-arrow:hover {
        transform: translateY(-50%) scale(1.05);
        background: rgba(255, 255, 255, 1);
    }
    
    .nav-arrow.hidden {
        display: none !important;
    }
    
    .prev-arrow {
        left: 20px;
    } /* Overlay neatly on top of the carousel */
    .next-arrow {
        right: 20px;
    }
}

/* Dots (Mobile) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 15px;
}
@media (min-width: 768px) {
    /* Hide dots on desktop */
    .carousel-dots { display: none; }
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dot-color);
    transition: background 0.3s;
}

.dot.active {
    background: var(--dot-active);
}

/* Post Content */
.post-content {
    display: block;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.post-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.post-actions svg {
    cursor: pointer;
    transition: opacity 0.2s;
}
.post-actions svg:hover {
    opacity: 0.6;
}

.post-caption {
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap; /* respect newlines */
    padding: 0;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    border-bottom: none;
    margin-bottom: 8px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .post-header {
        max-width: 100%; /* Align with full post body width */
        padding: 0;
        margin-bottom: 12px;
    }
}

.post-location {
    font-weight: 600;
    color: #0c2340;
}

.post-time {
    font-size: 12px;
    color: #8e8e8e;
}

.post-header a {
    color: inherit;
    text-decoration: none;
}

.post-header .post-time a:hover {
    text-decoration: underline;
}

.hashtag {
    color: var(--hashtag-color);
    text-decoration: none;
}

/* Modal Gallery */
.modal-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-gallery.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1010;
    line-height: 1;
}

.modal-close:hover {
    color: #ccc;
}

.modal-carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.modal-carousel {
    display: flex;
    gap: 40px;
    padding: 0 50vw;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}
.modal-carousel::-webkit-scrollbar {
    display: none;
}

.modal-media-item {
    flex: 0 0 auto;
    height: 90vh;
    max-width: 95vw;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.3;
    transform: scale(0.95);
}

.modal-media-item.active {
    opacity: 1;
    transform: scale(1);
}

.modal-media-item img,
.modal-media-item video {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.modal-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1010;
    transition: background 0.2s;
}

.modal-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.modal-nav-arrow:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.modal-nav-arrow svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.modal-nav-arrow.prev-arrow {
    left: 20px;
}

.modal-nav-arrow.next-arrow {
    right: 20px;
}

/* Slide-down Info Panel */
.info-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-bottom 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
    background-color: rgb(45, 77, 203);
    border-bottom: 0px solid transparent;
    width: 100%;
}

.info-panel.collapsed {
    visibility: hidden;
}

.info-panel.expanded {
    grid-template-rows: 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    visibility: visible;
}

.panel-inner {
    min-height: 0;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    opacity: 0;
    background-color: #ffffff;
    border-radius: 16px; /* round corner as the posts */
    border: 4px dashed rgb(210, 13, 14);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.04);
    color: var(--text-color);
    transition: opacity 0.3s ease, margin 0.4s ease, padding 0.4s ease;
}

.info-panel.expanded .panel-inner {
    margin: 20px auto;
    padding: 30px;
    opacity: 1;
}

/* Tab content visibility */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Close button */
.panel-close {
    position: absolute;
    top: 15px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #8e8e8e;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 10;
}

.panel-close:hover {
    color: rgb(210, 13, 14);
}

/* General typography inside panel */
.tab-content h2 {
    color: rgb(34, 33, 90);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.illustration-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    width: 100%;
}

.mail-cat-illustration {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.tab-content .subtitle {
    font-size: 15px;
    color: #666666;
    margin-bottom: 24px;
    text-align: left;
}

.tab-header-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.tab-header-text {
    flex: 1;
}

.mobile-only-cat {
    display: none;
}

.desktop-only-cat {
    display: block;
}

/* Quem sou eu? Tab content grid */
.content-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    align-items: center;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgb(34, 33, 90);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(34, 33, 90, 0.15);
}

.bio-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #444444;
}

.bio-text p strong {
    color: rgb(34, 33, 90);
}

/* Serviços Tab Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fafafa;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: rgb(99, 220, 167);
}

.service-card h3 {
    color: rgb(34, 33, 90);
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
}

/* Contato Tab links */
.contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card.whatsapp {
    background-color: #25d366;
    color: #ffffff;
}

.contact-card.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contact-card.email {
    background-color: rgb(34, 33, 90);
    color: #ffffff;
}

.contact-card.email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 33, 90, 0.3);
}

.contact-card .icon {
    width: 20px;
    height: 20px;
}

/* Agende uma conversa / Form */
.booking-container {
    display: flex;
    gap: 5px;
    align-items: stretch;
}

.booking-form {
    flex: 2;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
}

.form-group input, .form-group textarea {
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #fafafa;
    color: var(--text-color);
    outline: none;
    transition: all 0.2s ease;
}

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

.form-group input:focus, .form-group textarea:focus {
    border-color: rgb(210, 13, 14);
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(210, 13, 14, 0.1);
}

.submit-btn {
    background-color: rgb(210, 13, 14);
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: rgb(99, 220, 167);
    color: rgb(34, 33, 90);
    box-shadow: 0 4px 15px rgba(99, 220, 167, 0.4);
}

.form-status {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-status.success {
    color: #2e7d32;
}

.form-status.error {
    color: rgb(210, 13, 14);
}

.booking-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 220px;
}

.booking-divider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 195px;
    left: 50%;
    border-left: 1px solid var(--border-color);
    z-index: 1;
}

.booking-divider .mail-cat-illustration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    object-fit: contain;
    z-index: 2;
}

.booking-divider span {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #999999;
    z-index: 3;
}

.booking-whatsapp {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.booking-whatsapp h3 {
    font-size: 18px;
    color: rgb(34, 33, 90);
    margin-bottom: 8px;
}

.booking-whatsapp p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn .icon {
    width: 18px;
    height: 18px;
}

/* Responsive styles for Slide-down Panel */
@media (max-width: 767px) {
    .content-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .booking-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .mobile-only-cat {
        display: block;
        width: 104px;
        height: 104px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .desktop-only-cat {
        display: none;
    }
    
    .booking-divider {
        width: 100%;
        height: 40px;
        margin: 10px 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .booking-divider::before {
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }

    .booking-divider span {
        position: static;
        transform: none;
        background-color: #ffffff;
        padding: 8px;
        font-size: 12px;
        font-weight: 600;
        color: #999999;
        z-index: 3;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
