/* =====================
   GLOBAL VARIABLES
===================== */
:root {
    --primary: #f5c542;
    --dark: #0b0f14;
    --dark-soft: #141a22;
    --light: #ffffff;
    --muted: #b8c1cc;
    --radius: 18px;
}

/* =====================
   BODY BACKGROUND
===================== */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(245,197,66,0.08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(245,197,66,0.06), transparent 45%),
        linear-gradient(135deg, #0b0f14, #141a22);
    color: var(--light);
    line-height: 1.7;
}

/* =====================
   HEADER
===================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 20, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 6%;
}

.logo img {
    height: 42px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 26px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* =====================
   CONTACT SECTION
===================== */
.contact {
    max-width: 1100px;
    margin: auto;
    padding: 90px 6% 80px;
}

.contact h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--primary);
    margin-bottom: 15px;
}

.contact p {
    color: var(--muted);
    max-width: 720px;
    margin-bottom: 40px;
}

/* =====================
   CONTACT FORM
===================== */
.contact form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 600px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.contact label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.3);
    color: var(--light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* =====================
   BUTTON
===================== */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #f5c542, #d9a91e);
    color: #111;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245,197,66,0.4);
}

/* =====================
   LOCATION & MAP
===================== */
.contact h3 {
    margin-top: 60px;
    margin-bottom: 10px;
    color: var(--primary);
}

#map {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    margin-top: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* =====================
   FOOTER
===================== */
footer {
    background: #080b10;
    text-align: center;
    padding: 30px 6%;
    margin-top: 90px;
    font-size: 0.9rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    nav ul {
        gap: 18px;
        font-size: 0.9rem;
    }

    .contact {
        padding-top: 70px;
    }

    .contact form {
        padding: 30px;
    }

    #map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        gap: 12px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* =====================
   WHATSAPP FLOAT BUTTON
===================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37,211,102,0.7);
}


/* =====================
   HONEYPOT FIELD
===================== */
.hp-field {
    display: none;
}

/* =====================
   SCROLL REVEAL
===================== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =====================
   MAP PLACEHOLDER
===================== */
.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  margin-top: 30px;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}




/* =====================
   SUCCESS MODAL
===================== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #141a22;
    padding: 40px;
    border-radius: 20px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.modal-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}
.modal {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  justify-content:center;
  align-items:center;
}
.modal-content {
  background:#fff;
  padding:2rem;
  border-radius:12px;
  text-align:center;
}

.modal-content p {
    color: var(--muted);
    margin-bottom: 25px;
}




/* =====================
   FORM VALIDATION
===================== */
input.error,
textarea.error {
    border-color: #ff4d4d;
}

.error-message {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

