:root {
    --gold: #dfa610;
    --gold-dark: #dfa610;
    --gold-light: #dfa610;
    --gold-glow: rgba(201, 138, 27, 0.25);
    --dark: #0d0d0d;
    --cream: #F8F5ED;
    --cream-dark: #EDE4D4;
    --cream-card: #FFFCF7;
    --text: #1a1a1a;
    --text-muted: #5c5c5c;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-h: 42px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

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



/* ─── HERO ─── */
.hero-section {
    position: relative;
    min-height: 110vh;
    min-height: 110dvh;
    display: flex;
    align-items: center;
    background: url('../image/bg.png') center/cover no-repeat;
    padding: calc(var(--nav-h) + 0px) 0 120px;
}



.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    bottom: 44px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(201,138,27,0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.logo { text-align: center; margin-bottom: 70px; }
.logo-img { max-width: 360px; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.08)); }

.main-title h1, .main-title h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.main-title .gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    max-width: 460px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-top: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

/* ─── BUTTONS ─── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    font-family: inherit;
    box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(201,138,27,0.4);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.9);
    color: var(--dark);
    border: 2px solid rgba(0,0,0,0.1);
    padding: 14px 30px;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    font-family: inherit;
    backdrop-filter: blur(8px);
}

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

.btn-gold-lg { width: 100%; max-width: 480px; padding: 18px 36px; }
.btn-submit { width: 100%; margin-top: 24px; padding: 18px; font-size: 15px; }

/* ─── PREMIUM ICONS ─── */
.icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(145deg, #fff 0%, var(--cream-dark) 100%);
    box-shadow: 0 8px 24px rgba(201,138,27,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 2px solid rgba(201,138,27,0.2);
    transition: all var(--transition);
    position: relative;
}

.icon-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(201,138,27,0.1);
    transition: all var(--transition);
}

.icon-ring i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-ring-sm {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.icon-ring-sm i { font-size: 26px; }

.icon-ring-lg {
    width: 88px;
    height: 88px;
}

/* ─── SECTIONS ─── */
.section-wrap { padding: 100px 0; }

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

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

.main-content {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding-bottom: 20px;
}

.heading, .heading1, .heading3 {
    display: inline-block;
    position: relative;
}

.heading::before, .heading::after,
.heading1::before, .heading1::after,
.heading3::before, .heading3::after {
    content: '';
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #dfa610, #dfa610, #ff9b00);
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.heading::before, .heading3::before { width: 80px; left: -100px; }
.heading::after, .heading3::after { width: 80px; right: -100px; }
.heading1::before { width: 120px; left: -140px; }
.heading1::after { width: 120px; right: -140px; }

/* ─── CARDS ─── */
.property-card {
    background: var(--cream-card);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all var(--transition);
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.property-card:hover::before { transform: scaleX(1); }
.property-card:hover .icon-ring {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(201,138,27,0.25);
}

.property-card h4 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.property-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ─── SERVICES ─── */
.services {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
}

.service-box {
    text-align: center;
    padding: 28px 16px;
    height: 100%;
    transition: transform var(--transition);
}

.service-box:hover { transform: translateY(-4px); }

.service-divider {
    border-right: 1px solid rgba(201,138,27,0.2);
}

.service-box h6 {
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.service-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ─── COMING SOON ─── */
.coming-section {
    text-align: center;
    padding: 50px 0;
}

.coming-section h3 {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 5px;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.coming-section > .container > p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 0;
}

.newsletter {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 36px;
    max-width: 920px;
    margin: 40px auto 0;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201,138,27,0.1);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.newsletter-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.newsletter-text h6 {
    font-weight: 800;
    margin-bottom: 4px;
    text-align: left;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.newsletter-text p {
    font-size: 13px;
    margin: 0;
    text-align: left;
    color: var(--text-muted);
}

.newsletter-form {
    display: flex;
    flex: 1;
    min-width: 260px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid #eee;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 22px;
    border: none;
    font-size: 15px;
    font-family: inherit;
    background: var(--cream);
}

.newsletter-form input:focus { outline: none; background: #fff; }

.newsletter-form button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    padding: 15px 28px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: inherit;
    transition: opacity var(--transition);
}

.newsletter-form button:hover { opacity: 0.9; }

/* ─── PARTNER TEASER ─── */
.partner-teaser {
    padding: 40px 0;
    background: var(--cream);
}

.partner-teaser h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
}

.partner-teaser .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 48px;
}

.pro-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 16px;
    margin-bottom: 48px;
}

.pro-type { text-align: center; }

.pro-type-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(201,138,27,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
    color: var(--gold);
    background: linear-gradient(145deg, #fff, var(--cream-dark));
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.pro-type:hover .pro-type-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px var(--gold-glow);
}

.pro-type span {
    font-size: 14px;
    font-weight: 600;
    display: block;
    color: var(--text);
    line-height: 1.3;
}

.partner-desc {
    max-width: 720px;
    margin: 0 auto 36px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 48px;
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 0.95rem;
}

.benefit-item i {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ─── CTA BANNER ─── */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1510 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,138,27,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
}

.cta-banner .btn-gold { font-size: 15px; padding: 18px 40px; }

/* ─── LIVE COUNTER ─── */
.movement-section {
    background: var(--cream-dark);
    padding: 90px 0;
    text-align: center;
}

.movement-section h3 {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 10px;
}

.movement-section .subtitle {
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 1.05rem;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}

.counter-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.9);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.counter-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.counter-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.counter-card:hover::after { transform: scaleX(1); }

.counter-card .icon-ring-sm { margin-bottom: 16px; }

.counter-number {
    font-size: clamp(2.2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.counter-label {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    color: var(--dark);
}

.counter-footer {
    font-size: 14px;
    color: var(--text-muted);
}

.counter-card.pulse .counter-number {
    animation: counterPulse 0.6s ease;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); color: var(--gold); }
}

/* ─── MODAL ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(13, 13, 13, 0.65);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-panel {
    background: #fff;
    border-radius: var(--radius);
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.modal-overlay.active .modal-panel {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 32px 20px;
    border-bottom: 1px solid #f0ebe3;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.modal-header-text h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--dark);
    letter-spacing: -0.2px;
}

.modal-header-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.modal-close {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--cream-dark);
    color: var(--dark);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--gold);
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px 32px 32px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb { background: var(--cream-dark); border-radius: 3px; }

/* ─── FORMS ─── */
.form-group-title {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 28px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cream-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-title:first-child { margin-top: 0; }

.form-group-title i { font-size: 14px; }

.form-label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
    color: var(--text);
}

.form-label .required { color: #c0392b; }

.form-control-custom {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e8e4dc;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--cream);
    color: var(--text);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px var(--gold-glow);
}

.form-control-custom.is-invalid { border-color: #c0392b; background: #fff8f8; }

.invalid-feedback {
    color: #c0392b;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

.form-control-custom.is-invalid + .invalid-feedback { display: block; }

.checkbox-grid, .radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.checkbox-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.custom-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1.5px solid #ece8e0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 13px;
    user-select: none;
    background: var(--cream);
}

.custom-check:hover {
    border-color: rgba(201,138,27,0.4);
    background: #fff;
}

.custom-check input {
    accent-color: var(--gold);
    width: 17px; height: 17px;
    flex-shrink: 0;
}

.custom-check.checked {
    border-color: var(--gold);
    background: rgba(201,138,27,0.06);
    box-shadow: 0 0 0 1px rgba(201,138,27,0.1);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 90px;
}

.registration-form.hidden { display: none; }

/* ─── MODAL SUCCESS ─── */
.modal-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.modal-success.show { display: block; }

.modal-success .success-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px var(--gold-glow);
}

.modal-success h3 {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.modal-success p {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* ─── PARTNER PAGE ─── */
.partner-hero {
    padding: calc(var(--nav-h) + 0px) 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    position: relative;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(201,138,27,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.partner-hero .container { position: relative; z-index: 1; }

.partner-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.partner-hero .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
    padding: 14px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: var(--cream);
}

footer .social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: var(--text);
    margin-right: 10px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

footer .social a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.footer-contact {
    margin-top: 14px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-contact a {
    color: var(--gold-dark);
    font-weight: 600;
}

.shift-text {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.shift-text span { color: var(--gold); }

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── TOAST ─── */
.toast-notification {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--dark);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 360px;
    font-size: 14px;
    font-weight: 500;
    border-left: 4px solid var(--gold);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

body.modal-open { overflow: hidden; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .pro-types-grid { grid-template-columns: repeat(3, 1fr); }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .service-divider { border-right: none; }
    .heading::before, .heading::after,
    .heading1::before, .heading1::after,
    .heading3::before, .heading3::after { display: none; }
}

@media (max-width: 767px) {
    :root { --nav-h: 64px; }

    .nav-toggle { display: block; }

    .nav-right {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(248,245,237,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 20px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        display: none;
        box-shadow: var(--shadow-sm);
    }

    .nav-right.open { display: flex; }

    .nav-tabs { flex-direction: column; width: 100%; }
    .nav-tabs a { text-align: center; }
    .nav-cta { width: 100%; text-align: center; }

    .hero-section { padding-bottom: 80px; }
    .main-content { margin-top: -60px; }
    .logo-img { max-width: 260px; }

    .hero-actions { justify-content: center; }
    .main-title, .hero-desc { text-align: center; margin-left: auto; margin-right: auto; }

    .section-wrap, .services, .partner-teaser, .movement-section, .cta-banner { padding: 30px 0; }

    .pro-types-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
    .checkbox-grid, .checkbox-grid.cols-3, .radio-grid { grid-template-columns: 1fr; }

    .newsletter { padding: 24px; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-text h6, .newsletter-text p { text-align: center; }
    .newsletter-form { width: 100%; flex-direction: column; border-radius: var(--radius-sm); }
    .newsletter-form input { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
    .newsletter-form button { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }

    .modal-panel { max-height: 95vh; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
    .modal-overlay { align-items: flex-end; padding: 0; }
    .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }

    .counter-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    
}

@media (max-width: 480px) {
    .counter-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn-gold, .hero-actions .btn-outline { width: 100%; justify-content: center; }
    .hero-desc {
    color: #fff;
    background: #111a;
    padding: 10px;
    border-radius: 10px;
}
}

.movement-section{
    display: none;
}

