/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: #0f1930;
  scroll-behavior: smooth;
}

/* Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Montserrat:wght@300;500&display=swap');

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  color: #fff;
  z-index: 3;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 2px;
  line-height: 1.3;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 14px 35px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #f8d77b, #eab85c);
  color: #0f1930;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid #f8d77b;
  color: #f8d77b;
}

.btn-secondary:hover {
  background: #f8d77b;
  color: #0f1930;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* ===== ABOUT US SECTION ===== */
.about-section {
  background: #ffe4c0; /* Soft background so card stands out */
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
}

.about-card-wrapper {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(248, 215, 123, 0.4);
  text-align: center;
  transition: all 0.3s ease;
}

.about-card-wrapper:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #f8d77b;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #0f1930;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f8d77b, #eab85c);
  margin: 12px auto 0;
  border-radius: 2px;
}

.about-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HIGHLIGHT CARDS ===== */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.about-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(248, 215, 123, 0.3);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  border-color: #f8d77b;
}

.card-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #f8d77b, #eab85c);
  color: #0f1930;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .about-text {
    font-size: 1rem;
  }
  .about-card p {
    font-size: 0.95rem;
  }
}

/* ===== What We Offer Section ===== */
.offer-section {
  width: 100%;
  padding: 60px 20px;
  background: #fff9f2; /* Light premium background */
  font-family: 'Poppins', sans-serif;
}

.offer-main-card {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.offer-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* ===== Offer Cards Layout ===== */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ===== Individual Card Styling ===== */
.offer-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid #f0e6d8;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ===== Icons Styling ===== */
.offer-icon {
  font-size: 2.2rem;
  color: #c79a5b; /* Gold shade */
  margin-bottom: 15px;
}

/* ===== Card Titles ===== */
.offer-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

/* ===== Card Paragraph ===== */
.offer-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}
/* ===== VALUE SECTION STYLING ===== */
.value-section {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #f8f5f0; /* Light beige luxury tone */
}

.value-main-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.value-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #222;
}

.value-subtitle {
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.value-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  border-color: #d4af37; /* Subtle gold border on hover */
}

.value-icon {
  font-size: 2.5rem;
  color: #d4af37; /* Gold tone */
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .value-main-card {
    padding: 30px 20px;
  }
  .value-title {
    font-size: 1.8rem;
  }
}


/* Featured Projects Section */
.featured-projects {
  padding: 80px 20px;
  background-color: #ffe4c0;
  font-family: 'Poppins', sans-serif;
}

.featured-projects .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.project-image {
  width: 100%;
  height: 260px; /* Increased image height */
  object-fit: cover;
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

.project-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.project-info ul li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 6px;
}

.cta-btn {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #b8860b, #d4af37);
}






/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ===== POPUP CONTENT ===== */
.popup-content {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 15px;
  max-width: 900px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10;
}
.close-btn:hover {
  color: #000;
}

/* ===== LEFT SIDE IMAGE/LOGO ===== */
.popup-image {
  flex: 1;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.desktop-img {
  display: block;
}
.mobile-logo {
  display: none;
  max-width: 150px;
}

/* ===== RIGHT SIDE FORM ===== */
.popup-form {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-form h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}
.popup-form p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}
.popup-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.popup-form input:focus,
.popup-form textarea:focus {
  border-color: #ff9800;
  box-shadow: 0px 0px 8px rgba(255, 152, 0, 0.3);
}
.popup-form button {
  background: linear-gradient(135deg, #b8860b, #d4af37);
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}
.popup-form button:hover {
  background: linear-gradient(135deg, #b8860b, #d4af37);
  transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .popup-image {
    padding: 20px;
    background: #fff;
  }
  .desktop-img {
    display: none;
  }
  .mobile-logo {
    display: block;
  }
  .popup-form {
    padding: 25px;
  }
}
/* Section Background */
.process-timeline {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}
.timeline-overlay {
  background: rgba(0,0,0,0.55);
  padding: 60px 20px;
  border-radius: 12px;
}

/* Heading */
.timeline-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 60px;
  font-family: 'Cormorant Garamond', serif;
}
/* ===== Desktop Timeline ===== */
.process-timeline {
  position: relative;
}

.timeline-overlay {
  position: relative;
}

/* Desktop Timeline */
.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* connecting line */
.timeline-container::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: #ddd;
  z-index: 1;
}

.timeline-step {
  position: relative;
  text-align: center;
  flex: 1;
  cursor: pointer;
  padding: 0 15px;
}

.timeline-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: #bbb;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-step.active .timeline-icon,
.timeline-step:hover .timeline-icon {
  background: linear-gradient(135deg, #f8d77b, #eab85c);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.timeline-step h3 {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* Details (Desktop hidden by default) */
.timeline-details {
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

.timeline-step:hover .timeline-details {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.timeline-details p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}

/* Buttons */
.step-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8d77b, #eab85c);
  color: #0f1930;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
}

.step-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* ===== Left/Right Navigation Buttons (Hidden on Desktop) ===== */
.timeline-nav {
  display: none; /* hidden by default */
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(248, 215, 123, 0.8);
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.timeline-nav i {
  font-size: 16px;
}

.timeline-prev {
  left: 12px;
}

.timeline-next {
  right: 12px;
}

.timeline-nav:active {
  transform: translateY(-50%) scale(0.95);
}

/* ===== Tablet & Mobile → Full-Width Carousel + Always Visible ===== */
@media (max-width: 1024px) {
  .timeline-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 14px;

    /* IMPORTANT: padding so buttons don't cover cards */
    padding: 12px 60px;
  }

  /* Hide connecting line */
  .timeline-container::before {
    display: none;
  }

  /* Show navigation buttons on mobile/tablet */
  .timeline-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .timeline-step {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    margin: 0;
    text-align: center;
    padding: 20px 15px;
  }

  .timeline-icon {
    margin-bottom: 12px;
  }

  /* Details always visible */
  .timeline-details {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-width: 90%;
    margin: 15px auto 0;
    text-align: center;
  }

  .timeline-details p {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 10px;
  }

  .step-btn {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  /* Hide scrollbar for clean look */
  .timeline-container::-webkit-scrollbar {
    display: none;
  }
  .timeline-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/* ===== Scroll Indicator (Optional) ===== */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 5;
}

.scroll-indicator span {
  display: block;
  width: 15px;
  height: 15px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  margin: auto;
  animation: bounce 1.5s infinite;
}

/* bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(8px) rotate(-45deg);
  }
  60% {
    transform: translateY(4px) rotate(-45deg);
  }
}

/* Footer Styling */
.footer {
  background: #ffffff;
  color: #1a1a1a;
  padding: 50px 20px 20px;
  border-top: 2px solid #ffd700;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr; /* 3 cols + vertical dividers */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

.footer-col {
  padding: 0 20px;
}

.footer-col h3 {
  color: #b8860b; /* golden heading */
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Contact Section Styling */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 15px;
  color: #1a1a1a;
}

.footer-col ul li i {
  font-size: 18px;
  color: #b8860b; /* golden icons */
  min-width: 22px; /* keeps icons aligned */
  text-align: center;
}

.footer-col ul li a {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffd700; /* hover golden */
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.tagline {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.disclaimer {
  font-size: 12px;
  color: #777;
  margin-top: 8px;
  line-height: 1.4;
}

.divider {
  background: #ffd700;
  width: 2px;
  height: 100%;
}


/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e6e6e6;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  font-size: 13px;
  color: #555;
  width: 100%;             /* full width */
  background: #ffffff;     /* match footer bg */
}

.footer-bottom a {
  color: #1a1a1a;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffd700;
}


/* ✅ Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* single column */
    gap: 30px;
  }

  .divider {
    display: none; /* hide vertical divider */
  }

  .footer-col {
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #ffd700; /* golden horizontal line */
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .footer-col:last-child {
    border-bottom: none; /* remove line after last column */
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .footer-col ul li {
    justify-content: center; /* center items */
  }
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
}
/* ===== HEADER STYLING ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Container */
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  height: 80px;
}
.logo img {
  max-height: 100%;
  width: auto;
  display: block;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  position: relative;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

/* Golden underline on hover */
nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
  border-radius: 2px;
}
nav a:hover {
  color: #d4af37;
}
nav a:hover::after {
  width: 100%;
}

/* Contact Button */
.contact-btn {
  padding: 10px 22px;
  background: #d4af37;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}
.contact-btn:hover {
  background: #b88a2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}
.menu-toggle:hover {
  color: #d4af37;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    width: 220px;
    text-align: left;
    gap: 20px;
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .contact-btn {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
}








:root{
  --gold: #d4af37;
  --text: #111;
  --border: #eeeeee;
}

/* ===== HEADER ===== */
.pg-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 3px solid var(--gold); /* gold line like screenshot */
}

.pg-header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 18px;  /* 🔥 compact height */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT: Brand */
.pg-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pg-brand-logo{
  width: 90px;   /* 🔥 BIG logo */
  height: 90px;
  object-fit: contain;
}

.pg-brand-name{
  font-size: 18px; /* 🔥 smaller than logo */
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.2px;
}

/* RIGHT: Nav + CTA in one line */
.pg-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

/* NAV LINKS */
.pg-navlinks{
  display: flex;
  align-items: center;
  gap: 26px;
}

.pg-navlink{
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.pg-navlink i{
  color: var(--gold);
  font-size: 14px;
}

.pg-navlink:hover{
  color: var(--gold);
}

/* CTA BUTTON */
.pg-cta-btn{
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
}

.pg-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* MOBILE HAMBURGER */
.pg-menu-btn{
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.pg-menu-btn span{
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 5px auto;
  border-radius: 2px;
}

/* ===== MOBILE SIDEBAR ===== */
.pg-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 998;
}

.pg-sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 88%;
  background: #fff;
  border-left: 1px solid var(--border);
  transform: translateX(110%);
  transition: 0.28s ease;
  z-index: 999;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.pg-sidebar-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pg-sidebar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-sidebar-logo{
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.pg-sidebar-name{
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
}

.pg-sidebar-close{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.pg-sidebar-close i{
  font-size: 20px;
  color: #111;
}

.pg-sidebar-links{
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pg-side-link{
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-side-link i{
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.pg-side-link:hover{
  background: rgba(212,175,55,0.12);
}

/* Bottom CTA */
.pg-sidebar-bottom{
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pg-side-cta{
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 15px;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Active menu */
.pg-menu-overlay.active{
  opacity: 1;
  visibility: visible;
}

.pg-sidebar.active{
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .pg-navlinks{ display:none; }
  .pg-cta-btn{ display:none; }
  .pg-menu-btn{ display:block; }
}

/* Extra small phones */
@media (max-width: 420px){
  .pg-brand-logo{
    width: 78px;
    height: 78px;
  }
  .pg-brand-name{
    font-size: 16px;
  }
}
:root{
  --gold: #d4af37;
}

/* ===== Minimal Premium Intro ===== */
.pg-intro-min{
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.45s ease;
}

/* thin line container */
.pg-intro-line{
  width: 260px;
  max-width: 80vw;
  height: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  overflow: hidden;
}

/* moving gold line */
.pg-intro-line span{
  display: block;
  width: 35%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212,175,55,0.4), var(--gold), rgba(212,175,55,0.4));
  animation: introMove 0.9s infinite ease-in-out;
}

/* fade out */
.pg-intro-min.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.01);
}

@keyframes introMove{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(320%); }
}

:root{
  --gold: #d4af37;
  --text: #111;
  --border: #eeeeee;
}

/* ===== HEADER ===== */
.pg-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 3px solid var(--gold);
}

.pg-header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 18px; /* compact */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.pg-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pg-brand-logo{
  width: 46px;
  height: 46px;
  object-fit: cover; /* square logo looks perfect */
  border-radius: 10px;
}

.pg-brand-name{
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
}

/* Desktop nav */
.pg-navlinks{
  display: flex;
  align-items: center;
  gap: 22px;
}

.pg-navlink{
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.pg-navlink i{
  color: var(--gold);
  font-size: 14px;
}

.pg-navlink:hover{
  color: var(--gold);
}

/* CTA */
.pg-cta-btn{
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pg-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Hamburger */
.pg-menu-btn{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.pg-menu-btn span{
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px auto;
  border-radius: 2px;
}

/* Mobile Sidebar */
.pg-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 998;
}

.pg-sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 88%;
  background: #fff;
  border-left: 1px solid var(--border);
  transform: translateX(110%);
  transition: 0.28s ease;
  z-index: 999;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.pg-sidebar-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pg-sidebar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-sidebar-logo{
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.pg-sidebar-name{
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
}

.pg-sidebar-close{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.pg-sidebar-close i{
  font-size: 18px;
  color: #111;
}

.pg-sidebar-links{
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pg-side-link{
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-side-link i{
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.pg-side-link:hover{
  background: rgba(212,175,55,0.12);
}

.pg-sidebar-bottom{
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pg-side-cta{
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 15px;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Active menu */
.pg-menu-overlay.active{
  opacity: 1;
  visibility: visible;
}

.pg-sidebar.active{
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px){
  .pg-navlinks{ display:none; }
  .pg-cta-btn{ display:none; }
  .pg-menu-btn{ display:block; }
}
