body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #F8FAF5;
  color: #0f172a;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(8px);
  z-index: 10;
  transition: transform 0.3s ease-in-out;
}

header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
}

nav a:hover {
  color: #955b33;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #334155;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin-left: 0;
    margin-bottom: 20px;
    display: block;
    font-size: 16px;
  }

  nav a.btn {
    display: inline-block;
    margin-bottom: 0;
  }

  h2 {
    font-size: 28px;
  }
}

.btn {
  background: #955b33;
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}

.btn:hover {
  background: #955b33b3;
}

.hero {
  display: grid;
  gap: 40px;
  padding: 50px 20px;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.badge {
  background: #955b3329;
  color: #955b33;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  margin: 15px 0;
}

p {
  color: #475569;
  line-height: 1.5;
}

.hero-buttons a {
  display: inline-block;
  margin-right: 10px;
  margin-top: 15px;
}

.outline-btn {
  border: 1px solid #cbd5e1;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #334155;
  display: inline-block;
}

.outline-btn:hover {
  background: #f1f5f9;
}

.card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#plans {
  padding-top: 100px;
}


.plans {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.footer-section {
  padding-top: 100px;
}

.main-footer {
  text-align: center;
  margin-top: 60px;
  background-color: #F8FAF5;
  color: #475569;
  font-size: 14px;
}

.main-footer a {
  color: #955b33;
  text-decoration: none;
  font-weight: bold;
}

.main-footer a:hover {
  text-decoration: underline;
}

.about-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
  }
}

.image-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.image-card img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

@media (max-width: 992px) {
  .image-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Home Page Modern Contact Section */
.contact-wrapper {
  background: linear-gradient(135deg, #955b33 0%, #6a3e21 100%);
  color: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(149, 91, 51, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.contact-wrapper>* {
  position: relative;
  z-index: 2;
}

.contact-header h2 {
  font-size: 28px;
  margin: 0 0 5px;
  font-weight: 800;
}

.contact-header p {
  color: #e2e8f0;
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto 25px;
}

.contact-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px 15px;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.icon-wrapper {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-wrapper svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.glass-card h3 {
  font-size: 18px;
  margin: 0 0 5px;
  color: white;
}

.glass-card p {
  color: #f1f5f9;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.contact-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-footer h3 {
  font-size: 20px;
  margin: 0 0 5px;
}

.contact-footer p {
  color: #e2e8f0;
  margin: 0 0 5px;
  font-size: 14px;
}

.contact-footer .subtitle {
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.glass-btn {
  display: inline-block;
  background: white;
  color: #955b33;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.glass-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #f8faf5;
}

/* Contact Page Specific Styles */
.contact-container {
  max-width: 700px;
  padding: 40px 16px;
}

.contact-card {
  padding: 30px;
}

.info p {
  margin: 8px 0;
  color: #334155;
}

.info span {
  font-weight: bold;
}

@media (max-width:992px) {

  #plans,
  .footer-section {
    padding-top: 60px;
  }

  .hero {
    padding-bottom: 0;
  }
}