* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #fffdf9;
    color: #353535;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* HEADER */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: white;

    box-shadow:
        0 3px 16px
        rgba(0, 0, 0, 0.07);
}


/* TOP BAR */

.top-bar {
    background: #fff8ef;

    border-bottom: 1px solid #f0e4d6;

    padding: 7px 6%;
}

.top-bar-content {
    max-width: 1200px;

    margin: auto;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    color: #74401f;

    font-size: 14px;
}

.top-name {
    font-weight: 600;
}

.top-contact {
    display: flex;

    align-items: center;

    gap: 20px;
}

.top-contact a {
    color: #555;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 7px;

    transition: 0.25s;
}

.top-contact a:hover {
    color: #e87524;
}

.top-contact .top-whatsapp {
    color: #168a45;
}

.top-whatsapp i {
    color: #25d366;

    font-size: 19px;
}


/* NAVBAR */

.navbar {
    min-height: 74px;

    padding: 0 6%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: white;
}

.logo {
    color: #713718;

    font-size: 20px;

    font-weight: 750;

    white-space: nowrap;
}

.nav-links {
    list-style: none;

    display: flex;

    align-items: center;

    gap: 25px;
}

.nav-links a {
    color: #3e3e3e;

    font-size: 15px;

    font-weight: 550;

    transition: 0.25s;
}

.nav-links a:hover {
    color: #e87524;
}

.nav-book-btn {
    padding: 10px 21px;

    border-radius: 28px;

    background: #e87524;

    color: white;

    font-weight: 650;

    white-space: nowrap;

    transition: 0.25s;
}

.nav-book-btn:hover {
    background: #cf631b;

    transform: translateY(-2px);
}


/* HERO */

.hero {
    position: relative;

    min-height: 78vh;

    padding: 100px 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    text-align: center;

    background-image: url("images/hero1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(20, 12, 7, 0.52),
            rgba(20, 12, 7, 0.48)
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 950px;

    color: white;
}

.mantra {
    margin-bottom: 14px;

    color: #ffe0a5;

    font-size: 21px;

    font-weight: 600;

    letter-spacing: 2px;
}

.hero h1 {
    margin-bottom: 14px;

    color: white;

    font-size: 57px;

    line-height: 1.12;

    text-shadow:
        0 3px 12px
        rgba(0, 0, 0, 0.4);
}

.hero h2 {
    margin-bottom: 20px;

    color: #fff1d2;

    font-size: 35px;

    line-height: 1.25;

    font-weight: 600;
}

.hero-text {
    max-width: 820px;

    margin: 0 auto 32px;

    color: white;

    font-size: 22px;

    font-weight: 500;

    line-height: 1.55;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;
}

.primary-btn,
.secondary-btn {
    display: inline-block;

    padding: 13px 27px;

    border-radius: 28px;

    font-size: 16px;

    font-weight: 650;

    transition: 0.25s;
}

.primary-btn {
    background: #e87524;

    color: white;

    border: 1px solid #e87524;
}

.primary-btn:hover {
    background: #cf631b;

    transform: translateY(-2px);
}

.secondary-btn {
    background:
        rgba(255, 255, 255, 0.13);

    color: white;

    border:
        1px solid
        rgba(255, 255, 255, 0.9);
}

.secondary-btn:hover {
    background: white;

    color: #603116;
}


/* SLIDER */

.slider-dots {
    position: absolute;

    z-index: 5;

    bottom: 24px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 9px;
}

.slider-dot {
    width: 11px;

    height: 11px;

    padding: 0;

    border: 1px solid white;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.55);

    cursor: pointer;
}

.slider-dot.active {
    background: #ef7b2d;

    border-color: #ef7b2d;

    transform: scale(1.25);
}


/* GENERAL */

.section {
    padding: 90px 7%;

    text-align: center;
}

.section-small-title {
    margin-bottom: 10px;

    color: #e87524;

    font-size: 12px;

    font-weight: 750;

    letter-spacing: 4px;
}

.section h2 {
    margin-bottom: 18px;

    color: #693617;

    font-size: 38px;

    line-height: 1.25;
}

.section-description {
    max-width: 680px;

    margin: 0 auto 40px;

    color: #777;

    font-size: 16px;
}


/* ABOUT */

.about-section {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fffaf4
        );
}

.about-wrapper {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 70px;

    align-items: center;

    text-align: left;
}

.left-title {
    text-align: left;
}

.about-intro h2 {
    max-width: 570px;

    margin-bottom: 21px;

    font-size: 43px;

    line-height: 1.2;
}

.about-intro h2 span {
    color: #e87524;
}

.about-lead {
    margin-bottom: 18px;

    color: #493c34;

    font-size: 20px;

    font-weight: 550;

    line-height: 1.6;
}

.about-text {
    margin-bottom: 15px;

    color: #6f6863;

    font-size: 16px;

    line-height: 1.8;
}

.about-quote {
    margin: 28px 0;

    padding: 20px 22px;

    border-left:
        4px solid #e87524;

    border-radius:
        0 12px 12px 0;

    background: #fff6e9;
}

.about-book-btn {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 26px;

    background: #e87524;

    color: white;

    font-weight: 650;
}


/* ABOUT CARDS */

.about-details {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 17px;
}

.about-detail-card {
    min-height: 165px;

    padding: 28px 24px;

    border:
        1px solid #efe4d8;

    border-radius: 16px;

    background: white;

    box-shadow:
        0 10px 28px
        rgba(80, 48, 20, 0.055);
}

.about-detail-card h3 {
    margin-bottom: 10px;

    color: #693617;

    font-size: 19px;
}

.about-detail-card p {
    color: #77706b;

    font-size: 14px;

    line-height: 1.65;
}


/* SERVICES */

.services-section {
    background: #fffaf5;
}

.services-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    min-height: 245px;

    padding: 30px 22px;

    display: flex;

    flex-direction: column;

    align-items: center;

    border:
        1px solid #eee4da;

    border-radius: 16px;

    background: white;

    box-shadow:
        0 8px 22px
        rgba(60, 40, 20, 0.045);

    transition: 0.3s;
}

.service-card:hover {
    transform:
        translateY(-6px);

    border-color: #ecc7aa;
}

.service-card h3 {
    margin-bottom: 13px;

    color: #693617;

    font-size: 20px;
}

.service-card p {
    margin-bottom: 20px;

    color: #74706c;

    font-size: 14px;

    line-height: 1.7;
}

.details-btn {
    margin-top: auto;

    padding: 9px 16px;

    border:
        1px solid #e87524;

    border-radius: 23px;

    background: white;

    color: #e87524;

    font-weight: 650;

    cursor: pointer;
}

.details-btn:hover {
    background: #e87524;

    color: white;
}


/* BOOKING */

.booking-section {
    background: #f2f8fb;
}

#bookingForm {
    max-width: 780px;

    margin: 36px auto 0;

    padding: 36px;

    border:
        1px solid #e3e9ec;

    border-radius: 17px;

    background: white;

    text-align: left;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.055);
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #444;

    font-size: 14px;

    font-weight: 650;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border:
        1px solid #d8dfe3;

    border-radius: 9px;

    background: white;

    color: #333;

    font-size: 15px;

    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e87524;

    box-shadow:
        0 0 0 3px
        rgba(232, 117, 36, 0.1);
}

.whatsapp-btn {
    width: 100%;

    padding: 14px 20px;

    border: none;

    border-radius: 27px;

    background: #25d366;

    color: white;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;
}

.whatsapp-btn i {
    margin-right: 8px;

    font-size: 22px;
}


/* GALLERY */

.gallery-section {
    background: white;
}

.gallery-container {
    width: 100%;

    max-width: 1150px;

    margin: 40px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.gallery-card {
    height: 330px;

    overflow: hidden;

    border-radius: 16px;

    background: #f8f3ed;

    box-shadow:
        0 8px 25px
        rgba(70, 45, 25, 0.10);

    transition: 0.3s;
}

.gallery-card:hover {
    transform:
        translateY(-5px);
}

.gallery-card img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}

.gallery-card:hover img {
    transform:
        scale(1.06);
}


/* CONTACT */

.contact-section {
    background:
        linear-gradient(
            135deg,
            #fff8ef,
            #fffdf8
        );
}

.contact-description {
    max-width: 600px;

    margin: auto;

    color: #6f6862;
}

.contact-buttons {
    margin-top: 30px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;
}

.contact-call-btn,
.contact-whatsapp-btn {
    min-width: 260px;

    padding: 16px 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border-radius: 14px;

    color: white;
}

.contact-call-btn {
    background: #e87524;
}

.contact-whatsapp-btn {
    background: #25d366;
}

.contact-call-btn > i,
.contact-whatsapp-btn > i {
    font-size: 30px;
}

.contact-call-btn small,
.contact-whatsapp-btn small {
    display: block;

    text-align: left;
}

.contact-call-btn strong,
.contact-whatsapp-btn strong {
    display: block;

    font-size: 20px;
}


/* FOOTER */

footer {
    border-top:
        1px solid #f0dfcc;

    background: #fff8ef;

    color: #555;
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    padding:
        60px 6% 45px;

    display: grid;

    grid-template-columns:
        1.3fr 0.7fr 1.2fr;

    gap: 60px;

    text-align: left;
}

.footer-logo {
    margin-bottom: 15px;

    color: #693617;

    font-size: 25px;

    font-weight: 750;
}

.footer-description {
    max-width: 390px;

    color: #6d625b;

    line-height: 1.8;
}

.footer-links {
    display: flex;

    flex-direction: column;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 17px;

    color: #693617;

    font-size: 21px;
}

.footer-links a {
    margin-bottom: 9px;

    color: #62574f;
}

.contact-small-text {
    margin-bottom: 18px;
}

.footer-contact-card {
    width: 100%;

    margin-bottom: 13px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    border:
        1px solid #f0dfcc;

    border-radius: 13px;

    background: white;

    color: #444;
}

.footer-contact-icon {
    width: 52px;

    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 24px;
}

.call-icon {
    background: #fff0df;

    color: #e87524;
}

.whatsapp-icon {
    background: #25d366;

    color: white;
}

.footer-contact-card span {
    display: block;

    color: #777;

    font-size: 13px;
}

.footer-contact-card strong {
    display: block;

    color: #693617;

    font-size: 23px;
}

.whatsapp-card strong {
    color: #168a45;
}

.footer-bottom {
    padding: 18px 6%;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid #ead9c7;

    background: #fff4e7;

    color: #786a61;

    font-size: 13px;
}


/* TABLET */

@media (max-width: 1000px) {

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .services-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns:
            1fr 1fr;
    }

    .footer-contact {
        grid-column:
            1 / -1;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .top-bar {
        padding:
            7px 12px;
    }

    .top-bar-content {
        flex-direction: column;

        gap: 6px;

        text-align: center;
    }

    .top-contact {
        flex-wrap: wrap;

        justify-content: center;

        gap: 12px;
    }

    .navbar {
        min-height: 68px;

        padding:
            0 14px;

        gap: 10px;
    }

    .logo {
        font-size: 14px;

        line-height: 1.3;

        white-space: normal;
    }

    .nav-book-btn {
        padding:
            8px 11px;

        font-size: 12px;
    }

    .hero {
        min-height: 74vh;

        padding:
            75px 18px;
    }

    .mantra {
        font-size: 17px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero h2 {
        font-size: 25px;
    }

    .hero-text {
        font-size: 17px;
    }

    .section {
        padding:
            65px 18px;
    }

    .section h2 {
        font-size: 30px;
    }

    .about-intro h2 {
        font-size: 33px;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    #bookingForm {
        padding:
            24px 18px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        height: 280px;
    }

    .contact-call-btn,
    .contact-whatsapp-btn {
        width: 100%;
/* =========================================
   ARTHADIKSHA PUJA AND PANDIT SERVICES
   MAIN WEBSITE STYLESHEET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #4a332c;
    background: #fffdf9;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   HEADER - TOP BAR
========================================= */

header {
    position: relative;
    z-index: 1000;
    background: #ffffff;
}

.top-bar {
    background: #fffaf3;
    border-bottom: 1px solid #efe2d5;
}

.top-bar-content {
    width: min(1180px, 92%);
    min-height: 42px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-name {
    color: #7d4635;
    font-size: 14px;
    font-weight: 600;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-contact a {
    color: #544a46;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-contact a:hover {
    color: #b33322;
}

.top-contact .top-whatsapp {
    color: #2c9d55;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
    width: min(1180px, 92%);
    min-height: 78px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: #ffffff;
}

.logo {
    color: #8c2e24;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    max-width: 330px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

.nav-links a {
    color: #392f2c;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #d55420;
}

.nav-book-btn {
    background: #e76424;
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 7px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-book-btn:hover {
    background: #c94b15;
    transform: translateY(-2px);
}

/* =========================================
   HERO / DATABASE SLIDER
========================================= */

.hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(57, 20, 13, 0.78),
        rgba(78, 29, 17, 0.52),
        rgba(45, 18, 11, 0.68)
    );
}

.hero-content {
    position: relative;
    z-index: 5;
    width: min(850px, 90%);
    padding: 80px 10px 110px;
}

.mantra {
    color: #ffd8a0;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 6vw, 68px);
    line-height: 1.08;
    margin-bottom: 17px;
    text-shadow: 0 3px 12px rgba(0,0,0,.25);
}

.hero h2 {
    color: #ffd2a2;
    font-size: clamp(21px, 3vw, 30px);
    margin-bottom: 17px;
}

.hero-text {
    max-width: 720px;
    margin: 0 auto 30px;
    color: #f7eee9;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-btn,
.secondary-btn {
    padding: 13px 24px;
    border-radius: 7px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.primary-btn {
    background: #ed6924;
    color: #ffffff;
}

.secondary-btn {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.65);
    color: #ffffff;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 6;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}

.slider-dot.active {
    background: #f47b32;
    transform: scale(1.18);
}

/* =========================================
   COMMON SECTION
========================================= */

.section {
    padding: 85px 6%;
}

.section-small-title {
    color: #d8662f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 10px;
}

.left-title {
    text-align: left;
}

.section > h2,
.contact-section > h2,
.services-section > h2,
.gallery-section > h2,
.booking-section > h2 {
    color: #7f3025;
    font-family: Georgia, "Times New Roman", serif;
    text-align: center;
    font-size: clamp(31px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 13px;
}

.section-description,
.contact-description {
    max-width: 720px;
    margin: 0 auto 38px;
    color: #6c625e;
    text-align: center;
}

/* =========================================
   ABOUT
========================================= */

.about-section {
    background: #ffffff;
}

.about-wrapper {
    width: min(1120px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
}

.about-intro h2 {
    color: #7f3025;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-intro h2 span {
    color: #df6e2f;
}

.about-lead {
    color: #4c3a34;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-text {
    color: #6a5e59;
    margin-bottom: 15px;
}

.about-quote {
    margin: 25px 0;
    padding: 17px 20px;
    background: #fff5e9;
    border-left: 4px solid #de6729;
    border-radius: 0 8px 8px 0;
    color: #764233;
    font-style: italic;
}

.about-book-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 7px;
    background: #e66727;
    color: #fff;
    font-weight: 700;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-detail-card {
    background: #fff8f0;
    border: 1px solid #f1dfd0;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 7px 20px rgba(86, 48, 29, .07);
}

.about-detail-card h3 {
    color: #873628;
    font-size: 17px;
    margin-bottom: 8px;
}

.about-detail-card p {
    color: #6d625d;
    font-size: 14px;
}

/* =========================================
   SERVICES
========================================= */

.services-section {
    background: #fff8ef;
}

.services-container {
    width: min(1160px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #f0dfd1;
    border-radius: 12px;
    padding: 26px 24px;
    box-shadow: 0 8px 24px rgba(94, 50, 25, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 28px rgba(94, 50, 25, .12);
}

.service-card h3 {
    color: #873126;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    margin-bottom: 9px;
}

.service-card p {
    color: #6d625d;
    min-height: 52px;
    margin-bottom: 17px;
}

.details-btn {
    border: 0;
    background: #e66525;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.details-btn:hover {
    background: #bd4817;
    transform: translateY(-2px);
}

/* =========================================
   BOOKING
========================================= */

.booking-section {
    background: #ffffff;
}

#bookingForm {
    width: min(860px, 100%);
    margin: auto;
    padding: 32px;
    background: #fff9f2;
    border: 1px solid #efdfd1;
    border-radius: 13px;
    box-shadow: 0 9px 28px rgba(80, 47, 28, .08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: #563f37;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d9c9bd;
    background: #ffffff;
    color: #3f3531;
    border-radius: 7px;
    padding: 12px 13px;
    font-size: 15px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d96831;
    box-shadow: 0 0 0 3px rgba(217, 104, 49, .10);
}

.form-group textarea {
    resize: vertical;
}

.whatsapp-btn {
    width: 100%;
    border: 0;
    border-radius: 7px;
    padding: 14px 18px;
    background: #e45e22;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.whatsapp-btn:hover {
    background: #c64c18;
}

.booking-success-message,
.booking-error-message {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.booking-success-message {
    background: #e4f7e8;
    color: #176c32;
}

.booking-error-message {
    background: #ffe6e6;
    color: #a50000;
}

/* =========================================
   GALLERY
========================================= */

.gallery-section {
    background: #fff8ef;
}

.gallery-container {
    width: min(1160px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 19px;
}

.gallery-card {
    height: 280px;
    overflow: hidden;
    border-radius: 11px;
    background: #ece3dc;
    box-shadow: 0 7px 22px rgba(70, 43, 28, .09);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-card:hover img {
    transform: scale(1.045);
}

/* =========================================
   CONTACT
========================================= */

.contact-section {
    background: #ffffff;
}

.contact-buttons {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-call-btn,
.contact-whatsapp-btn,
.contact-location-btn {
    min-width: 220px;
    max-width: 360px;
    min-height: 76px;
    padding: 16px 22px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: transform .2s ease, filter .2s ease;
}

.contact-call-btn {
    background: #ef681d;
}

.contact-whatsapp-btn {
    background: #14c936;
}

.contact-location-btn {
    background: #9a2f27;
}

.contact-call-btn:hover,
.contact-whatsapp-btn:hover,
.contact-location-btn:hover {
    transform: translateY(-3px);
    filter: brightness(.96);
}

.contact-call-btn > i,
.contact-whatsapp-btn > i,
.contact-location-btn > i {
    font-size: 31px;
    min-width: 34px;
    text-align: center;
}

.contact-buttons a div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-buttons small {
    font-size: 12px;
    opacity: .92;
}

.contact-buttons strong {
    font-size: 18px;
    line-height: 1.3;
}

/* =========================================
   FOOTER
========================================= */

footer {
    background: #fff8f0;
    border-top: 1px solid #efdfd0;
}

.footer-container {
    width: min(1160px, 92%);
    margin: auto;
    padding: 58px 0 42px;
    display: grid;
    grid-template-columns: 1.25fr .65fr 1fr;
    gap: 60px;
}

.footer-logo {
    color: #7f3025;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.footer-description,
.contact-small-text {
    color: #6d625d;
    font-size: 14px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-links h3,
.footer-contact h3 {
    color: #7f3025;
    font-size: 18px;
    margin-bottom: 14px;
}

.footer-links a {
    color: #5c514d;
    margin-bottom: 7px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #d75f25;
}

.contact-small-text {
    margin-bottom: 14px;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 14px;
    margin-bottom: 10px;
    background: #ffffff;
    border: 1px solid #ebddd2;
    border-radius: 9px;
    color: #7b3127;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff0e4;
    color: #e26326;
}

.whatsapp-icon {
    background: #eaf9ee;
    color: #23ac4a;
}

.footer-contact-card span {
    display: block;
    color: #83746e;
    font-size: 11px;
}

.footer-contact-card strong {
    font-size: 16px;
}

.footer-bottom {
    padding: 18px 6%;
    text-align: center;
    border-top: 1px solid #ebddd1;
    color: #776a64;
    background: #fffaf5;
    font-size: 13px;
}

.footer-bottom p + p {
    margin-top: 4px;
}

/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 980px) {
    .navbar {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .logo {
        max-width: none;
        flex: 1;
    }

    .nav-links {
        order: 3;
        flex-basis: 100%;
        flex-wrap: wrap;
        gap: 17px 24px;
        padding-top: 4px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .services-container,
    .gallery-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 650px) {
    .top-bar-content {
        flex-direction: column;
        justify-content: center;
        padding: 8px 0;
        gap: 5px;
    }

    .top-contact {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar {
        justify-content: center;
        text-align: center;
    }

    .logo {
        flex-basis: 100%;
        font-size: 19px;
    }

    .nav-book-btn {
        order: 2;
    }

    .nav-links {
        order: 3;
        gap: 12px 18px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero {
        min-height: 520px;
    }

    .hero-content {
        padding: 65px 4px 95px;
    }

    .hero-text {
        font-size: 15px;
    }

    .section {
        padding: 62px 17px;
    }

    .about-details,
    .services-container,
    .gallery-container,
    .form-row,
    .footer-container {
        grid-template-columns: 1fr;
    }

    #bookingForm {
        padding: 23px 16px;
    }

    .gallery-card {
        height: 245px;
    }

    .contact-call-btn,
    .contact-whatsapp-btn,
    .contact-location-btn {
        width: 100%;
        max-width: 360px;
    }

    .footer-container {
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }
}

        min-width: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;

        padding:
            45px 20px 35px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 5px;

        text-align: center;
    }

}

/* LOCATION BOX */

.location-box {
    background: #7b2cbf !important;
    color: white !important;
}

.location-box i,
.location-box small,
.location-box strong {
    color: white !important;
}

.location-box:hover {
    background: #6520a5 !important;
}

/* LOCATION BOX - PURPLE */

.contact-buttons .location-box {
    background: #7b2cbf !important;
    color: #ffffff !important;
}

.contact-buttons .location-box i,
.contact-buttons .location-box small,
.contact-buttons .location-box strong {
    color: #ffffff !important;
}

.contact-buttons .location-box:hover {
    background: #6520a5 !important;
}

/* CONTACT BOX FINAL COLORS */
