@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&family=Epilogue:wght@300;400;500;600;700&display=swap');

:root {
    color-scheme: light;
    --bg: #fbfaf8;
    --surface: #ffffff;
    --text: #111111;
    --muted: #646464;
    --brand: #c78a0a;
    --brand-dark: #8d6a0f;
    --shadow: 0 24px 70px rgba(15, 21, 35, 0.12);
        /* Gradients */
    --gradient-gold: linear-gradient(135deg, hsl(38 70% 42%), hsl(43 85% 55%));
    --gradient-gold-soft: linear-gradient(135deg, hsl(38 70% 42% / 0.12), hsl(43 85% 55% / 0.04));
    --gradient-dark: linear-gradient(180deg, hsl(40 30% 98%), hsl(40 25% 95%));
    --gradient-radial-gold: radial-gradient(circle at top right, hsl(38 70% 42% / 0.14), transparent 60%);
    --gradient-hero-overlay: linear-gradient(180deg, hsl(40 30% 98% / 0.55) 0%, hsl(40 30% 98% / 0.85) 70%, hsl(40 30% 98%) 100%);

        /* Shadows */
    --shadow-gold: 0 20px 60px -15px hsl(38 70% 42% / 0.35);
    --shadow-gold-sm: 0 8px 24px -8px hsl(38 70% 42% / 0.28);
    --shadow-elevated: 0 30px 80px -20px hsl(0 0% 0% / 0.18);
    --shadow-card: 0 1px 0 0 hsl(0 0% 100% / 0.6) inset, 0 12px 28px -16px hsl(0 0% 0% / 0.12);

}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Urbanist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

img {
    display: block;
    max-width: 100%;
}

button{
    cursor: pointer;
}

button,
input {
    font: inherit;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px clamp(18px, 4vw, 48px);
    /* max-width: 1280px; */
    margin: 0 auto;
}

.logo {
    height: 46px;
}

nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: #2b2b2b;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--gradient-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.hero {
    padding: 0 18px 46px;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 8px;
}

.hero-copy {
    display: grid;
    gap: 14px;
    text-align: center;
    padding-top: 6px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    /* background: #fbf5dc; */
    color: #2d2d2d;
    font-size: 0.9rem;
    /* box-shadow: 0 18px 35px rgba(15, 21, 35, 0.08); */
    justify-self: center;
    border: 1px solid rgba(15, 21, 35, 0.08);
}

.hero-badge span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #38a855;
    display: inline-grid;
}

.hero-copy h1 {
    margin: 0 auto;
    font-size: clamp(3rem, 6vw, 7rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 900;
    /* max-width: 620px; */
    width: 80%;
}

.hero-copy .highlight {
    color: var(--brand);
}

.hero-copy p {
    margin: 0 auto;
    max-width: 620px;
    color: #575757;
    font-size: 1rem;
    line-height: 1.8;
}

.hero-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 22px;
    margin: auto;
    margin-top: 34px;
    align-items: start;
    width: min(100%, 1080px);
}

.hero-card,
.map-card {
    background: var(--surface);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 21, 35, 0.06);
    position: relative;
}

.hero-card {
    padding: 24px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f9f2d7;
    color: white;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    position: absolute;
    top: -3%;
    background: var(--gradient-gold);

}
.hero-label img {
    width: 10px;
    height: 10px;
    color: #fff;
    filter: invert();
}

.hero-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 22px;
    background: #f5f3ef;
    border-radius: 999px;
    padding: 5px;
}

.hero-tab {
    border: none;
    background: transparent;
    color: #5f5f5f;
    padding: 12px 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
}

.hero-tab.active {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: 0 18px 30px rgba(199, 138, 10, 0.16);
}

.field {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #F7F6F2;
    border: 1px solid rgba(15, 21, 35, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
    margin: 10px 0;
}

.field input {
    flex: 1;
    border: none;
    outline: none;
    background: #F7F6F2;
    font-size: 0.96rem;
    color: #222;
}

.field .icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #f2e5c2;
    display: grid;
    place-items: center;
    font-size: 1rem;
    color: #8f6e14;
}
.field .icon img {
    width: 14px;
    height: 14px;
}

.inline-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 22px;
    background: #fafafa;
    border: 1px solid rgba(15, 21, 35, 0.08);
}

.counter span {
    color: #5f5f5f;
    font-size: 0.92rem;
    font-weight: 600;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-controls button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #2c2c2c;
    box-shadow: 0 12px 18px rgba(15, 21, 35, 0.08);
    cursor: pointer;
}

.counter-value {
    min-width: 26px;
    text-align: center;
    font-weight: 800;
}

.cta-button {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 16px 0;
    margin-top: 18px;
    background: linear-gradient(135deg, #c78a0a 0%, #f0b52f 100%);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 32px rgba(199, 138, 10, 0.18);
}

.map-card {
    min-height: 420px;
    overflow: hidden;
}

.map-frame {
    position: relative;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    background: linear-gradient(180deg, #e7edf8 0%, #f8f6f1 100%);
}

.map-top {
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    gap: 10px;
    z-index: 2;
}

.map-control {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: #212121;
    font-size: 1.15rem;
    box-shadow: 0 14px 30px rgba(15, 21, 35, 0.12);
    cursor: pointer;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.92), transparent 8%),
                radial-gradient(circle at 80% 24%, rgba(255, 255, 255, 0.84), transparent 9%),
                radial-gradient(circle at 42% 65%, rgba(255, 255, 255, 0.75), transparent 10%),
                linear-gradient(180deg, #d7e3f4 0%, #edf1f6 25%, #f7f5ef 100%);
}

.map-pin {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.map-pin::before {
    content: '';
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #c78a0a;
    box-shadow: 0 14px 28px rgba(199, 138, 10, 0.22);
}

.map-pin span {
    position: relative;
    top: -6px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #232323;
    box-shadow: 0 18px 40px rgba(15, 21, 35, 0.12);
}

.map-legend {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, 0.96);
    padding: 14px 18px;
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(15, 21, 35, 0.14);
    z-index: 2;
}

.map-legend strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.map-legend span {
    color: #6f6f6f;
    font-size: 0.88rem;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .map-card {
        min-height: 460px;
    }

   
    
}

@media (max-width: 700px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
        padding: 4px 16px;
        gap:0px;
    }

    nav {
        gap: 14px;
        display: none;
    }
    

    .hero-copy {
        text-align: left;
        padding-top: 0;
    }

    .hero-badge {
        justify-self: start;
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 9vw, 4rem);
    }

    .hero-card,
    .map-card {
        border-radius: 28px;
    }

    .hero-grid {
        gap: 22px;
    }

    /* Additional mobile styles */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .field {
        padding: 12px 14px;
    }

    .counter {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .hero-copy h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        width: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    nav {
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .field input {
        font-size: 0.9rem;
    }

    .map-card {
        min-height: 300px;
    }

    
}

/* =========================
   NOIR GOLD DESIGN SYSTEM
   PHP Compatible Version
========================= */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&family=Epilogue:wght@300;400;500;600;700&display=swap');

/* Leaflet */
@import url('https://unpkg.com/leaflet@1.9.4/dist/leaflet.css');

/* ================= BASE ================= */

:root {
  --background: 40 30% 98%;
  --foreground: 0 0% 10%;

  --surface: 0 0% 100%;
  --surface-elevated: 40 25% 96%;

  --primary: 38 70% 42%;
  --primary-glow: 43 85% 55%;

  --muted-foreground: 0 0% 40%;
  --border: 40 15% 88%;

  --radius: 1rem;

  --gradient-gold: linear-gradient(135deg, hsl(38 70% 42%), hsl(43 85% 55%));
  --gradient-radial-gold: radial-gradient(circle at top right, hsl(38 70% 42% / 0.14), transparent 60%);

  --shadow-card: 0 12px 28px -16px hsl(0 0% 0% / 0.12);
  --shadow-elevated: 0 30px 80px -20px hsl(0 0% 0% / 0.18);
}

/* RESET */
* {
  border-color: hsl(var(--border));
  box-sizing: border-box;
}

body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Epilogue', sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Urbanist', sans-serif;
}

/* ================= COMPONENTS ================= */

.text-gold {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.bg-gold {
  background: var(--gradient-gold);
}

.bg-grid {
  background-image:
    linear-gradient(hsl(40 15% 88% / 0.6) 1px, transparent 1px),
    linear-gradient(90deg, hsl(40 15% 88% / 0.6) 1px, transparent 1px);
  background-size: 48px 48px;
}

.bento {
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface));
  box-shadow: var(--shadow-card);
  transition: 0.3s ease;
}

.bento:hover {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: var(--shadow-elevated);
}

/* ================= UTILITIES ================= */

.bg-surface {
  background-color: hsl(var(--surface));
}

.bg-surface-elevated {
  background-color: hsl(var(--surface-elevated));
}

.container {
  width: 90%;
  margin: auto;
  padding: 0 16px;
}

/* ================= ANIMATIONS ================= */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fade-up 0.7s ease;
}

/* ================= LEAFLET ================= */

.leaflet-container {
  background: hsl(40 25% 96%);
}

.leaflet-control-attribution {
  background: hsl(0 0% 100% / 0.85) !important;
  font-size: 10px !important;
}

