/* --- GLOBAL LAYOUT COMPONENTS (Header, Footer, Floating Buttons) --- */

:root {
  --primary-gold: #A37542;
  --text-dark: #1a1a1a;
  --text-light: #fff;
  --bg-light: #f9f9f9;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

nav {
  display: block;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

nav ul li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

nav ul li a:hover {
  color: var(--primary-gold);
}

.btn-contact-nav {
  background-color: transparent;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--primary-gold);
  transition: 0.3s;
}

.btn-contact-nav:hover {
  background-color: var(--primary-gold);
  color: #fff;
  box-shadow: 0 5px 15px rgba(163, 117, 66, 0.4);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 8px 0;
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
  }
}

.dropdown-content a {
  color: var(--primary-gold) !important;
  padding: 12px 20px;
  display: block !important;
  text-align: left !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.2s;
}

.dropdown-content a:hover {
  background: #222;
  color: var(--primary-gold) !important;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    color: var(--primary-gold);
  }

  header {
    background: #000;
    padding: 10px 15px !important;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    padding: 20px;
    border: none;
    align-items: center;
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .nav-menu ul li a {
    color: var(--primary-gold);
    text-shadow: none;
  }

  /* Remove button style on mobile */
  .nav-menu ul li a.btn-contact-nav {
    border: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    background: transparent;
    box-shadow: none;
    font-weight: 500;
  }

  .nav-menu ul li a.btn-contact-nav:hover {
    background: transparent;
    color: var(--primary-gold);
    box-shadow: none;
  }

  .dropdown-content {
    position: static;
    display: none;
    background: transparent;
    padding-left: 0;
    transform: none;
    min-width: 100%;
  }

  .dropdown-content a {
    color: var(--primary-gold) !important;
    text-align: center !important;
    padding: 10px 0;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}

/* --- FOOTER --- */
.main-footer {
  background-color: #fff;
  color: #333;
  padding: 60px 5% 20px;
  text-align: left;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.footer-about p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.social-icons-footer {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: #a37542;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-btn:hover {
  background: #333;
  transform: translateY(-3px);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #666;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.contact-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-top: 5px;
}

.contact-text {
  color: #666;
  font-size: 0.95rem;
}

.map-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.review-platforms-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.review-platforms-footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-icons {
  flex-wrap: wrap;
}

.review-icons .social-btn {
  background: #fdfaf6;
  color: #a37542;
  border: 1px solid rgba(163, 117, 66, 0.2);
}

.review-icons .social-btn:hover {
  background: #a37542;
  color: #fff;
}

.copyright-area {
  text-align: center;
  color: #888;
  padding: 15px 0;
  border-top: 1px solid #eee;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FLOATING CONTACT --- */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.08);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #a37542, #c5a059);
}

.call-btn {
  background: linear-gradient(135deg, #a37542, #c5a059);
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
