/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Playfair Display', serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Top Bar */
.top-bar {
  background-color: #004d2a;
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #006d3d;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.logo img {
  height: 45px;
  margin-right: 10px;
}

.main-nav a {
  margin: 0 10px;
  color: white;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ffd700;
}

.phone {
  font-size: 1rem;
}

/* Hero Section */
.hero {
  background: url('../images/bg.jpg') center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: white;
}

.hero-content img {
  width: 100px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-content a {
  background-color: #006d3d;
  padding: 15px 30px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-content a:hover {
  background-color: #004d2a;
}

/* Section General */
section {
  padding: 100px 20px;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #006d3d;
}

section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

/* Services Cards */
.service-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 2.5rem;
  color: #006d3d;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.card p {
  font-size: 1rem;
  color: #666;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-container a {
  color: #ffd700;
  margin: 0 5px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-container a:hover {
  color: #ffffff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    margin-top: 10px;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 5px;
  }
}

.checkout-section, .success-section {
  padding: 100px 20px;
  background: #fdfdfd;
}

.checkout-form {
  max-width: 600px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.checkout-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.checkout-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #006d3d;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.btn-gold {
  background: #ffd700;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-gold:hover {
  background: #e6c200;
}

.success-section h2 {
  color: #006d3d;
  font-size: 2.5rem;
}

.success-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-green {
  background-color: #006d3d;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
}

.btn-outline {
  border: 2px solid #006d3d;
  color: #006d3d;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .checkout-section {
    padding: 60px 15px;
  }

  .checkout-form {
    padding: 25px;
    border-radius: 10px;
  }

  .checkout-form .form-group {
    margin-bottom: 16px;
  }

  .checkout-form input,
  .checkout-form textarea,
  .checkout-form select {
    font-size: 1rem;
    padding: 10px;
  }

  .btn-gold {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .checkout-form {
    padding: 20px 15px;
  }

  .checkout-form label {
    font-size: 0.95rem;
  }

  .btn-gold {
    font-size: 0.95rem;
  }
}
