/*
Theme Name: AmayaStay
Theme URI: https://amayastay.in
Author: AmayaStay
Author URI: https://amayastay.in
Description: Custom lightweight WordPress theme for AmayaStay Homestay.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amayastay
*/

:root {
    --amaya-primary: #30483d;
    --amaya-secondary: #8b6f47;
    --amaya-dark: #1e2b25;
    --amaya-light: #f7f4ee;
    --amaya-white: #ffffff;
    --amaya-text: #333333;
    --amaya-muted: #777777;
    --amaya-border: #e5e1d8;
    --amaya-radius: 12px;
    --amaya-container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--amaya-text);
    background: var(--amaya-white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.amaya-container {
    width: min(92%, var(--amaya-container));
    margin-left: auto;
    margin-right: auto;
}

/* Header */

.amaya-header {
    position: relative;
    z-index: 1000;
    background: var(--amaya-white);
    border-bottom: 1px solid var(--amaya-border);
}

.amaya-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.amaya-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--amaya-primary);
}

.amaya-logo span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--amaya-secondary);
    margin-top: -4px;
}

.amaya-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.amaya-navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.amaya-navigation a {
    font-size: 14px;
    font-weight: 600;
    color: var(--amaya-dark);
    transition: 0.3s ease;
}

.amaya-navigation a:hover {
    color: var(--amaya-secondary);
}

.amaya-book-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 50px;
    background: var(--amaya-primary);
    color: var(--amaya-white) !important;
    transition: 0.3s ease;
}

.amaya-book-button:hover {
    background: var(--amaya-secondary);
}

/* Hero */

.amaya-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(20, 32, 27, 0.78),
            rgba(20, 32, 27, 0.35)
        ),
        url("../images/hero.jpg") center center / cover no-repeat;
}

.amaya-hero-content {
    max-width: 720px;
    color: var(--amaya-white);
}

.amaya-hero-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 15px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.amaya-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 700;
}

.amaya-hero p {
    max-width: 620px;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.amaya-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.amaya-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 50px;
    background: var(--amaya-primary);
    color: var(--amaya-white);
    font-weight: 600;
    transition: 0.3s ease;
}

.amaya-button:hover {
    background: var(--amaya-secondary);
    color: var(--amaya-white);
}

.amaya-button-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.8);
}

.amaya-button-outline:hover {
    background: var(--amaya-white);
    color: var(--amaya-dark);
}

/* Sections */

.amaya-section {
    padding: 100px 0;
}

.amaya-section-light {
    background: var(--amaya-light);
}

.amaya-section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.amaya-section-heading .eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--amaya-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.amaya-section-heading h2 {
    margin-bottom: 15px;
    color: var(--amaya-dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
}

.amaya-section-heading p {
    color: var(--amaya-muted);
}

/* Cards */

.amaya-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.amaya-card {
    overflow: hidden;
    background: var(--amaya-white);
    border: 1px solid var(--amaya-border);
    border-radius: var(--amaya-radius);
}

.amaya-card-image {
    min-height: 260px;
    background: #ddd;
}

.amaya-card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.amaya-card-content {
    padding: 25px;
}

.amaya-card-content h3 {
    margin-bottom: 10px;
    color: var(--amaya-dark);
    font-size: 23px;
}

.amaya-card-content p {
    color: var(--amaya-muted);
}

/* Intro */

.amaya-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.amaya-intro-image {
    min-height: 500px;
    border-radius: var(--amaya-radius);
    overflow: hidden;
    background: #ddd;
}

.amaya-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.amaya-intro-content .eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--amaya-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.amaya-intro-content h2 {
    margin-bottom: 20px;
    color: var(--amaya-dark);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
}

.amaya-intro-content p {
    margin-bottom: 18px;
    color: var(--amaya-muted);
}

/* CTA */

.amaya-cta {
    padding: 90px 0;
    background: var(--amaya-primary);
    color: var(--amaya-white);
    text-align: center;
}

.amaya-cta h2 {
    margin-bottom: 15px;
    font-size: clamp(32px, 4vw, 52px);
}

.amaya-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    opacity: 0.85;
}

/* Footer */

.amaya-footer {
    padding: 70px 0 25px;
    background: var(--amaya-dark);
    color: var(--amaya-white);
}

.amaya-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.amaya-footer h3 {
    margin-bottom: 18px;
    font-size: 20px;
}

.amaya-footer p,
.amaya-footer a {
    color: rgba(255,255,255,0.72);
}

.amaya-footer a:hover {
    color: var(--amaya-white);
}

.amaya-footer ul {
    list-style: none;
}

.amaya-footer li {
    margin-bottom: 8px;
}

.amaya-footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

/* Mobile Navigation */

.amaya-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 28px;
    color: var(--amaya-dark);
}

/* Responsive */

@media (max-width: 900px) {

    .amaya-menu-toggle {
        display: block;
    }

    .amaya-navigation {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        padding: 25px 4%;
        background: var(--amaya-white);
        border-bottom: 1px solid var(--amaya-border);
    }

    .amaya-navigation.is-open {
        display: block;
    }

    .amaya-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .amaya-book-button {
        margin-top: 5px;
    }

    .amaya-card-grid {
        grid-template-columns: 1fr;
    }

    .amaya-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .amaya-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .amaya-hero {
        min-height: 600px;
    }
}

@media (max-width: 600px) {

    .amaya-section {
        padding: 70px 0;
    }

    .amaya-header-inner {
        min-height: 72px;
    }

    .amaya-navigation {
        top: 72px;
    }

    .amaya-hero {
        min-height: 650px;
    }

    .amaya-hero p {
        font-size: 16px;
    }

    .amaya-intro-image,
    .amaya-intro-image img {
        min-height: 380px;
    }

    .amaya-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}



/* =========================================================
   AMAYASTAY PREMIUM CONTACT PAGE
========================================================= */

.amaya-contact-page {
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.amaya-contact-hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        url("../images/contact-hero.jpg")
        center center / cover no-repeat;
    color: #fff;
}

.amaya-contact-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18, 31, 25, 0.88) 0%,
            rgba(18, 31, 25, 0.62) 48%,
            rgba(18, 31, 25, 0.25) 100%
        );
}

.amaya-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 80px 0;
}

.amaya-contact-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 35px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.amaya-contact-breadcrumb a:hover {
    color: #fff;
}

.amaya-contact-eyebrow,
.amaya-small-eyebrow {
    display: block;
    color: #b99a68;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.amaya-contact-eyebrow {
    margin-bottom: 20px;
}

.amaya-contact-hero h1 {
    max-width: 800px;
    margin-bottom: 25px;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.amaya-contact-hero h1 span {
    display: block;
    color: #c7a875;
    font-style: italic;
    font-weight: 400;
}

.amaya-contact-hero p {
    max-width: 650px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.8;
}

.amaya-contact-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.amaya-premium-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid #30483d;
    border-radius: 3px;
    background: #30483d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: all .35s ease;
}

.amaya-premium-button:hover {
    background: #8b6f47;
    border-color: #8b6f47;
    color: #fff;
    transform: translateY(-2px);
}

.amaya-button-arrow {
    font-size: 20px;
}

.amaya-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.amaya-hero-whatsapp:hover {
    background: #fff;
    color: #30483d;
}

.amaya-whatsapp-icon {
    font-size: 15px;
}

.amaya-hero-scroll {
    position: absolute;
    z-index: 2;
    right: 5%;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.65);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.amaya-hero-scroll span {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,.5);
}


/* =========================================================
   QUICK CONTACT
========================================================= */

.amaya-contact-quick {
    position: relative;
    z-index: 5;
    margin-top: -55px;
}

.amaya-contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    box-shadow: 0 20px 60px rgba(30,43,37,.12);
}

.amaya-quick-card {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 145px;
    padding: 25px 30px;
    border-right: 1px solid #e5e1d8;
    transition: all .35s ease;
}

.amaya-quick-card:last-child {
    border-right: 0;
}

.amaya-quick-card:hover {
    background: #f7f4ee;
    transform: translateY(-4px);
}

.amaya-quick-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2eee5;
}

.amaya-quick-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #30483d;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.amaya-quick-label {
    display: block;
    margin-bottom: 5px;
    color: #8b6f47;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.amaya-quick-card h3 {
    margin-bottom: 3px;
    color: #1e2b25;
    font-size: 17px;
}

.amaya-quick-card p {
    margin: 0;
    color: #777;
    font-size: 12px;
}


/* =========================================================
   INTRO
========================================================= */

.amaya-contact-intro {
    padding-top: 130px;
}

.amaya-contact-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.amaya-contact-intro-image {
    position: relative;
}

.amaya-contact-intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.amaya-image-badge {
    position: absolute;
    right: -30px;
    bottom: 35px;
    padding: 22px 28px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.amaya-image-badge strong {
    display: block;
    color: #30483d;
    font-size: 18px;
}

.amaya-image-badge span {
    color: #888;
    font-size: 11px;
}

.amaya-contact-intro-content h2 {
    margin: 15px 0 22px;
    color: #1e2b25;
    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.1;
}

.amaya-contact-intro-content p {
    margin-bottom: 18px;
    color: #777;
    font-size: 16px;
}

.amaya-contact-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e1d8;
}

.amaya-contact-trust strong {
    display: block;
    margin-bottom: 6px;
    color: #8b6f47;
    font-size: 20px;
}

.amaya-contact-trust span {
    color: #555;
    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   ENQUIRY
========================================================= */

.amaya-enquiry-section {
    background: #f7f4ee;
}

.amaya-enquiry-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.amaya-enquiry-info {
    padding-top: 30px;
}

.amaya-enquiry-info h2 {
    max-width: 500px;
    margin: 15px 0 20px;
    color: #1e2b25;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;
}

.amaya-enquiry-info > p {
    max-width: 500px;
    color: #777;
    font-size: 16px;
}

.amaya-enquiry-points {
    margin-top: 45px;
}

.amaya-enquiry-point {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid #ddd8cc;
}

.amaya-point-number {
    color: #8b6f47;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.amaya-enquiry-point h3 {
    margin-bottom: 5px;
    color: #30483d;
    font-size: 17px;
}

.amaya-enquiry-point p {
    margin: 0;
    color: #888;
    font-size: 13px;
}


/* FORM */

.amaya-premium-form {
    padding: 45px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(30,43,37,.10);
}

.amaya-form-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e1d8;
}

.amaya-form-header > span {
    color: #8b6f47;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.amaya-form-header h3 {
    margin: 8px 0 5px;
    color: #1e2b25;
    font-size: 30px;
}

.amaya-form-header p {
    margin: 0;
    color: #999;
    font-size: 12px;
}

.amaya-form-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.amaya-form-field {
    margin-bottom: 20px;
}

.amaya-form-field label {
    display: block;
    margin-bottom: 8px;
    color: #30483d;
    font-size: 12px;
    font-weight: 700;
}

.amaya-input-wrap {
    position: relative;
}

.amaya-input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    pointer-events: none;
}

.amaya-input-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #8b6f47;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.amaya-input-wrap input,
.amaya-input-wrap select,
.amaya-form-field textarea {
    width: 100%;
    border: 1px solid #e2ded5;
    border-radius: 2px;
    background: #faf9f6;
    color: #333;
    outline: none;
    transition: all .25s ease;
}

.amaya-input-wrap input,
.amaya-input-wrap select {
    height: 52px;
    padding: 0 15px 0 48px;
}

.amaya-form-field textarea {
    min-height: 125px;
    padding: 15px;
    resize: vertical;
}

.amaya-input-wrap input:focus,
.amaya-input-wrap select:focus,
.amaya-form-field textarea:focus {
    border-color: #8b6f47;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139,111,71,.08);
}

.amaya-form-submit {
    width: 100%;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border: 0;
    border-radius: 2px;
    background: #30483d;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: all .3s ease;
}

.amaya-form-submit:hover {
    background: #8b6f47;
}

.amaya-submit-arrow {
    font-size: 22px;
}

.amaya-form-note {
    margin: 15px 0 0;
    color: #999;
    font-size: 11px;
    text-align: center;
}


/* =========================================================
   LOCATION
========================================================= */

.amaya-location-section {
    padding: 100px 0;
    background: #fff;
}

.amaya-location-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 480px;
    overflow: hidden;
    background: #30483d;
}

.amaya-location-content {
    padding: 60px;
    color: #fff;
}

.amaya-location-content h2 {
    margin: 15px 0 20px;
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
}

.amaya-location-content > p {
    margin-bottom: 30px;
    color: rgba(255,255,255,.7);
}

.amaya-address {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.amaya-address-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
}

.amaya-address-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #c7a875;
    stroke-width: 1.5;
}

.amaya-address strong,
.amaya-address span {
    display: block;
}

.amaya-address strong {
    margin-bottom: 4px;
}

.amaya-address span {
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.amaya-location-map {
    min-height: 480px;
}

.amaya-location-map iframe {
    display: block;
}


/* =========================================================
   FEATURES
========================================================= */

.amaya-why-section {
    background: #f7f4ee;
}

.amaya-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.amaya-feature-card {
    position: relative;
    padding: 40px 35px;
    background: #fff;
    border: 1px solid #e5e1d8;
    transition: all .35s ease;
}

.amaya-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30,43,37,.10);
}

.amaya-feature-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #ddd8cc;
    font-size: 12px;
    font-weight: 700;
}

.amaya-feature-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #f2eee5;
}

.amaya-feature-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #30483d;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.amaya-feature-card h3 {
    margin-bottom: 10px;
    color: #1e2b25;
    font-size: 21px;
}

.amaya-feature-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.amaya-final-contact-cta {
    padding: 120px 0;
    background:
        linear-gradient(
            rgba(24,39,32,.86),
            rgba(24,39,32,.86)
        ),
        url("../images/hero.jpg") center / cover;
    color: #fff;
    text-align: center;
}

.amaya-final-contact-cta > .amaya-container > span {
    color: #c7a875;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.amaya-final-contact-cta h2 {
    margin: 15px auto;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
}

.amaya-final-contact-cta p {
    margin-bottom: 30px;
    color: rgba(255,255,255,.7);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .amaya-contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .amaya-quick-card {
        border-right: 0;
        border-bottom: 1px solid #e5e1d8;
    }

    .amaya-quick-card:last-child {
        border-bottom: 0;
    }

    .amaya-contact-intro-grid,
    .amaya-enquiry-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .amaya-location-card {
        grid-template-columns: 1fr;
    }

    .amaya-location-map {
        min-height: 400px;
    }

    .amaya-feature-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {

    .amaya-contact-hero {
        min-height: 650px;
    }

    .amaya-contact-hero h1 {
        font-size: 50px;
    }

    .amaya-contact-hero p {
        font-size: 16px;
    }

    .amaya-hero-scroll {
        display: none;
    }

    .amaya-contact-quick {
        margin-top: -30px;
    }

    .amaya-contact-intro {
        padding-top: 80px;
    }

    .amaya-contact-intro-image img {
        height: 430px;
    }

    .amaya-image-badge {
        right: 15px;
        bottom: 15px;
    }

    .amaya-contact-trust {
        gap: 10px;
    }

    .amaya-premium-form {
        padding: 25px 20px;
    }

    .amaya-form-two-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .amaya-location-content {
        padding: 40px 25px;
    }

    .amaya-location-content h2 {
        font-size: 34px;
    }

    .amaya-final-contact-cta {
        padding: 80px 20px;
    }

    .amaya-contact-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .amaya-premium-button,
    .amaya-hero-whatsapp {
        justify-content: center;
    }

}







/* =========================================================
   AMAYASTAY PREMIUM EDITORIAL GALLERY
========================================================= */

.amaya-gallery-page {
    background: #f7f5f0;
}


/* =========================================================
   CINEMATIC HERO
========================================================= */

.amaya-gallery-cinematic-hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    color: #fff;
    background: #18221d;
}

.amaya-gallery-hero-image {
    position: absolute;
    inset: 0;
}

.amaya-gallery-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amaya-gallery-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(13,22,18,.82),
            rgba(13,22,18,.18)
        ),
        linear-gradient(
            0deg,
            rgba(13,22,18,.65),
            transparent 55%
        );
}

.amaya-gallery-cinematic-hero .amaya-container {
    position: relative;
    z-index: 2;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.amaya-gallery-hero-content {
    max-width: 760px;
}

.amaya-gallery-small-label {
    display: block;
    margin-bottom: 25px;
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 600;
    opacity: .8;
}

.amaya-gallery-hero-content h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(60px, 9vw, 125px);
    font-weight: 400;
    line-height: .91;
    letter-spacing: -5px;
}

.amaya-gallery-hero-content p {
    max-width: 480px;
    margin-top: 35px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.82);
}

.amaya-gallery-scroll {
    position: absolute;
    bottom: 45px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 9px;
    letter-spacing: 3px;
}

.amaya-scroll-line {
    width: 70px;
    height: 1px;
    background: rgba(255,255,255,.6);
}



