/* =====================================================
   PREMIUM HAIR SALOON
   MAIN STYLESHEET
===================================================== */


/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #e8e6e1;
    background: #0e0e10;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
}

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

ul {
    list-style: none;
}


/* =========================
   VARIABLES
========================= */

:root {

    --gold: #cba135;
    --gold-light: #e8c766;
    --gold-dark: #9c7a22;

    --dark: #0e0e10;
    --dark-2: #17171a;
    --dark-3: #1f1f23;

    --cream: #f5f0e6;
    --gray: #a5a29c;
    --white: #ffffff;

    --border: rgba(203, 161, 53, 0.18);

    --whatsapp: #25d366;
    --whatsapp-dark: #1ebe57;

    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);

    --transition: all 0.35s ease;

    --display: "Bebas Neue", "Poppins", sans-serif;
    --serif: "Cormorant Garamond", serif;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================
   TOP BAR
========================= */

.top-bar {
    background: #000000;
    color: var(--gray);
    font-size: 12px;
    border-bottom: 1px solid var(--border);
}

.top-container {
    width: min(1200px, 92%);
    margin: auto;

    min-height: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;
    gap: 8px;
}

.top-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-left span,
.top-left a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--gray);
}

.top-left a:hover {
    color: var(--gold);
}

.top-left i {
    color: var(--gold);
}

.top-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-right a {
    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--gray);

    transition: var(--transition);
}

.top-right a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.top-right .whatsapp-mini {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: white;
}

.top-right .whatsapp-mini:hover {
    background: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    color: white;
}


/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(14, 14, 16, 0.92);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.header-container {
    height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--dark);

    font-size: 19px;

    box-shadow: 0 8px 20px rgba(203, 161, 53, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    color: var(--gold);
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: 2px;
}

.logo-text strong {
    color: var(--white);
    font-family: var(--display);
    font-size: 15px;
    letter-spacing: 4px;
    font-weight: 400;
}


/* NAV */

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

.nav-link {
    position: relative;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;

    color: #cfcdc8;

    padding: 30px 0;

    transition: var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 22px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-icon {
    width: 40px;
    height: 40px;

    border: 1px solid var(--border);
    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--cream);

    background: transparent;

    transition: var(--transition);
}

.header-icon:hover {
    color: var(--dark);
    background: var(--gold);
    border-color: var(--gold);
}

.header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 20px;

    background: var(--whatsapp);
    color: white;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.header-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}


/* MOBILE MENU */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    background: transparent;
    border-radius: 50%;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--gold);

    transition: var(--transition);
}


/* SEARCH BOX (kept for structural parity, unused on salon site) */

.search-box {
    display: none;
}


/* =========================
   HERO (HOME)
========================= */

.hero {
    position: relative;

    min-height: 92vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(90deg, rgba(10, 10, 11, .92) 10%, rgba(10, 10, 11, .55) 55%, rgba(10, 10, 11, .25) 100%),
        url("../images/salon/hero.jpg") center 30% / cover no-repeat;
}

.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.hero-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: var(--white);

    margin-bottom: 22px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    color: #d6d3cc;
    font-size: 16px;
    max-width: 480px;
    margin-bottom: 34px;
}

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


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 32px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    border-radius: 3px;

    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(203, 161, 53, 0.3);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark);
}

.section-alt {
    background: var(--dark-2);
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(34px, 4.5vw, 54px);
    letter-spacing: 1px;
    color: var(--white);

    margin-bottom: 14px;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   AMENITIES / FEATURES STRIP
========================= */

.amenities-strip {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.amenities-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 30px 25px;

    border-right: 1px solid var(--border);
}

.amenity-item:last-child {
    border-right: none;
}

.amenity-item i {
    font-size: 26px;
    color: var(--gold);
}

.amenity-item h4 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 3px;
}

.amenity-item p {
    color: var(--gray);
    font-size: 12px;
}


/* =========================
   AMENITIES GRID (about page)
========================= */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.amenity-card {
    padding: 40px 30px;

    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 6px;

    text-align: center;

    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.amenity-card .amenity-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(203, 161, 53, 0.1);
    color: var(--gold);

    font-size: 26px;
}

.amenity-card h3 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
}

.amenity-card p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   SERVICES
========================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.service-image {
    height: 210px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-body {
    padding: 28px 26px;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 10px;
}

.service-body h3 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 24px;
    color: var(--white);
}

.service-price {
    white-space: nowrap;
    color: var(--gold);
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: 0.5px;
}

.service-body p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.7;
}

.service-icon-only {
    padding: 34px 26px;
    text-align: center;
}

.service-icon-only .service-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(203, 161, 53, 0.1);
    color: var(--gold);

    font-size: 22px;
}


/* =========================
   GALLERY
========================= */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 50px;
}

.gallery-filter-btn {
    padding: 11px 26px;

    border: 1px solid var(--border);
    border-radius: 30px;

    background: transparent;
    color: var(--gray);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    position: relative;

    border-radius: 6px;
    overflow: hidden;

    aspect-ratio: 3 / 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.hide {
    display: none;
}

.gallery-caption {
    position: absolute;
    inset: auto 0 0 0;

    padding: 26px 20px 18px;

    background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);

    color: white;
}

.gallery-caption span {
    display: block;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.gallery-caption h4 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 19px;
}


/* =========================
   ABOUT
========================= */

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

.about-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 18px;
    max-width: 540px;
}

.about-list {
    margin: 25px 0 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--cream);
    font-size: 14px;

    margin-bottom: 12px;
}

.about-list i {
    color: var(--gold);
}

.about-visual {
    position: relative;

    min-height: 480px;
    border-radius: 6px;
    overflow: hidden;

    background-size: cover;
    background-position: center;
}

.about-visual-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    background: var(--dark);
    border: 1px solid var(--gold);
    padding: 18px 24px;

    border-radius: 6px;
}

.about-visual-badge strong {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 22px;
    color: var(--gold);
    display: block;
}

.about-visual-badge span {
    color: var(--gray);
    font-size: 12px;
}


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

.cta-section {
    position: relative;

    padding: 90px 0;

    text-align: center;

    background:
        linear-gradient(rgba(10,10,11,.88), rgba(10,10,11,.88)),
        url("../images/salon/waiting-area.jpg") center / cover no-repeat;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cta-content h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    margin: 14px 0 26px;
}

.cta-content em {
    color: var(--gold);
    font-style: normal;
}

.cta-content p {
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* =========================
   INNER PAGE HERO
========================= */

.page-hero {
    min-height: 340px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: white;

    background:
        linear-gradient(rgba(10,10,11,.82), rgba(10,10,11,.82)),
        var(--hero-img, url("../images/salon/hero.jpg")) center 30% / cover no-repeat;
}

.page-title {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 12px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--gold);
}


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

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 26px;

    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 6px;

    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
}

.contact-card .contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(203, 161, 53, 0.1);
    color: var(--gold);

    font-size: 18px;
}

.contact-card h4 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    color: var(--gray);
    font-size: 13px;
}

.contact-card a:hover {
    color: var(--gold);
}

.map-frame {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 260px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) invert(0.92) contrast(0.9);
}

.contact-form-box {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 40px;
}

.contact-form-box h3 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-box > p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--cream);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 16px;

    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 4px;

    color: var(--white);
    font-size: 13px;

    outline: none;

    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.contact-submit {
    width: 100%;
    justify-content: center;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #060607;
    color: var(--gray);
    padding-top: 80px;

    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 40px;

    padding-bottom: 55px;
}

.footer-brand > p {
    font-size: 13px;
    margin: 18px 0 22px;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    border: 1px solid var(--border);

    color: var(--gray);

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.footer-column h3 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 22px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 13px;
    color: var(--gray);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    font-size: 13px;
    margin-bottom: 14px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 12px;
    color: var(--gray);
}

.footer-bottom-content div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--gold);
}


/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-float {
    position: fixed;

    right: 26px;
    bottom: 26px;

    z-index: 999;

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    background: var(--whatsapp);
    color: white;

    border-radius: 50%;

    font-size: 28px;

    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);

    animation: whatsappPulse 2.4s infinite;

    transition: var(--transition);
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.08);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;

    left: 26px;
    bottom: 26px;

    z-index: 999;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    background: var(--dark-2);
    border: 1px solid var(--border);
    color: var(--gold);

    border-radius: 50%;

    font-size: 16px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark);
}


/* =========================
   TOAST
========================= */

.toast {
    position: fixed;

    bottom: 100px;
    right: 26px;

    z-index: 1100;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 22px;

    background: var(--dark-2);
    border: 1px solid var(--gold);
    border-radius: 6px;

    color: var(--white);
    font-size: 13px;

    box-shadow: var(--shadow);

    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast i {
    color: var(--gold);
}

.toast.error {
    border-color: #e05252;
}

.toast.error i {
    color: #e05252;
}


/* =========================
   SCROLL REVEAL
========================= */

.service-card,
.amenity-card,
.gallery-item,
.contact-card,
.price-row {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible,
.amenity-card.visible,
.gallery-item.visible,
.contact-card.visible,
.price-row.visible {
    opacity: 1;
    transform: translateY(0);
}
