*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --black: #080a0c;
    --surface: #0f1215;
    --card: #161b20;
    --border: #ffffff12;
    --border-hover: #ffffff28;
    --gold: #c8a96e;
    --gold-light: #e8c98a;
    --gold-dim: #c8a96e44;
    --white: #fff;
    --muted: #fff;
    /* --muted: #8a8f96; */
    --accent: #1e6bc5;
    --success: #1a9e6a;
    --danger: #d94f4f;
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    backdrop-filter: blur(20px);
    background: rgba(8, 10, 12, 0.85);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px
}

.logo img {
    max-width: 141px !important;
    margin: 13px 0 0 0px;
}

.logo {

    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--gold);
    text-decoration: none;
}

.logo span {
    color: var(--white)
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s
}

.nav-links a:hover {
    color: var(--gold)
}

.nav-cta {
    background: var(--gold);
    color: #000;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s
}

.nav-cta:hover {
    background: var(--gold-light)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 5%;
    z-index: 999
}

.mobile-menu.open {
    display: block
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border)
}

.mobile-menu a:last-child {
    border: none;
    color: var(--gold);
    margin-top: 10px;
    font-weight: 600
}

.img-fluid {
    width: 100%;
    height: auto;
}

/* HERO */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 5% 80px
}

.hero-bg {
    position: absolute;
    inset: 0;

    background: radial-gradient(ellipse 80% 60% at 70% 50%, #1a2a3a 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 20% 80%, #0d1a10 0%, transparent 60%);
    z-index: 0
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    z-index: 0;
    opacity: 0.5
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-dim);
    border: 1px solid var(--gold);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 600
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: block;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8)
    }
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 10vw, 65px);
    line-height: 1;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px
}

h1 em {
    color: var(--gold);
    font-style: normal
}

.hero-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--white);
    max-width: 520px;
    margin: 24px 0 44px;
    font-weight: 300;
    line-height: 1.7
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--gold);
    color: #000;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s;
    border: 2px solid var(--gold)
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px)
}

.btn-ghost {
    border: 2px solid var(--border-hover);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border)
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--gold);
    line-height: 1
}

.stat-label {
    font-size: 12px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px
}

.hero-img {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 800px;
    opacity: 0.08;
    z-index: 0;
    filter: blur(0px);
    pointer-events: none
}

.window-art {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    opacity: 0.35;
    width: 340px
}

.win-pane {
    border: 1px solid var(--gold);
    border-radius: 4px;
    aspect-ratio: 0.7;
    background: linear-gradient(135deg, #c8a96e08, #c8a96e22)
}

.win-pane:nth-child(2) {
    margin-top: 20px
}

.win-pane:nth-child(3) {
    margin-top: 10px
}

/* SECTIONS */
section {
    padding: 100px 5%
}

.section-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 65px);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 20px
}

.section-desc {
    font-size: 16px;
    color: var(--white);
    max-width: 560px;
    line-height: 1.75
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 24px 0
}

/* SERVICES */
#services {
    background: var(--surface)
}

.services-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: var(--border)
}

.service-card {
    background: var(--card);
    padding: 44px 36px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s
}

.service-card:hover::after {
    width: 100%
}

.service-card:hover {
    background: #1c2228;
    transform: translateY(-4px)
}

/* .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gold-dim);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px
} */
.service-icon {
    width: auto;
    height: auto;
    border-radius: 12px;
    background: var(--surface);
    /* border: 1px solid var(--gold); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px
}

.service-icon img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--white)
}

.service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-hover);
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase
}

/* PRICING */
#pricing {}

.pricing-intro {
    text-align: center;
    margin-bottom: 60px
}

.pricing-intro .section-desc {
    margin: 0 auto
}

.pricing-intro .divider {
    margin: 24px auto
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto
}

.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px)
}

.price-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #1a1f24, #161b20)
}

.price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 39px;
    right: -38px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 40px;
    transform: rotate(45deg)
}

.price-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: 'DM Mono', monospace
}

.price-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 4px
}

.price-range {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin: 16px 0 4px
}

.price-range span {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted)
}

.price-note {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px
}

.price-features {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 20px
}

.price-features li {
    font-size: 14px;
    color: var(--muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px
}

.price-features li::before {
    content: '→';
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0
}

.price-cta {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    border: 2px solid var(--border-hover);
    color: var(--white)
}

.price-cta:hover,
.price-card.featured .price-cta {
    background: var(--gold);
    border-color: var(--gold);
    color: #000
}

.price-note-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: var(--muted)
}

/* GALLERY */
#gallery {
    background: var(--surface)
}

.gallery-intro {
    margin-bottom: 48px
}

.gallery-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.filter-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 600
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    min-height: 500px
}

.g-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--card);
    cursor: pointer;
    transition: all 0.3s
}

.g-item:hover {
    transform: scale(1.02)
}

.g-item:hover .g-overlay {
    opacity: 1
}

.g-item:nth-child(1) {
    grid-column: span 3;
    /* grid-row: span 2 */
}

.g-item:nth-child(2) {
    grid-column: span 3
}

.g-item:nth-child(3) {
    grid-column: span 3
}

.g-item:nth-child(4) {
    grid-column: span 3
}

.g-item:nth-child(5) {
    grid-column: span 3
}

.g-item:nth-child(6) {
    grid-column: span 3;
    /* grid-row: span 2 */
}

.g-item:nth-child(7) {
    grid-column: span 3
}

.g-item:nth-child(8) {
    grid-column: span 3
}

.g-canvas {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px
}

.g-canvas img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px
}

.g-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: none;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px
}

/* Simulated gallery images using CSS art */
.g-auto {
    background: linear-gradient(135deg, #0d1a2a, #1a2d3a);
    position: relative;
    overflow: hidden
}

/* .g-auto::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 120px;
    background: linear-gradient(to right, #1a1a1a, #2a2a2a, #1a1a1a);
    border-radius: 50%
} */

.g-resi {
    background: linear-gradient(160deg, #0a1520, #1c3040)
}

.g-comm {
    background: linear-gradient(135deg, #0f1a0f, #1a2d1a)
}

.g-wrap {
    background: linear-gradient(135deg, #1a0a0a, #2d1a0a)
}

.g-ppf {
    background: linear-gradient(160deg, #0f0f1f, #1a1a2d)
}

.g-priv {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a)
}

/* ABOUT */
#about {
    display: flex;
    /* grid-template-columns: 1fr 1fr;
    gap: 80px; */
    align-items: center;
    background: #000;
    gap: 50px;
    justify-content: center;
}

.about-visual {
    position: relative;
    max-width: 550px;
}

.about-frame {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #0f1820, #1a2535);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.about-frame-inner {
    text-align: center
}

.about-frame-inner img {
    width: 100%;
    height: auto;
}

.big-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 16px;
    opacity: 0.6
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(8, 10, 12, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    backdrop-filter: blur(10px)
}

.about-badge-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 1px
}

.about-badge-sub {
    font-size: 12px;
    color: var(--muted)
}

.cert-row {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap
}

.cert {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 20px;
    text-align: center
}

.cert-name {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px
}

.cert-sub {
    font-size: 11px;
    color: var(--muted)
}

.about-content .section-desc {
    margin-bottom: 32px
}

.about-list {
    list-style: none;
    margin-bottom: 36px
}

.about-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px
}

.about-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 8px;
    flex-shrink: 0
}

/* BOOKING */
#book-now {
    background: var(--surface)
}

.booking-inner {
    max-width: 900px;
    margin: 0 auto
}

.booking-header {
    text-align: center;
    margin-bottom: 56px
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px
}

.form-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px
}

.form-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--gold)
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 500
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #0c1015;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold)
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.field-error {
    color: var(--danger);
    font-size: 12px;
    margin-top: 6px;
    min-height: 18px;
}

.form-status {
    display: none;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    border: 1px solid transparent;
}

.form-status-error {
    display: block;
    color: #ffd9d9;
    background: #3a1111;
    border-color: #7d2222;
}

.form-status-success {
    display: block;
    color: #d7ffe9;
    background: #0f2a18;
    border-color: #1a9e6a;
}

.deposit-box {
    background: linear-gradient(135deg, #1a1500, #1f1a00);
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px
}

.deposit-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px
}

.deposit-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--white)
}

.deposit-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px
}

.deposit-terms {
    font-size: 12px;
    color: var(--muted);
    background: var(--surface);
    border-radius: 8px;
    padding: 14px;
    margin-top: 16px;
    border: 1px solid var(--border)
}

.deposit-terms strong {
    color: var(--white)
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px
}

.slot {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    color: var(--muted)
}

.slot:hover,
.slot.selected {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold)
}

.slot.taken {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: line-through
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px
}

.cal-day-head {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    padding: 4px;
    text-transform: uppercase
}

.cal-day {
    text-align: center;
    padding: 8px 4px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    color: var(--muted);
    transition: all 0.2s;
    border: 1px solid transparent
}

.cal-day:hover {
    border-color: var(--border-hover);
    color: var(--white)
}

.cal-day.selected {
    background: var(--gold);
    color: #000;
    font-weight: 700
}

.cal-day.today {
    border-color: var(--gold-dim);
    color: var(--gold)
}

.cal-day.past {
    opacity: 0.25;
    cursor: not-allowed
}

.cal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.cal-nav button {
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px
}

.cal-nav button:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.cal-month {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px
}

.pay-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px
}

.pay-icon {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--muted);
    font-family: 'DM Mono', monospace
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px
}

.submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px)
}

.success-msg {
    display: none;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #0a1f10, #0f2a18);
    border: 1px solid var(--success);
    border-radius: var(--radius-lg)
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block
}

.success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--success);
    margin-bottom: 8px
}

/* FAQ */
#faq {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.faqimage {
    max-width: 550px;
}

.borderRadius {
    border-radius: var(--radius-lg);
}

.faqs {
    max-width: 550px;
}

.faq-header {
    /* text-align: center; */
    margin-bottom: 56px
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    gap: 16px;
    transition: color 0.2s
}

.faq-q:hover {
    color: var(--gold)
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 18px;
    transition: all 0.3s;
    line-height: 1
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--gold)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s
}

.faq-a-inner {
    padding-bottom: 24px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8
}

/* FOOTER */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 60px 5% 32px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-brand .logo {
    font-size: 24px;
    display: block;
    margin-bottom: 16px
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 240px
}

.footer-col h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px
}

.footer-bottom p {
    font-size: 12px;
    color: var(--muted)
}

.social-row {
    display: flex;
    gap: 12px
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    transition: all 0.2s
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--success);
    color: #fff;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s
}

.toast.show {
    transform: translateY(0);
    opacity: 1
}

/* RESPONSIVE */
@media(max-width:900px) {
    #about {
        grid-template-columns: 1fr
    }

    /* .about-visual {
        display: none
    } */

    .booking-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap
    }

    .window-art {
        display: none
    }

    .g-item:nth-child(n) {
        grid-column: span 12;
        grid-row: span 1
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    #about, #faq {
        flex-direction: column;
    }

    .btn-primary {
        padding: 10px 10px;
    }

    .btn-ghost {
        padding: 10px 10px;
    }

    .hero-ctas {
        display: flex;
        gap: 13px;
        flex-wrap: nowrap;
        flex-direction: row;
    }
}
.whatsapp-chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.whatsapp-chat-icon img {
    width: 40px;
    height: 40px;
}