:root{--gold:#d4af37;--dark:#0f172a}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Poppins,sans-serif;background:#f3f4f6}
header{position:fixed;top:0;width:100%;background:rgba(0,0,0,.6);backdrop-filter:blur(10px);z-index:100}
.nav{max-width:1200px;margin:auto;display:flex;justify-content:space-between;align-items:center;padding:18px 20px;color:#fff}
.logo span{color:var(--gold)}
.menu{
  display:flex;
  gap:28px;
  font-size:14px;
}

.menu a{
  position:relative;
  text-decoration:none;
  color:#ffffff;
  opacity:.85;
  padding-bottom:6px;
  transition:.3s ease;
}

/* Hover effect */
.menu a:hover{
  opacity:1;
}

/* Underline animation */
.menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:#d4af37; /* gold */
  transition:width .35s ease;
  border-radius:2px;
}

/* On hover */
.menu a:hover::after{
  width:100%;
}

/* Active page underline */
.menu a.active{
  opacity:1;
  color:#d4af37;
}

.menu a.active::after{
  width:100%;
}

.btn{background:var(--gold);border:none;padding:12px 22px;border-radius:12px;font-weight:500;cursor:pointer}
.hero{margin-top:78px;height:50vh;background:linear-gradient(135deg,#0f172a,#1e293b);color:#fff;display:flex;align-items:center}
.hero div{max-width:1200px;margin:auto;padding:0 20px}
.contact{max-width:1200px;margin:80px auto;padding:0 20px;display:grid;grid-template-columns:1fr 1fr;gap:40px}
.form{background:#fff;border-radius:22px;box-shadow:0 14px 30px rgba(0,0,0,.12);padding:30px}
.form input,.form textarea{width:100%;padding:12px;margin-bottom:14px;border-radius:10px;border:1px solid #ddd}
.form textarea{height:120px}
.info{background:#0f172a;color:#fff;border-radius:22px;padding:30px}
footer{background:#020617;color:#94a3b8;padding:40px 20px;font-size:14px}
footer .foot{max-width:1200px;margin:auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:30px}
@media(max-width:900px){.contact{grid-template-columns:1fr}}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:20px;
  font-weight:600;
}

.logo img{
  height:85px;     /* best for header */
  width:auto;
  object-fit:contain;
}
/* ================= FOOTER ================= */
.site-footer{
  background:#020617;
  color:#94a3b8;
  padding:70px 20px 30px;
  font-size:14px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:40px;
}

.footer-box h3,
.footer-box h4{
  color:#fff;
  margin-bottom:14px;
  font-weight:500;
}

.footer-logo{
  font-size:22px;
  font-weight:600;
}

.footer-logo span{
  color:var(--gold);
}

.footer-box p{
  line-height:1.7;
  opacity:.85;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box ul li a{
  color:#94a3b8;
  text-decoration:none;
  transition:.3s ease;
}

.footer-box ul li a:hover{
  color:var(--gold);
  padding-left:4px;
}

/* SOCIAL ICONS */
.social{
  margin-top:18px;
  display:flex;
  gap:14px;
}

.social a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#0f172a;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:16px;
  transition:.35s ease;
}

.social a:hover{
  background:var(--gold);
  color:#0f172a;
  transform:translateY(-3px);
}

/* BOTTOM BAR */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:40px;
  padding-top:20px;
  text-align:center;
  font-size:13px;
  opacity:.75;
}

/* MOBILE */
@media(max-width:768px){
  .site-footer{
    text-align:center;
  }
  .social{
    justify-content:center;
  }
}
/* ================= FOOTER LOGO ================= */
.footer-brand{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-logo-img{
  height:52px;
  width:auto;
  object-fit:contain;
}

/* Mobile alignment */
@media(max-width:768px){
  .footer-brand{
    align-items:center;
  }
}
/* ================= MODAL BASE ================= */
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}

.modal-box{
  background:#fff;
  width:100%;
  max-width:420px;
  padding:30px;
  border-radius:18px;
  position:relative;
  animation:popup .4s ease;
}

@keyframes popup{
  from{transform:scale(.9);opacity:0}
  to{transform:scale(1);opacity:1}
}

.close{
  position:absolute;
  top:12px;
  right:16px;
  font-size:22px;
  cursor:pointer;
}

.modal-box h2{
  margin-bottom:18px;
  font-weight:600;
  color:#0f172a;
}

.modal-box input,
.modal-box select{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  margin-bottom:14px;
  font-family:inherit;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.captcha{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  margin-bottom:16px;
}
/* contact.css */

/* FORM CONTAINER */
.contact-form {
  background: #fff;
  max-width: 500px;
  margin: 40px auto;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif;
}

/* HEADINGS */
.contact-form h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #222;
}

/* INPUTS & SELECT */
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: #ff7a59;
  outline: none;
  box-shadow: 0 0 6px rgba(255, 122, 89, 0.4);
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  background: #ff7a59;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.contact-form button:hover {
  background: #ff603d;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 122, 89, 0.3);
}

/* LABEL + CAPTCHA */
.contact-form label.captcha {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-form label.captcha input {
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contact-form {
    padding: 20px;
    margin: 20px;
  }
}







/* Hamburger */
.hamburger {
  display: none; /* hide on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #222;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 60px; /* height of header */
  right: 0;
  width: 200px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
  flex-direction: column;
}

.mobile-menu a {
  display: block;
  padding: 12px 20px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: 0.2s;
}

.mobile-menu a:hover {
  background: #ff7a59;
  color: #fff;
}

/* Show mobile menu when active */
.mobile-menu.show {
  display: flex;
}

/* Responsive */
@media (max-width: 900px) {
  .menu {
    display: none; /* hide desktop menu */
  }
  .hamburger {
    display: flex;
  }
}





.auth-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-btn {
  padding: 8px 18px;
  background: #d4af37;
  color: #111;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
}

.profile-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.profile-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

#logoutBtn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 5px 10px;
  cursor: pointer;
}









/* ================= FULL SCREEN POPUP ================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 15px;
  overflow-y: auto; /* allow scroll only if needed */
}

/* Modal Box */
.modal-box {
  background: #fff;
  color: #0f172a;
  width: 100%;
  max-width: 600px; /* increased width for more space */
  padding: 30px 25px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  animation: popup 0.4s ease;
  font-family: 'Poppins', sans-serif;
}

/* Popup Animation */
@keyframes popup {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Title */
.modal-box h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* Close Button */
.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #94a3b8;
}
.close:hover {
  color: var(--gold);
}

/* Form Elements */
.modal-box input,
.modal-box select,
.modal-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  box-sizing: border-box;
}

textarea {
  min-height: 70px;
  resize: vertical;
}

/* Form Row for First + Last Name */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

/* Captcha */
.captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* Submit Button */
.modal-box button.btn {
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(135deg, var(--gold), #b8962e);
  border: none;
  color: #0f172a;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.modal-box button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.45);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-box {
    max-width: 95%; /* almost full width on mobile */
    padding: 20px 15px;
  }

  .form-row {
    grid-template-columns: 1fr; /* stack fields */
  }

  .modal-box h2 {
    font-size: 20px;
  }

  .modal-box input,
  .modal-box select,
  .modal-box textarea {
    font-size: 13px;
    padding: 10px 12px;
  }
}

@media (max-height: 650px) {
  .modal-box {
    max-height: 95vh; /* fit small screens */
    overflow-y: auto;
  }
}



.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.contact .form,
.contact .info {
  flex: 1 1 350px;
}

.contact .form {
  background: #f8fafc;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.contact .form h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.contact .form input,
.contact .form select,
.contact .form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-family: inherit;
}

.contact .form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact .form .form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact .form .btn {
  width: 100%;
  background: #d4af37;
  color: #111;
  font-weight: 500;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact .form .btn:hover {
  background: #b8962e;
}

.contact .info h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.contact .info p {
  margin-bottom: 10px;
  font-size: 14px;
}

.contact .captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact {
    flex-direction: column;
  }
  .contact .form,
  .contact .info {
    flex: 1 1 100%;
  }
}






.site-footer{
  background:#000;
  color:#fff;
  font-family:'Poppins',sans-serif;
  padding:60px 20px 20px;
}

.footer-top{
  display:flex;
  flex-wrap:wrap;
  gap:50px;
  justify-content:space-between;
}

.footer-newsletter{
  flex:1 1 300px;
}

.footer-newsletter h3{
  font-size:24px;
  margin-bottom:10px;
}

.footer-newsletter p{
  font-size:14px;
  margin-bottom:15px;
}

.newsletter-form input{
  padding:10px;
  margin-right:10px;
  margin-bottom:10px;
  border-radius:5px;
  border:none;
}

.newsletter-form button{
  padding:10px 20px;
  border:none;
  background:#FFD700;
  color:#000;
  font-weight:bold;
  cursor:pointer;
  border-radius:5px;
}

.footer-links{
  display:flex;
  flex:2 1 500px;
  justify-content:space-between;
  flex-wrap:wrap;
}

.link-column h4{
  font-size:16px;
  margin-bottom:10px;
}

.link-column ul{
  list-style:none;
  padding:0;
}

.link-column ul li{
  margin-bottom:8px;
}

.link-column ul li a{
  color:#bbb;
  text-decoration:none;
  font-size:14px;
}

.link-column ul li a:hover{
  color:#FFD700;
}

.footer-social{
  text-align:center;
  margin:20px 0;
}

.footer-social a{
  margin:0 10px;
  font-size:20px;
  color:#fff;
  transition:.3s;
}

.footer-social a:hover{
  color:#FFD700;
}

.footer-partners, .footer-payments{
  text-align:center;
  margin:20px 0;
}

.partners-logos img, .payment-icons img{
  margin:5px 10px;
  height:30px;
}

.footer-map{
  text-align:center;
  margin:30px 0;
}

.footer-map img{
  width:200px;
}

.footer-bottom{
  text-align:center;
  font-size:12px;
  color:#777;
  margin-top:20px;
}

/* DARK THEME */

body[data-theme="dark"]{
background:#111;
color:#fff;
}

body[data-theme="dark"] button,
body[data-theme="dark"] .btn{
background:#333;
color:#fff;
}

body[data-theme="dark"] button:hover{
background:#555;
}


/* PINK THEME */

body[data-theme="pink"]{
background:#fff0f6;
}

body[data-theme="pink"] button,
body[data-theme="pink"] .btn{
background:#ff2d8d;
color:#fff;
}

body[data-theme="pink"] button:hover{
background:#e02178;
}


/* BLUE THEME */

body[data-theme="blue"]{
background:#f0f6ff;
}

body[data-theme="blue"] button,
body[data-theme="blue"] .btn{
background:#2979ff;
color:#fff;
}

body[data-theme="blue"] button:hover{
background:#1c5ed6;
}


/* ORANGE THEME */

body[data-theme="orange"]{
background:#fff6ef;
}

body[data-theme="orange"] button,
body[data-theme="orange"] .btn{
background:#ff7a00;
color:#fff;
}

body[data-theme="orange"] button:hover{
background:#e56d00;
}


/* YELLOW THEME */

body[data-theme="yellow"]{
background:#fffdf4;
}

body[data-theme="yellow"] button,
body[data-theme="yellow"] .btn{
background:#d4af37;
color:#fff;
}

body[data-theme="yellow"] button:hover{
background:#b9972d;
}