/* =========================================
   CONTACT US PAGE – REFINED VERSION
   ========================================= */

   :root {
    --contact-gold: #d8b688;
    --contact-blue: #163654;
    --contact-blue-light: #1e40af;
    --contact-blue-dark: #1e3a8a;
    --contact-accent-light: #e8f4f8;
    --contact-accent-dark: #0f5a7a;
}

/* =========================================
   TYPOGRAPHY SYNC WITH ABOUT PAGE
   ========================================= */
.contact-heading-sync {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 700;
}

.contact-subheading-sync {
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 400;
    font-family: var(--font-body, 'Lato', sans-serif);
}

.contact-section-title {
    color: var(--contact-blue);
    margin-bottom: 2rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.contact-hero-vignette {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    background-image: none;
}

.contact-hero-vignette::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/contct.jpg");
    background-size: cover;
    background-position: left 38%;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transform: scale(1.0);
}

.contact-hero.hero-section {
    background-image: none !important;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.contact-hero-overlay-subtle {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 70%);
    pointer-events: none;
}

/* =========================================
   MAIN CONTACT SECTION
   ========================================= */
.contact-maps-section {
    padding: 70px 0 0;
    margin-top: 50px;
    background: #faf8f5;
}

.contact-map-content-width {
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
}

.contact-map-header-block {
    text-align: left;
}

.contact-map-heading {
    color: var(--contact-blue);
    margin: 0 0 12px;
}

.contact-map-subheading {
    color: #555;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--font-body, 'Lato', sans-serif);
}

.contact-map-spacer {
    height: 24px;
}

/* =========================================
   TWO-BRANCH GRID LAYOUT
   ========================================= */
.contact-branches-grid-wrapper {
    width: 100%;
    background: #faf8f5;
    padding: 40px 0 64px;
}

.contact-branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
}

@media (max-width: 1024px) {
    .contact-branches-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =========================================
   BRANCH CARD STYLING
   ========================================= */
.contact-branch-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.contact-branch-map-container {
    position: relative;
    width: 100%;
    height: 320px;
    background: #f0f0f0;
    overflow: hidden;
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-branch-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.contact-branch-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--contact-blue);
    margin: 0 0 24px;
    line-height: 1.2;
}

.contact-branch-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-blue-light);
    font-size: 1.3rem;
}

.contact-detail-content {
    flex-grow: 1;
    min-width: 0;
}

.contact-detail-label {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--contact-blue);
    margin: 0 0 6px;
    line-height: 1.3;
}

.contact-detail-text {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    margin: 0;
    word-break: break-word;
}

.contact-phone-link {
    color: var(--contact-blue-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-phone-link:hover {
    color: var(--contact-blue-dark);
    text-decoration: underline;
}

.contact-map-link {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background-color: var(--contact-gold);
    color: #ffffff;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: auto;
    text-align: center;
}

.contact-map-link:hover {
    background-color: #c4a173;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.contact-faq {
    padding: 72px 0;
    background: #faf8f5;
    position: relative;
}

.contact-faq-frame {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40px 32px 48px;
    border: 2px solid #d8b688;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #fefaf5 100%);
    box-sizing: border-box;
    position: relative;
}

.contact-faq-frame .contact-section-title {
    margin-bottom: 12px !important;
}

.contact-faq-subtext {
    margin: 0 auto 32px;
    max-width: 700px;
    color: #555;
    font-size: 1.15rem;
    line-height: 1.5;
}

.contact-faq-tooth {
    position: absolute;
    top: 22px;
    left: 22px;
    color: #D4AF37;
    font-size: 32px;
    line-height: 1;
    opacity: 0.95;
    pointer-events: none;
}

.contact-faq::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left-color: var(--contact-gold);
}

.faq-item.active {
    border-left-color: var(--contact-blue-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    text-align: left;
    font-family: 'Lato', sans-serif;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question:focus {
    outline: 2px solid var(--contact-blue-light);
    outline-offset: -2px;
}

.faq-question-text {
    font-weight: 600;
    color: var(--contact-blue);
    font-size: 1.2rem;
    flex: 1;
}

.faq-icon {
    color: var(--contact-gold);
    transition: transform 0.3s ease;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 20px 0 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
}

@media (max-width: 576px) {
    .contact-faq {
        padding: 48px 0;
    }
    .faq-question {
        padding: 16px 18px;
    }
    .faq-question-text {
        font-size: 1.05rem;
    }
    .faq-icon {
        font-size: 1.05rem;
    }
    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.9rem;
    }
}

/* =========================================
   GALLERY SECTION – ASYMMETRIC MOSAIC GRID
   ========================================= */
.contact-gallery-section {
    background: #faf8f5;
    padding: 72px 0 80px;
}

.contact-gallery-block {
    margin-bottom: 80px;
}

.contact-gallery-block:last-child {
    margin-bottom: 0;
}

.contact-gallery-label {
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--contact-gold);
    margin-bottom: 10px;
}

.contact-gallery-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--contact-blue);
    margin-bottom: 28px;
    line-height: 1.2;
}

/* --- Sta. Mesa Grid ---
   Layout: [tall-hero | top-right  ]
            [tall-hero | mid-right  ]
            [wide-bot  | wide-bot   ]
*/
.gallery-grid-stamesa {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px 160px 200px;
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.stamesa-img-1 {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.stamesa-img-2 {
    grid-column: 2;
    grid-row: 1;
}

.stamesa-img-3 {
    grid-column: 2;
    grid-row: 2;
}

.stamesa-img-4 {
    grid-column: 1 / span 2;
    grid-row: 3;
}

/* --- Eastwood Grid ---
   Layout: [left-top | tall-right ]
            [left-mid | tall-right ]
            [wide-bot | tall-right ]
*/
.gallery-grid-eastwood {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    grid-template-rows: 180px 180px 180px;
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.eastwood-img-1 {
    grid-column: 1;
    grid-row: 1;
}

.eastwood-img-2 {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.eastwood-img-3 {
    grid-column: 3;
    grid-row: 1 / span 3;
}

.eastwood-img-4 {
    grid-column: 1;
    grid-row: 2 / span 2;
}

/* --- Shared image cell styles --- */
.gallery-img-cell {
    overflow: hidden;
    position: relative;
    background: #e8e4de;
}

.gallery-img-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-img-cell:hover img {
    transform: scale(1.06);
}

.gallery-img-cell .img-room-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(22, 54, 84, 0.72);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-img-cell:hover .img-room-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive: stack to single column on mobile */
@media (max-width: 768px) {
    .gallery-grid-stamesa,
    .gallery-grid-eastwood {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
        border-radius: 12px;
    }

    .stamesa-img-1,
    .stamesa-img-2,
    .stamesa-img-3,
    .stamesa-img-4 {
        grid-column: auto;
        grid-row: auto;
    }

    .eastwood-img-1,
    .eastwood-img-2,
    .eastwood-img-3,
    .eastwood-img-4 {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .gallery-grid-stamesa,
    .gallery-grid-eastwood {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
}

/* =========================================
   GLOBAL & BASE STYLES
   ========================================= */
body {
    background-color: #faf8f5;
    color: #333333;
}

.section-header {
    font-size: 3rem;
}

/* =========================================
   HEADER, NAVIGATION & BUTTONS
   ========================================= */
#mainNav {
    background-color: transparent !important;
    padding: 25px 0;
    border-bottom: 2px solid transparent !important;
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    position: relative;
    height: 40px;
    width: 200px;
    border: none !important;
    outline: none !important;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-logo {
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    height: 300px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    filter: brightness(0) invert(1);
}

#mainNav.scrolled {
    background-color: #ffffff !important;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid #d8b688 !important;
}

#mainNav.scrolled .nav-logo {
    height: 230px;
    filter: none;
}

#mainNav .navbar-nav {
    transform: translateX(50px);
}

#mainNav .nav-link,
#mainNav .nav-icon-btn {
    color: #ffffff !important;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

#mainNav .nav-link {
    font-size: 1.4rem;
    padding: 0.5rem 1rem !important;
}

#mainNav .nav-icon-btn {
    font-size: 1.7rem;
    background: transparent;
    border: none;
}

#mainNav.scrolled .nav-link,
#mainNav.scrolled .nav-icon-btn {
    color: var(--primary-blue, #163654) !important;
}

.header-right-actions {
    transform: translateX(80px);
}

.btn-header-book {
    background-color: #d8b688;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-header-book:hover {
    background-color: #c4a173;
    color: #ffffff;
    transform: translateY(-2px);
}

#mainNav .nav-link.active {
    color: #d8b688 !important;
    text-shadow: 0 0 10px rgba(216, 182, 136, 0.3);
}

#mainNav.scrolled .nav-link.active {
    color: #d8b688 !important;
}

#mainNav .nav-link:hover,
#mainNav .nav-icon-btn:hover {
    transform: translateY(-2px);
}

/* =========================================
   TOP HERO SECTION
   ========================================= */
.hero-section {
    height: 70vh;
    min-height: 350px;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(250, 248, 245, 0) 60%, rgba(250, 248, 245, 1) 100%), url('../images/bg-about.jpg');
    background-size: cover !important;
    background-position: center 20%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .4) 100%, rgba(250, 248, 245, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #d8b688;
    border-radius: 2px;
    animation: swipeUnderline 1s ease-in-out forwards;
}

@keyframes swipeUnderline {
    0% { transform: scaleX(0); transform-origin: left; }
    40% { transform: scaleX(1); transform-origin: left; }
    60% { transform: scaleX(1); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-floating-section {
    position: relative;
    height: 70vh;
    min-height: 400px;
    width: 100%;
    background-image: url('../images/main-bg.jpg');
    background-size: cover !important;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(250, 248, 245, .5) 0%, rgba(250, 248, 245, .2) 10%, rgba(0, 0, 0, .8) 100%);
    z-index: 1;
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.90);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-floating-heading {
    color: var(--primary-blue, #163654);
    font-size: 2.8rem;
    line-height: 1.2;
}

.cta-floating-subtext {
    color: #444444;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
    .contact-heading-sync { font-size: 2rem; }
    .contact-subheading-sync { font-size: 0.95rem; }
    .contact-branch-title { font-size: 1.5rem; }
    .contact-branch-info { padding: 24px; }
    .contact-branch-map-container { height: 280px; }
    .hero-title { font-size: 2.5rem; }
    .cta-floating-heading { font-size: 2rem; }
    .cta-floating-subtext { font-size: 1rem; }
    .section-header { font-size: 2rem; }
    .contact-gallery-title { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .contact-map-content-width { width: 95%; padding-left: 2.5%; padding-right: 2.5%; }
    .contact-heading-sync { font-size: 1.5rem; }
    .contact-branch-title { font-size: 1.3rem; }
    .contact-detail-label { font-size: 0.9rem; }
    .contact-detail-text { font-size: 0.85rem; }
    .hero-title { font-size: 1.8rem; }
    .contact-section-title { font-size: 1.8rem; }
    .contact-gallery-title { font-size: 1.5rem; }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: #163654;
    color: #ffffff;
    border-top: 3px solid #d8b688;
    padding: 0;
}

.footer-col-brand { padding-right: 70px; }

.footer-logo {
    width: 350px;
    height: 270px;
    object-fit: contain;
    display: block;
    margin: -25px auto -50px auto !important;
}

.footer-brand-text {
    margin-left: 0 !important;
    margin-top: 10px;
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    position: relative;
    z-index: 50;
}

.footer-socials a {
    color: #ffffff;
    font-size: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover { transform: translateY(-5px); }

.footer-heading {
    color: #d8b688;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-subheading {
    color: #d8b688;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-text a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover { color: #d8b688; }

.footer-links {
    list-style: none;
    padding: 10px;
    line-height: 40px;
    font-size: 1.2rem;
    margin-left: -15px;
    margin-top: -13px;
}

.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-links a.active { color: #d8b688; }

.footer-links a:hover {
    transform: translateY(-5px) !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer-col-eastwood .footer-location-link,
.footer-col-stamesa .footer-location-link { color: #b0b0b0; }

.footer-col-eastwood .footer-location-link:hover,
.footer-col-stamesa .footer-location-link:hover { color: #d8b688; }

.footer-col-pages,
.footer-col-eastwood,
.footer-col-stamesa { margin-top: 50px; }

.footer-col-pages { padding-left: 40px; padding-right: 30px; }

.footer-col-eastwood {
    margin-left: -30px;
    padding-left: 40px;
    border-left: 1px solid rgba(216, 182, 136, 0.2);
}

.footer-col-stamesa { padding-left: 90px; }

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 10px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    .footer-col-pages,
    .footer-col-eastwood,
    .footer-col-stamesa {
        padding-left: 15px;
        text-align: center;
        margin-bottom: 30px;
        margin-left: 0;
        border-left: none;
    }
    .footer-col-brand { padding-right: 0; }
    .footer-links a:hover { padding-left: 0; }
}

/* Gallery Collage Styles */
.image-collage-wrapper {
        position: relative;
        width: 100%;
        height: 500px;
        margin: 2rem 0;
        /* Removed: border-radius: 25px; */
        /* Removed: overflow: hidden; */
        /* Removed: box-shadow: 0 25px 50px rgba(0,0,0,0.12); */
        background-color: transparent;
    }

.collage-container {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    z-index: 10;
}

/* Sta. Mesa - 4 Containers Positioning */
.stamesa-collage {
    height: 520px;
    margin-bottom: 1000px; /* pushes FAQ down after Sta. Mesa collage */
}

.eastwood-collage {
    height: 520px;
    margin-top: 50px;
    margin-bottom: 300px; /* pushes CTA/FAQ down after Eastwood collage */
}

.eastwood-section {
    margin-top: 0; /* FIXED: was 1200px */
}

.stamesa-collage .img1 {
    width: 85%;
    height: 100%;
    top: 5%;
    left: -1%;
    z-index: 2;
}

.stamesa-collage .img2 {
    width: 50%;
    height: 70%;
    top: 83%;
    right: -5%;
    z-index: 3;
}

.stamesa-collage .img3 {
    width: 90%;
    height: 100%;
    bottom: -150%;
    left: 3%;
    z-index: 1;
}

.stamesa-collage .img4 {
    width: 70%;
    height: 90%;
    bottom: -230%;
    left: 40%;
    z-index: 4;
}

/* Eastwood - 4 Containers Positioning */
.eastwood-collage {
    height: 520px;
    margin-top: 10px;
    margin-bottom: 1000px; /* pushes CTA/FAQ down after Eastwood collage */
}


.eastwood-section {
    margin-top: 0;
    padding-top: 230px; /* FIXED: was 1200px */
}

.eastwood-collage .img1 {
    width: 90%;
    height: 100%;
    top: 5%;
    left: 3%;
    z-index: 1;
}

.eastwood-collage .img2 {
    width: 70%;
    height: 78%;
   top: 83%;
    left: 40%;
    z-index: 4;
}

.eastwood-collage .img3 {
    width: 85%;
    height: 100%;
    bottom: -150%;
    left: -1%;
    z-index: 2;
}

.eastwood-collage .img4 {
    width: 50%;
    height: 70%;
    bottom: -210%;
    right: -5%;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .image-collage-wrapper,
    .stamesa-collage,
    .eastwood-collage {
        height: 450px;
    }
    
    .stamesa-collage .img1,
    .eastwood-collage .img1 {
        width: 65%;
        height: 60%;
    }
}

@media (max-width: 768px) {
    .image-collage-wrapper,
    .stamesa-collage,
    .eastwood-collage {
        height: 400px;
        margin: 1.5rem 0;
    }
    
    .collage-container {
        border-radius: 12px;
    }
    
    .stamesa-collage .img1,
    .eastwood-collage .img1 {
        width: 70%;
        height: 55%;
        top: 5%;
        left: 5%;
    }
    
    .stamesa-collage .img2,
    .eastwood-collage .img2 {
        width: 50%;
        height: 45%;
        top: 10%;
        right: 5%;
    }
    
    .stamesa-collage .img3,
    .eastwood-collage .img3 {
        width: 45%;
        height: 40%;
        bottom: 5%;
        left: 50%;
    }
    
    .stamesa-collage .img4,
    .eastwood-collage .img4 {
        width: 42%;
        height: 35%;
        top: 60%;
        left: 8%;
    }
}

@media (max-width: 576px) {
    .image-collage-wrapper,
    .stamesa-collage,
    .eastwood-collage {
        height: 350px;
    }
}

/* Hide old gallery grids */
.gallery-grid-stamesa,
.gallery-grid-eastwood,
.gallery-img-cell {
    display: none !important;
}