@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');


/* my-site -color 485342 */

body {
    background-image: url('/assets/images/banner/home-hero-2.JPG');
    /* Replace with your path */
    background-size: contain;
    /* background-position: center top; */
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white;
    width: 100%;
    position: relative;
}

/* Optional dark overlay */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* === Navbar === */
header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: #022E21;
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: auto;
}

.nav-container a {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 30%;
    transition: all 0.4s ease;
}

header.scrolled .logo img {
    width: 20%;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 30px;
    transition: all 0.4s ease;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    border-radius: 20px;
}

.nav-links a:hover {
    background-color: #CCA73F;
    border-radius: 20px;
}

.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}



@media(max-width: 768px) {
    body {
        background-image: none;
    }

    .bg-overlay {
        display: none;
    }

    header {
        background-color: #022E21;
    }

    .logo img {
        width: 20%;
    }
}

/* === Hero Section === */
.home-hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-container {
    display: flex;
    flex-wrap: wrap;
    align-content: center !important;
    justify-content: center;
    gap: 30px;
}


.home-hero-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 50%; */
    gap: 20px;
}

.home-hero-cont h1 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    /* width: 70%; */
    text-align: center;
}

.home-hero-cont p {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    text-align: center;
    width: 75%;
}

.home-hero-btn {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    text-decoration: none;
    color: #fff;
    background-color: #CCA73F;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.home-hero-btn:hover {
    background-color: #fff;
    color: #CCA73F;
}


/* === Responsive === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #022E21;
        position: absolute;
        top: 90px;
        right: 0px;
        width: 100%;
        border-radius: 5px;
        padding: 10px;
        transition: all 0.4s ease;
    }

    .nav-links.show {
        display: flex;
        transform: all 0.4s ease;
    }

    .hamburger {
        display: block;
    }

    .home-hero-section {
        background-color: #fff;
        height: 80%;
        display: flex;
        align-items: center;
        background-image: url(/assets/images/banner/home-hero-bg.JPG);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
        position: relative;
    }


    .hero-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 10;
        background-color: #0000003b;
    }

    .home-hero-cont {
        padding-top: 80px;
        position: relative;
        z-index: 12;
    }

    .home-hero-cont h1 {
        font-size: 30px;
        width: 100%;
    }


    .home-hero-cont p {
        font-size: 18px;
        width: 100%;
    }

    .home-hero-btn {
        position: relative;
        z-index: 12;
    }

    .about-page-hero-h1 {
        font-size: 60px !important;
    }
}



/* about-section */
.home-about-section {
    padding: 80px 0;
    background-color: #faf8f6;
}


.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 45%;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-family: 600;
    color: #000000;
    margin-bottom: 20px;
}

.about-text p {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.home-about-btn {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    text-decoration: none;
    color: #fff;
    background-color: #CCA73F;
    border-radius: 50px;
    transition: all 0.4s ease;
    margin-top: 30px;
}

.home-about-btn:hover {
    background-color: #fff;
    color: #CCA73F;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        flex: 1 1 100%;
        align-items: center;
    }

    .about-image {
        flex: 1 1 100%;
    }

    .about-text h2 {
        font-size: 1.9rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

}



/* room-section */
.home-rooms-section {
    padding: 80px 0;
    background-color: #fff;
}


.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: "Montserrat", serif;
    font-size: 50px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header p {
    font-family: "Urbanist", sans-serif;
    color: #555;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.room-card {
    background-color: #faf8f6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.3s ease;
}


.room-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.room-info {
    padding: 20px;
}

.room-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    color: #000000;
    margin-bottom: 8px;
}

.room-info .price {
    font-weight: 600;
    color: #CCA73F;
    margin-bottom: 5px;
}

.room-info .size {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.room-info .desc {
    color: #444;
    font-family: "Urbanist", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .room-info h3 {
        font-size: 1.3rem;
    }

    .room-info .desc {
        font-size: 0.9rem;
    }
}



/* service-section */
.home-amenities-section {
    padding: 80px 0;
    background-color: #fff;
}


.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-header p {
    font-family: "Urbanist", sans-serif;
    color: #000000;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.amenity-card {
    background-color: #faf8f6;
    padding: 30px 25px;
    text-align: center;
    border-radius: 16px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.amenity-card i {
    font-size: 2rem;
    color: #CCA73F;
    margin-bottom: 15px;
}

.amenity-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 600;
}

.amenity-card p {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .amenity-card {
        padding: 25px 20px;
    }

    .amenity-card p {
        font-size: 0.9rem;
    }
}



/* promo section */
.rooms-promo-banner {
    background: linear-gradient(90deg, #b46a2a, #CCA73F);
    color: #fff;
    padding: 20px 25px;
    text-align: center;
    border-radius: 12px;
    /* margin-top: 40px; */
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.rooms-promo-banner p {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 0px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .rooms-promo-banner {
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .rooms-promo-banner span {
        font-size: 1rem;
    }
}



/* testimonial section */
.home-testimonial-section {
    background-color: #FAF8F6;
}

.testimonial-slider {
    height: 300px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 30px;
    text-align: center;
    margin: 30px 10px;
    height: 200px !important;
    transition: transform 0.3s ease;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}


.testimonial-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 0.95rem;
}


/* footer-section */
.site-footer {
    background-color: #022E21;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Urbanist', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand img {
    width: 20%;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #CCA73F;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .footer-brand h3 {
        text-align: left;
    }

    .footer-brand p {
        text-align: left;
    }

    .footer-links h4 {
        text-align: left;
    }

    .footer-contact h4 {
        text-align: left;
    }

    .footer-links ul li,
    .footer-contact ul li {
        margin-bottom: 8px;
        text-align: left;
    }
}


/* counter-section */
.home-counter-section {
    background-color: #faf8f6;
    padding: 80px 20px;
    text-align: center;
}

.counter-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-icon {
    font-size: 2.5rem;
    color: #CCA73F;
    margin-bottom: 10px;
}

.counter-item h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #CCA73F;
    margin: 5px 0;
}

.counter-item p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .counter-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .counter-item h2 {
        font-size: 2rem;
    }

    .counter-item p {
        font-size: 0.95rem;
    }
}



/* about us section */
.about-page-us-section {
    background-color: #fafafa;
}

.about-page-header .about-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    color: #CCA73F;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-page-header .about-page-subtitle {
    font-family: 'Urbanist', sans-serif;
    color: #555;
    font-weight: 500;
    font-size: 18px;
}

.about-page-content .about-page-text {
    font-family: 'Urbanist', sans-serif;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.about-page-img {
    width: 80%;
}



/* Responsive */
@media (max-width: 768px) {
    .about-page-content {
        text-align: center;
    }

    .about-page-img {
        margin-bottom: 20px;
        width: 100%;
    }

    .about-page-header .about-page-title {
        font-size: 35px;
    }
}


/* m-s-section */
.about-page-mission-section {
    background-color: #fff;
    text-align: center;
}

.about-page-mission-title {
    font-family: 'Montserrat', sans-serif;
    color: #CCA73F;
    margin-bottom: 10px;
    font-size: 50px;
    font-weight: 600;
}

.about-page-mission-subtitle {
    font-family: 'Urbanist', sans-serif;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-page-mission-cards .about-page-mission-card {
    background-color: #fafafa;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    flex: 1 1 250px;
    /* flexible width */
    min-width: 200px;
    /* ensures small screens handle nicely */
}

.mission-icon i {
    color: #CCA73F;
}

.about-page-mission-card-title {
    font-family: 'Montserrat', sans-serif;
    color: #CCA73F;
    margin: 10px 0;
}

.about-page-mission-card-text {
    font-family: 'Urbanist', sans-serif;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-page-mission-cards {
        flex-direction: column;
        gap: 20px;
    }

    .about-page-mission-title {
        font-size: 35px;
    }
}


/* common-area */
.home-common-section {
    padding: 80px 0;
    background-color: #faf8f6;
}

.home-common-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: "Montserrat", serif;
    font-size: 50px;
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header p {
    font-family: "Urbanist", sans-serif;
    color: #555;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.common-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.common-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.3s ease;
}


.common-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.common-info {
    padding: 20px;
    text-align: center;
}

.common-info h3 {
    font-family: "Montserrat", serif;
    font-size: 22px;
    color: #000000;
    margin-bottom: 10px;
}

.common-info p {
    font-family: "Urbanist", sans-serif;
    color: #444;
    font-size: 17px;
    /* line-height: 1.6; */
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 35px;
    }

    .common-info p {
        font-size: 0.9rem;
    }
}


/* Overall Section */
.service-page-all-services {
    background: #fffbf7;
    padding: 80px 60px;
    width: 100%;
}

/* Title & Subtitle */
.service-page-all-title {
    font-family: 'Montserrat', sans-serif;
    color: #CCA73F;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-page-all-subtitle {
    font-family: 'Urbanist', sans-serif;
    color: #666;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* Grid Layout */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Individual Category Card */
.service-category {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 20px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: rgba(204, 167, 63, 0.3) 0px 8px 25px;
}

/* Icon Circle */
.service-icon-circle {
    width: 70px;
    height: 70px;
    background: #CCA73F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 10px rgba(204, 167, 63, 0.4);
}

/* Category Title */
.service-category-title {
    font-family: 'Montserrat', sans-serif;
    color: #CCA73F;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    font-family: 'Urbanist', sans-serif;
    font-size: 17px;
    color: #555;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.service-list li i {
    color: #CCA73F;
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.service-list li:hover {
    color: #CCA73F;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-page-all-title {
        font-size: 34px;
    }

    .service-page-all-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .service-category {
        padding: 30px 20px;
    }

    .service-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }


    .service-page-all-services{
        padding: 10px;
    }
}


/* gallery section */

.gallery-page-section {
    background-color: #fafafa;
    text-align: center;
}

.gallery-page-title {
    font-family: 'Montserrat', sans-serif;
    color: #CCA73F;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-page-subtitle {
    font-family: 'Urbanist', sans-serif;
    color: #555;
    font-size: 20px;
    max-width: 700px;
    font-weight: 500;
    margin: 0 auto 40px auto;
}

/* Grid Layout */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gallery-page-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-page-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.1);
}

.gallery-page-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
}

/* Lightbox Overlay */


.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-lightbox-img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    position: relative;
    top: 100;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    display: none;
}

/* .gallery-lightbox-prev {
    left: 0;
}

.gallery-lightbox-next {
    right: 0;
} */

/* .gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover,
.gallery-lightbox-close:hover {
    color: #b46a2a;
    transition: 0.3s;
} */


@media(max-width: 768px) {
    .gallery-lightbox-img {
        position: relative;
        top: 300;
    }


    .gallery-lightbox-close {
        top: 300px;
        right: 25px;
    }
}


/* contact page  */
/* ===== Contact Section ===== */
.contact-section {
    background-color: #fff;
    padding: 80px 0;
}

.contact-section .container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    background: #f9f9f9;
    padding: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media(max-width: 768px) {
    .contact-section .container {
        flex-direction: column;
    }
}

.contact-adj {
    width: 50%;
    border-radius: 16px;
}

.contact-adj-2 {
    width: 50%;
}

@media(max-width: 768px) {
    .contact-adj {
        width: 100%;
    }

    .contact-adj-2 {
        width: 100%;
    }
}

.contact-info {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.contact-info-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.contact-detail p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
}

.contact-detail i {
    color: #d29f68;
    margin-right: 10px;
}

.contact-detail a {
    color: #444;
    text-decoration: none;
}

.contact-social h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.social-icons a {
    font-size: 1.3rem;
    margin-right: 15px;
    color: #d29f68;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #b87b3c;
}

@media (max-width: 768px) {
    .contact-adj {
        flex-direction: column;
    }

    .contact-adj-2 {
        flex: 1 1 100%;
    }
}

.contact-section h2 {
    /* text-align: center; */
    font-size: 32px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 600;
}

.contact-section p {
    /* text-align: center; */
    color: #555;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: 'Urbanist', sans-serif;

}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-family: 'Urbanist', sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    font-family: 'Urbanist', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 5px rgba(108, 99, 255, 0.4);
}

.contact-form button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    text-decoration: none;
    color: #fff;
    background-color: #CCA73F;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: none;
}

.contact-form button:hover {
    background: #fff;
    color: #CCA73F;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}



/* ===== Loader Overlay ===== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

.loader {
    border: 4px solid #ddd;
    border-top: 4px solid #6c63ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== Notification Stack ===== */
.notification-stack {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10000;
}

.notification {
    background: #fff;
    color: #333;
    border-left: 6px solid;
    border-radius: 8px;
    padding: 12px 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.4s forwards;
}

.notification.success {
    border-color: #28a745;
}

.notification.error {
    border-color: #dc3545;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .contact-section .container {
        padding: 25px;
    }

    .contact-section h2 {
        font-size: 28px;
    }
}