
:root {
    /* ----- Colors ----- */
    --deep-indigo: #2D3436;
    --aqua-blue: #00B8D4;
    --vibrant-coral: #FF6F61;
    --light-mist: #F0F0F0;
    --primary-color: #f9c347;
    /* from Gallery CSS */
    --secondary-color: #fff;
    /* from Gallery CSS */
    --background-color: #f0f0f0;
    /* unified background for all pages */
    --text-color: #333;
    /* consistent text color for all pages */
    --hero-overlay-color: rgba(0, 0, 0, 0.5);

    /* ----- Speeds & Indexes ----- */
    --transition-speed: 0.3s;
    --overlay-opacity: 0.6;
    --z-index-overlay: 900;
    --z-index-menu: 1000;

    /* ----- Dimensions & Layout ----- */
    --max-width: 1200px;
    --border-radius: 40px;
    /* originally used in Home CSS */
    /* If you prefer the smaller radius (8px) from Gallery, you can rename or override. */
    --navbar-height: 60px;

    /* ----- Fonts ----- */
    --font-family-sans: 'Montserrat', sans-serif;
    --font-family-serif: 'Playfair Display', serif;

    /* ----- Misc ----- */
    --active-link-color: var(--vibrant-coral);
    --phone-font-size: 1rem;
    --mobile-menu-bg: rgba(0, 0, 0, 0.95);
    --heading-color: var(--vibrant-coral);
    --hero-gradient: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    --whatsapp-bg: #25d366;
}

/* ========================== GLOBAL / RESET / BASE STYLES ========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-sans);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    display: block;
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


.animate-on-scrollhome {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.animate-on-scrollhome.in-viewhome {
    opacity: 1;
    transform: translateY(0);
}

/* Delay helper classes */
.delay-1home {
    transition-delay: 0.2s;
}

.delay-2home {
    transition-delay: 0.4s;
}

.delay-3home {
    transition-delay: 0.6s;
}

.delay-4home {
    transition-delay: 0.8s;
}

.delay-5home {
    transition-delay: 1s;
}

.delay-6home {
    transition-delay: 1.2s;
}

/* ========== CONTAINER ========== */
.containerhome {
    max-width: var(--max-width);
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

/* ========== NAVBAR STYLES ========== */
.navbarhome {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: var(--deep-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-index-menu);
    transition: background var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.navbarhome.scrolledhome {
    background: var(--deep-indigo);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* LOGO (Two-Line) */
.logohome {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
    color: #fff;
    transition: transform 0.3s ease;
}

.logohome:hover {
    transform: scale(1.05);
}

.logo-linehome {
    display: block;
}

.hotel-wordhome {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.pushpvatika-wordhome {
    font-size: 1.4rem;
    font-family: var(--font-family-serif);
    font-weight: 700;
    margin-top: -2px;
}

/* NAV-LINKS */
.nav-linkshome {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
    position: relative;
}

.nav-linkshome li a {
    color: #fff;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-speed) ease;
    padding-top: 5px;
}

.nav-linkshome li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--vibrant-coral);
    left: 0;
    bottom: -4px;
    transition: width var(--transition-speed) ease;
}

.nav-linkshome li a:hover::after,
.nav-linkshome li a.activehome::after {
    width: 100%;
}

.nav-linkshome li a.activehome {
    color: var(--active-link-color);
}

/* DESKTOP PHONE & BOOKING */
.phone-number-containerhome {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-numberhome {
    color: #fff;
    font-size: var(--phone-font-size);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.phone-numberhome:hover {
    transform: translateY(-2px);
}

.phone-numberhome i.bi {
    font-size: 1rem;
    color: var(--vibrant-coral);
}

.booking-buttonhome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--vibrant-coral);
    color: #333;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease,
        transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.booking-buttonhome::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    transform: skewX(-45deg);
}

.booking-buttonhome:hover {
    background-color: #fff;
    color: var(--vibrant-coral);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.booking-buttonhome:hover::after {
    left: 100%;
}

/* MOBILE MENU - Mobile contact container inside nav-links */
.mobile-contact-containerhome {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* MOBILE MENU - Hamburger styling */
.hamburgerhome {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    z-index: calc(var(--z-index-menu) + 1);
}

.hamburgerhome span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

.hamburgerhome.activehome span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburgerhome.activehome span:nth-child(2) {
    opacity: 0;
}

.hamburgerhome.activehome span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* For screens below 767px, show hamburger */
@media (max-width: 747px) {
    .hamburgerhome {
        display: flex !important;
    }

    .phone-number-containerhome {
        display: none !important;
    }

    .nav-linkshome {
        position: fixed;
        top: var(--navbar-height);
        right: 0;
        width: 80%;
        height: 70vh;
        padding: 2rem;
        background: var(--mobile-menu-bg);
        border-radius: 0 0 0 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
        z-index: var(--z-index-menu);
        overflow-y: auto;
    }

    .nav-linkshome.activehome {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-linkshome .mobile-contact-containerhome {
        display: flex !important;
    }
}

/* For screens between 768px and 892px, scale down certain elements */
@media (min-width: 748px) and (max-width: 892px) {
    .hamburgerhome {
        display: none !important;
    }

    .nav-linkshome {
        gap: 1rem;
    }

    .nav-linkshome li a {
        font-size: 0.8rem;
        padding: 3px 0;
    }

    .phone-numberhome {
        font-size: 0.8rem;
    }

    .booking-buttonhome {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .logohome .hotel-wordhome {
        font-size: 0.8rem;
    }

    .logohome .pushpvatika-wordhome {
        font-size: 1.1rem;
    }
}

/* ========== HERO SECTION ========== */
.herohome {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/slide2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    perspective: 1000px;
}

.hero-overlayhome {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
    z-index: 1;
    animation: gradientOverlay 10s infinite alternate;
}

.background-slideshome {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-slideshome .slidehome {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.background-slideshome .slidehome.activehome {
    opacity: 1;
}

@keyframes gradientOverlay {
    from {
        background: var(--hero-gradient);
    }

    to {
        background: linear-gradient(225deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    }
}

.hero-contenthome {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 3rem;
    backface-visibility: hidden;
}

.hero-text-lefthome {
    max-width: 60%;
}

.hero-text-lefthome h1 {
    font-family: var(--font-family-serif);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text-lefthome p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-buttonhome,
.view-gallery-btnhome {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--vibrant-coral);
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease,
        transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-buttonhome::before,
.view-gallery-btnhome::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: 0;
    transform: skewX(-45deg);
}

.cta-buttonhome:hover::before,
.view-gallery-btnhome:hover::before {
    width: 100%;
}

.cta-buttonhome:hover,
.view-gallery-btnhome:hover {
    background-color: #fff;
    color: var(--vibrant-coral);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.view-gallery-btnhome {
    background-color: transparent;
    border: 2px solid var(--vibrant-coral);
    color: var(--vibrant-coral);
}

.view-gallery-btnhome:hover {
    background-color: var(--vibrant-coral);
    color: #333;
}

.hero-text-righthome {
    max-width: 35%;
}

@media (max-width: 905px) {
    .hero-contenthome {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-text-lefthome,
    .hero-text-righthome {
        max-width: 100%;
    }

    .hero-text-righthome {
        margin-top: 2rem;
    }

    .hero-text-lefthome h1 {
        font-size: 2.2rem;
    }

    .hero-text-lefthome p {
        font-size: 1rem;
    }
}

/*  */

.highlighthome {
    color: #ff6b6b;
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: text-shadow 0.3s ease-in-out;
}

.highlighthome:hover {
    text-shadow: 0px 0px 10px rgba(255, 107, 107, 0.8),
        0px 0px 20px rgba(255, 68, 68, 0.5);
}




/* ========== FEATURE CARD SECTION (Improved Design) ========== */
.feature-sectionhome {
    padding: 4rem 0;
    background: var(--light-mist);
}

.feature-headerhome {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.feature-headerhome h2 {
    font-family: var(--font-family-serif);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--vibrant-coral);
}

.feature-headerhome p {
    font-size: 1.1rem;
    color: #555;
}

.feature-card-containerhome {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-cardhome {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-cardhome::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            rgba(255, 111, 97, 0.1),
            rgba(0, 184, 212, 0.1));
    transform: rotate(45deg);
    transition: transform 0.5s ease;
    z-index: 0;
}

.feature-cardhome:hover::before {
    transform: rotate(0deg);
}

.feature-cardhome:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-iconhome {
    font-size: 3rem;
    color: var(--aqua-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.feature-cardhome:hover .card-iconhome {
    transform: scale(1.2);
}

.feature-cardhome h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    position: relative;
    z-index: 1;
}

.feature-cardhome p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

@media (max-width: 1192px) {
    .feature-card-containerhome {

        grid-template-columns: repeat(2, 1fr);

    }
}

@media (max-width: 748px) {
    .feature-card-containerhome {

        grid-template-columns: repeat(1, 1fr);

    }
}

/* ========== ROOMS SECTION ========== */
.rooms-sectionhome {
    padding: 4rem 0;
    background-color: var(--light-mist);
}

.rooms-sectionhome .containerhome {
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.rooms-sectionhome h2 {
    font-family: var(--font-family-serif);
    font-size: 2rem;
    color: var(--vibrant-coral);
    margin-bottom: 0.5rem;
}

.rooms-sectionhome p {
    max-width: 700px;
    margin: 0.5rem auto 2rem;
    color: #666;
    line-height: 1.5;
}

.rooms-gridhome {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.room-cardhome {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    backface-visibility: hidden;
}

.room-image-wraphome {
    position: relative;
    overflow: hidden;
}

.room-image-wraphome img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.room-cardhome:hover .room-image-wraphome img {
    transform: scale(1.05);
}

.price-badgehome {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--vibrant-coral);
    color: #333;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.price-badgehome:hover {
    transform: scale(1.1);
}

.room-contenthome {
    padding: 1.5rem;
    transition: background-color 0.3s ease;
}

.room-contenthome h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.room-contenthome p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 48px;
}

.room-book-btnhome {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--vibrant-coral);
    color: #333;
    font-weight: 600;
    border-radius: 25px;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease,
        transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.room-book-btnhome::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    transform: skewX(-45deg);
}

.room-book-btnhome:hover::before {
    left: 100%;
}

.room-book-btnhome:hover {
    background-color: #fff;
    color: var(--vibrant-coral);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 936px) {
    .rooms-gridhome {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .rooms-gridhome {
        grid-template-columns: 1fr;
    }
}

/* ========== ABOUT SECTION ========== */
.about-section-pv-abthome {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: transparent;
}

.container-pv-abthome {
    max-width: var(--max-width);
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-text-pv-abthome {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-family-sans);
}

.rating-pv-abthome {
    font-size: 20px;
    color: #f4b400;
    margin-bottom: 10px;
}

.about-text-pv-abthome h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 10px 0;
    line-height: 1.1;
}

.about-text-pv-abthome h2 span {
    color: var(--vibrant-coral);
}

.about-text-pv-abthome p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-pv-abathome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
    padding: 12px 7px;
    border: 2px solid #000;
    text-decoration: none;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1rem;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: bold;
    width: 206px;
    height: 50px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-text-pv-abathome {
    flex: 1;
    text-align: left;
}

.btn-icon-pv-abathome {
    background-color: var(--vibrant-coral);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 1.7rem;
    font-weight: bold;
}

.btn-pv-abathome:hover {
    background-color: #000;
    color: #fff;
}

.btn-pv-abathome:hover .btn-icon-pv-abathome {
    background-color: #a07a4d;
}

.customer-info-pv-abthome {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.thumbnails-pv-abthome {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.thumbnails-pv-abthome img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s, border 0.3s;
}

.thumbnails-pv-abthome img:hover {
    transform: scale(1.05);
}

.thumbnails-pv-abthome img.activehome {
    border: 2px solid var(--vibrant-coral);
    transform: scale(1.05);
}

.customer-text-pv-abthome {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    white-space: pre-line;
}

.about-image-pv-abthome {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 480px;
    overflow: visible;
}

.main-image-pv-abthome {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0.92;
    transition: opacity 0.5s ease-in-out;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.fade-out-pv-abthome {
    opacity: 0;
}

.overlay-image-pv-abthome {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-20%, -20%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    opacity: 0.95;
}

.overlay-image-pv-abthome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .container-pv-abthome {
        gap: 30px;
    }

    .about-text-pv-abthome h2 {
        font-size: 2.4rem;
    }

    .btn-pv-abathome {
        width: 200px;
        height: 45px;
        font-size: 0.9rem;
    }

    .btn-icon-pv-abathome {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .thumbnails-pv-abthome img {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .container-pv-abthome {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .about-text-pv-abthome {
        text-align: center;
    }

    .about-text-pv-abthome h2 {
        font-size: 2rem;
    }

    .about-text-pv-abthome p {
        font-size: 0.95rem;
    }

    .customer-info-pv-abthome {
        flex-direction: column;
        align-items: center;
    }

    .customer-text-pv-abthome {
        text-align: center;
    }

    .about-image-pv-abthome {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-section-pv-abthome {
        padding: 40px 3%;
    }

    .about-text-pv-abthome h2 {
        font-size: 1.8rem;
    }

    .about-text-pv-abthome p,
    .customer-text-pv-abthome {
        font-size: 0.9rem;
    }

    .thumbnails-pv-abthome img {
        width: 50px;
        height: 50px;
    }

    .btn-pv-abathome {
        width: 180px;
        height: 40px;
        font-size: 0.85rem;
    }

    .btn-icon-pv-abathome {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* ========== REVIEWS SECTION (Improved Design) ========== */
.reviews-sectionhome {
    background-color: var(--light-mist);
    padding: 4rem 0;
}

.reviews-sectionhome .containerhome {
    flex-direction: column;
    text-align: center;
}

.reviews-sectionhome h2 {
    font-family: var(--font-family-serif);
    font-size: 2.5rem;
    color: var(--vibrant-coral);
    margin-bottom: 1rem;
}

.reviews-sectionhome p.section-introhome {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
}

.review-cards-containerhome {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.review-cardhome {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
}

.review-cardhome::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            rgba(255, 111, 97, 0.1),
            rgba(0, 184, 212, 0.1));
    transform: rotate(45deg);
    transition: transform 0.5s ease;
    z-index: 0;
}

.review-cardhome:hover::before {
    transform: rotate(0deg);
}

.review-cardhome:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reviewer-photohome {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--vibrant-coral);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.review-cardhome:hover .reviewer-photohome {
    transform: scale(1.1);
}

.star-ratinghome {
    font-size: 1.2rem;
    color: #f4b400;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-texthome {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.reviewer-namehome {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--vibrant-coral);
    position: relative;
    z-index: 1;
}

@media (max-width: 936px) {
    .review-cards-containerhome {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .review-cards-containerhome {
        grid-template-columns: 1fr;
    }
}

/* ========== WATCH OUR LATEST VIDEO SECTION (Improved Design) ========== */
#video-sectionhome {
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.video-section-containerhome {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

#video-sectionhome h2 {
    font-family: var(--font-family-serif);
    font-size: 2.5rem;
    color: var(--vibrant-coral);
    margin-bottom: 20px;
}

#video-sectionhome p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.video-containerhome {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-containerhome iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.video-containerhome:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-containerhome::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-thumbnailhome {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
    filter: brightness(0.75);
}

.video-containerhome:hover .video-thumbnailhome {
    filter: brightness(0.6);
}

.play-buttonhome {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 2;
    animation: pulse 2s infinite;
}

.play-buttonhome:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.5);
}

.play-iconhome {
    font-size: 2.5rem;
    color: var(--vibrant-coral);
    transition: color 0.3s ease;
}

.play-buttonhome:hover .play-iconhome {
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 111, 97, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 111, 97, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 111, 97, 0);
    }
}

/* ========== LOCATION & ATTRACTIONS SECTION ========== */
.location-sectionhome {
    background-color: #fff;
    padding: 4rem 0;
}

.location-sectionhome .containerhome {
    max-width: var(--max-width);
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
}

.location-sectionhome h2 {
    font-family: var(--font-family-serif);
    font-size: 2rem;
    color: var(--vibrant-coral);
    margin-bottom: 1rem;
}

.location-sectionhome p.section-introhome {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #666;
    line-height: 1.5;
}

.custom-rowhome {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

.custom-colhome {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
}

@media (max-width: 936px) {
    .custom-colhome {
        flex: 1 1 100%;
    }
}

.map-container-customhome {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.map-container-customhome iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.attractions-listhome {
    margin: 15px 0;
    padding-left: 0;
}

.attractions-listhome li {
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.attractions-listhome li::before {
    content: "📍";
    margin-right: 8px;
    color: var(--aqua-blue);
    font-size: 1.2rem;
}

.custom-colhome h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.custom-colhome p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

/* ========== FOOTER SECTION ========== */
.footerhome {
    background-color: var(--deep-indigo);
    color: #ffffff;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.footer-containerhome {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-sectionhome {
    flex: 1 1 200px;
    margin: 20px;
    transition: transform 0.3s ease;
}

.footer-sectionhome:hover {
    transform: translateY(-5px);
}

.footer-sectionhome h2,
.footer-sectionhome h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #ffffff;
}

.footer-sectionhome p {
    font-size: 0.95rem;
    color: #dddddd;
    margin-bottom: 15px;
}

.footer-sectionhome ul {
    list-style: none;
}

.footer-sectionhome ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #dddddd;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-sectionhome ul li:hover {
    color: var(--vibrant-coral);
}

.footer-sectionhome ul li i {
    margin-right: 10px;
    color: var(--aqua-blue);
}

.footer-sectionhome a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-sectionhome a:hover {
    color: #adb5bd;
}

.social-iconshome {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
}

.social-iconshome a {
    display: inline-block;
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-iconshome a:hover {
    color: #adb5bd;
    transform: scale(1.1);
}

.newsletterhome form {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.newsletterhome input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 3px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.newsletterhome input[type="email"]:focus {
    box-shadow: 0 0 5px var(--vibrant-coral);
}

.newsletterhome button {
    padding: 10px;
    border: none;
    border-radius: 3px;
    background-color: var(--aqua-blue);
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletterhome button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#newsletter-messagehome {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-bottomhome {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #495057;
    padding-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottomhome p {
    font-size: 0.9rem;
    color: #cccccc;
}

.creditshome {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #bdc3c7;
    border-top: 1px solid #495057;
    padding-top: 10px;
    display: inline-block;
    width: auto;
}

.creditshome a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.creditshome a:hover {
    color: #ffffff;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-floathome {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 20px;
    background-color: var(--whatsapp-bg);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-floathome:hover {
    transform: scale(1.1);
}

/* ========== MODAL STYLES ========== */
.modalhome {
    display: none;
    position: fixed;
    z-index: 11000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modalhome.activehome {
    display: flex;
}

.modal-contenthome {
    max-width: 90%;
    max-height: 90%;
}

.modal-contenthome img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.modalhome .closehome {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s;
    cursor: pointer;
    z-index: 12000;
}

.modalhome .closehome:hover,
.modalhome .closehome:focus {
    color: #bbb;
}

/* ========================== GALLERY PAGE STYLES ========================== */

/* We have already merged base resets & :root. Classes are distinct (.container-art, etc.) */
.container-art {
    max-width: var(--max-width);
    width: 90%;
    margin: 0 auto;

}

/* ========== HERO SECTION (Gallery) ========== */
.hero-art {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video-art {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay-color);
    z-index: -1;
}


.hero-content-art {
    position: absolute;
    /* Ensure it's positioned within the hero section */
    top: 50%;
    /* Reduce from 50% to move it slightly up */
    left: 50%;
    transform: translate(-50%, -40%);
    /* Adjust translateY to match top */
    z-index: 1;
    text-align: center;
    color: var(--secondary-color);
    padding: 0 20px;
    width: 65%;
    /* Ensure proper alignment */
}

.hero-content-art h1 {
    font-family: var(--font-family-serif);
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content-art p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-art {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 8px;
    /* uses a smaller radius here if you want */
    text-decoration: none;
    font-size: 1rem;
    transition: background var(--transition-speed), transform var(--transition-speed);
}

.btn-art:hover {
    background: #f7b733;
    transform: translateY(-2px);
}

/* ========== GALLERY SECTION ========== */
#gallery-art {
    padding: 4rem 0;
    background: #fff;
}

.gallery-container-art {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item-art {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    /* again, smaller radius if desired */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    background-color: #fff;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.gallery-item-art:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.gallery-item-art img,
.gallery-item-art video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity var(--transition-speed);
}

/* Overlay for video thumbnails */
.video-icon-art {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

/* Optional: Stagger some larger items for variety */
.gallery-item-art:nth-child(1),
.gallery-item-art:nth-child(5),
.gallery-item-art:nth-child(9) {
    grid-column: span 2;
}

.load-more-art {
    margin: 2rem auto;
    padding: 12px 30px;
    font-size: 1rem;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--transition-speed), transform var(--transition-speed);
    display: block;
}

.load-more-art:hover {
    background: #f7b733;
    transform: translateY(-2px);
}

/* ========== LIGHTBOX STYLES ========== */
.lightbox-art {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.lightbox-art.active-art {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-art {
    position: relative;
    width: 90%;
    height: 90%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

#lightbox-media-container-art {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in-art {
    opacity: 1 !important;
}

#lightbox-media-container-art img,
#lightbox-media-container-art video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

#lightbox-spinner-art {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lightbox-close-art,
.lightbox-prev-art,
.lightbox-next-art {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition-speed);
    color: var(--text-color);
    z-index: 3;
}

.lightbox-close-art {
    top: 20px;
    right: 20px;
    transform: none;
}

.lightbox-prev-art {
    left: 10px;
}

.lightbox-next-art {
    right: 10px;
}

.lightbox-close-art:hover,
.lightbox-prev-art:hover,
.lightbox-next-art:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* ========== TESTIMONIALS SECTION (Modern Look) ========== */
.testimonials-art.modern-testimonials-art {
    padding: 4rem 0;
    background: #f4f4f8;
    text-align: center;
}

.testimonials-art.modern-testimonials-art h2 {
    font-family: var(--font-family-serif);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.testimonial-slider-art.modern-slider-art {
    display: flex;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card-art {
    min-width: 100%;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    display: none;
    padding: 2rem 2rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card-art.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.quote-icon-art {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-text-art {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text-art::before {
    content: "“";
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: -10px;
}

.testimonial-author-art {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.author-name-art {
    /* Additional styling optional */
}

.author-position-art {
    font-weight: 400;
    font-size: 0.9rem;
    color: #777;
}

.slider-controls-art.modern-controls-art {
    margin-top: 2rem;
    text-align: center;
}

.slider-controls-art.modern-controls-art button {
    background: var(--primary-color);
    border: none;
    padding: 10px 15px;
    margin: 0 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider-controls-art.modern-controls-art button:hover {
    background: #f7b733;
}

/* ========== FAQ SECTION ========== */
.faq-section-art {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-section-art h2 {
    font-family: var(--font-family-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2E8B57;
    text-align: center;
}

.faq-container-art {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item-art {
    border-bottom: 1px solid #ddd;
    padding: 1.5rem 0;
}

.faq-question-art {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.faq-question-art:after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.faq-question-art.active:after {
    transform: rotate(180deg);
}

.faq-answer-art {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-art.open {
    max-height: 200px;
}

.faq-answer-art p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.8rem;
    line-height: 1.5;
}

/* MOBILE RESPONSIVENESS FOR GALLERY BELOW 500px */
@media (max-width: 500px) {
    .gallery-container-art {
        grid-template-columns: 1fr;
    }

    .gallery-item-art {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .hero-content-art {
        width: 80%;
    }

    .hero-content-art h1 {
        font-size: 1.7rem;

    }

    .hero-content-art p {
        font-size: 0.9rem;

    }

    .hero-content-art {

        top: 40%;
    }


}

/* ========================== CONTACT PAGE STYLES ========================== */

/* The base resets & :root are merged at top. 
     We'll keep only contact-specific classes below. */
main-ctn {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container-ctn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--max-width);
    width: 100%;
    gap: 40px;
    margin-top: 45px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ========== CONTACT TEXT SECTION ========== */
.contact-text-ctn {
    padding: 40px;
    background-color: #fdfaf6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInLeft 1s ease-out;
}

.contact-text-ctn p {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-text-ctn h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #333;
}

form-ctn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-row-ctn {
    display: flex;
    gap: 20px;
}

.form-row-ctn>div,
.form-field-ctn {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

input,
textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color var(--transition-speed) ease,
        box-shadow var(--transition-speed) ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #d6a25f;
    box-shadow: 0 0 5px rgba(214, 162, 95, 0.5);
}

textarea {
    resize: none;
}

/* Pre-defined error message container */
.error-message-ctn {
    color: var(--vibrant-coral);
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 1em;
}

button {
    padding: 15px 20px;
    background-color: #d6a25f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color var(--transition-speed) ease;
}

button:hover {
    background-color: #b5894d;
}

/* Success Message */
#success-message-ctn {
    display: none;
    background-color: #d6a25f;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

/* ========== CONTACT IMAGE SECTION ========== */
.contact-image-ctn {
    overflow: hidden;
    animation: slideInRight 1s ease-out;
}

.contact-image-ctn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== GOOGLE MAP SECTION ========== */
.map-container-ctn {
    max-width: var(--max-width);
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container-ctn iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .contact-container-ctn {
        grid-template-columns: 1fr;
    }

    .contact-text-ctn {
        padding: 20px;
    }
}

@media (max-width: 500px) {

    .contact-text-ctn p {
        font-size: 12px;
    }

    .contact-text-ctn h1 {
        font-size: 30px;
    }

    .form-row-ctn {
        flex-direction: column;
        /* Stack elements vertically */
        gap: 10px;
    }

    .form-field-ctn {
        width: 100%;
        /* Full width */
    }

    input,
    textarea {
        width: 100%;
        /* Ensures input fields take full width */
        padding: 10px;
        /* Adds better touch-friendly spacing */
        font-size: 16px;
        /* Increases text readability */
    }

    .ctn-button {
        width: 100%;
        /* Full-width button */
        padding: 12px;
        font-size: 16px;
    }

    #success-message-ctn {
        font-size: 14px;
        /* Adjust text size */
        text-align: center;
    }


}

/* ========== ANIMATIONS ========== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}