body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
}

#mainNav {
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
    width: 46px;
}

.navbar-icons {
    color: rgba(0, 0, 0, 0.55);
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    cursor: pointer;
}

.navbar-icons:hover {
    color: #000000;
}

.navbar-nav .nav-link {
    padding: 8px 12px !important;
}

.enquire-btn {
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 6px;
    white-space: nowrap;
}

.active-nav .navbar-icons {
    color: #000000;
    border-bottom: 2px solid #170553;
    padding-bottom: 2px;
}

/* Mobile nav */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 12px 4px;
        border-top: 1px solid #e5e7eb;
        margin-top: 8px;
    }

    .navbar-nav .nav-link {
        padding: 10px 4px !important;
    }

    .enquire-btn {
        margin-top: 8px;
        width: fit-content;
    }
}


/* HERO */

.gallerypage-hero {
    background: #1f355e;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.gallerypage-hero-title{
      font-family: 'Playfair Display', serif;
}

.gallerypage-hero-content {
    max-width: 800px;
    margin: auto;
}

.gallerypage-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.gallerypage-hero p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
}

/* GALLERY */

/* GALLERY */
.gallerypage-gallery {
    padding: 80px 20px;
    background: #f7f8fc;
}

.gallerypage-container {
    max-width: 1200px;
    margin: auto;
}

.gallerypage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

/* GRID ITEM BASE */
.gallerypage-item {
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

.gallerypage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallerypage-item:hover img {
    transform: scale(1.1);
}

/* SPAN SIZES — desktop */
.gallerypage-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallerypage-tall {
    grid-row: span 2;
}

.gallerypage-wide {
    grid-column: span 2;
}

/* TABLET — 2 columns */
@media (max-width: 900px) {
    .gallerypage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: 14px;
    }

    .gallerypage-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallerypage-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallerypage-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
}

/* MOBILE — 1 column, all spans reset */
@media (max-width: 600px) {
    .gallerypage-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 12px;
    }

    .gallerypage-large,
    .gallerypage-wide,
    .gallerypage-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* FOOTER */

.contact-footer {
    background: #1b2c4a;
    color: white;
    padding: 70px 20px 30px;
}

.contact-footer-container {
    max-width: 1200px;
    margin: auto;
}

.contact-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-logo span {
    background: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
}

.contact-footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-socials span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2b3e63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.contact-footer-links h4 {
    margin-bottom: 18px;
}

.contact-footer-links ul {
    list-style: none;
    padding: 0;
}

.contact-footer-links li {
    margin-bottom: 10px;
    color: #cbd5e1;
    font-size: 14px;
}

.contact-footer-links a {
    text-decoration: none;
    color: #cbd5e1;
}

.contact-footer-links a:hover {
    color: white;
}

.contact-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #cbd5e1;
}

/* RESPONSIVE */

@media(max-width:900px) {

    .contact-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-cta-title {
        font-size: 32px;
    }

}

@media(max-width:500px) {

    .contact-footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .gallerypage-hero h1 {
        font-size: 42px;
    }
}

/* floating button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    animation: pulse 2s infinite;

    /* hidden by default */
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float.whatsapp-visible {
    opacity: 1;
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-float {
    position: fixed;
    bottom: 96px;
    /* sits just above the whatsapp button (24 + 58 + 14 gap) */
    right: 24px;
    z-index: 9999;
    background: #dadeff;
    color: rgb(217, 0, 0);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    animation: callPulse 2s infinite;

    /* hidden by default */
    opacity: 0;
    pointer-events: none;
}

.call-float.call-visible {
    opacity: 1;
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5);
}

.call-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 99, 235, 0.7);
    color: rgb(38, 6, 223);
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}