/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Basic layout and colors */
body {
  margin: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  color: #b18918;
  margin-top: 0;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #c9a227;
  margin: 15px auto 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

/* Nav */
.nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  height: 36px;
}

.brand strong {
  font-size: 1.5rem;
  color: #222;
  font-weight: 600;
}

.links {
  display: flex;
  align-items: center;
}

.links a {
  margin-left: 25px;
  color: #c9a227;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.links a:hover {
  color: #b18918;
}

.links a.button-outline {
  margin-left: 25px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #f5f5f5;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header .brand {
  gap: 10px;
}

.mobile-menu-header .brand-mark {
  height: 30px;
}

.mobile-menu-header .brand strong {
  color: white;
  font-size: 1.4rem;
}

.mobile-menu-close {
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(255,255,255,0.1);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-links a {
  padding: 18px 20px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-links a:hover {
  background: rgba(201, 162, 39, 0.2);
  color: white;
  transform: translateX(5px);
}

.mobile-links a:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.mobile-links a.button-outline {
  display: block;
  text-align: center;
  background: #c9a227;
  color: white;
  border: 2px solid #c9a227;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.mobile-links a.button-outline:hover {
  background: transparent;
  color: #c9a227;
  transform: translateX(0);
}

/* Hero */
.hero-frame {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transform: scale(1.1);
  transform-origin: center;
  filter: brightness(0.8);
  z-index: 0;
}

.hero-card {
  position: relative;
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 1;
  max-width: 600px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-full {
  width: 250px;
  margin: 0 auto 20px;
  display: block;
}

.hero-card p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.button, .button-outline {
  display: inline-block;
  padding: 10px 28px;
  margin: 6px 8px 0 0;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.button {
  background: #c9a227;
  color: white;
  border: 2px solid #c9a227;
}

.button:hover {
  background: transparent;
  color: #c9a227;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

.button-outline {
  border: 2px solid #c9a227;
  color: #fff !important;
  background: #c9a227;
}

.button-outline:hover {
  background: #c9a227;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section.alt {
  background: #fafafa;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #666;
}

/* Grid for services */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card h3 {
  margin-top: 20px;
}

.card p {
  margin-bottom: 0;
}

.card-icon {
  font-size: 3rem;
  color: #c9a227;
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1);
  background: rgba(201, 162, 39, 0.2);
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 25px;
  color: #666;
}

.cta-section .button {
  display: inline-block;
  margin-top: 10px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  height: 800px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  margin: auto;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Hide the images by default */
.mySlides {
  display: none;
  width: 100%;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: #c9a227;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
}

.prev:hover, .next:hover {
  background-color: #c9a227;
  transform: scale(1.1);
}

/* Position the "next button" to the right */
.next {
  right: 20px;
  border-radius: 50%;
}

.prev {
  left: 20px;
  border-radius: 50%;
}

/* Caption text */
.text {
  background: rgba(0,0,0,0.5);
  color: #f2f2f2;
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 14px;
  padding: 12px;
  position: absolute;
  top: 0;
  background: rgba(0,0,0,0.3);
  border-radius: 0 0 10px 0;
}

/* The dots/bullets/indicators */
.dots-container {
  text-align: center;
  padding: 20px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #c9a227;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: .7}
  to {opacity: 1}
}

/* Google Form box */
.form-box {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #eee;
  max-width: 900px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: #222;
  padding: 40px 0 20px;
  color: #fff;
  text-align: center;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

footer .brand {
  justify-content: center;
  margin-bottom: 20px;
}

footer .brand-mark {
  height: 30px;
}

footer .brand strong {
  color: white;
  font-size: 1.8rem;
}

footer p {
  color: #aaa;
  margin: 20px 0;
  font-size: 1rem;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .mobile-menu {
    width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .nav-row {
    height: 70px;
    padding: 0 15px;
  }
  
  .links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-frame {
    min-height: 600px;
  }
  
  .hero-card {
    padding: 25px;
    margin: 0 20px;
    max-width: 90%;
  }
  
  .logo-full {
    width: 200px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .button, .button-outline {
    width: 80%;
    text-align: center;
    margin: 10px 0;
  }
  
  .slideshow-container {
    height: 400px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .cta-section {
    padding: 25px 15px;
  }
  
  .cta-section h3 {
    font-size: 1.5rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .nav-row {
    padding: 0 10px;
  }
  
  .brand strong {
    font-size: 1.3rem;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .mobile-menu-header {
    padding: 20px 15px;
  }
  
  .mobile-links {
    padding: 15px;
  }
  
  .mobile-links a {
    padding: 15px;
    font-size: 1.1rem;
  }
  
  .hero-card {
    padding: 20px;
    max-width: 95%;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .button, .button-outline {
    padding: 12px 20px;
  }
  
  .slideshow-container {
    height: 300px;
  }
  
  .section {
    padding: 40px 0;
  }
}