header {

  text-align: center;
  padding: 40px 10px;
  background: linear-gradient(90deg, #003319 0%, #003319 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,181.3C960,181,1056,203,1152,202.7C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  position: relative;
}

.containers {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 5%;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Section */
.left-section {
  flex: 1 1 45%;
  min-width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 30px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.left-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #10f27d 0%, #003319 100%);
}

.left-section:hover {
  transform: translateY(-5px);
}

.left-section h2 {
  color: #111;
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.left-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #003319;
  border-radius: 2px;
}

.left-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 25px;
}

/* Accordion */
.accordion {
  border-top: 2px solid #eee;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background-color: #f9f9f9;
}

.accordion-header {
  background: #f5f7fb;
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #003319;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #eef2f8;
}

.accordion-header span {
  font-size: 1.2rem;
}

.accordion-content {
  display: none;
  padding: 20px;
  background: #f9fcff;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.accordion-content h4 {
  color: #003319;
  margin: 15px 0 10px;
}

.accordion-content ul {
  list-style: disc;
  padding-left: 20px;
}

.accordion-content ul li {
  margin-bottom: 10px;
  color: #333;
  transition: color 0.3s;
  position: relative;
  padding-left: 10px;
}

.accordion-content ul li:hover {
  color: #003319;
}

.accordion-content ul li::before {
  content: "•";
  color: #003319;
  font-weight: bold;
  position: absolute;
  left: -10px;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Right Section - Form */
.right-section {
  flex: 1 1 45%;
  min-width: 320px;
  background: #f3f8ff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 30px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.right-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #10f27d 0%, #003319 100%);
}

.right-section:hover {
  transform: translateY(-5px);
}

.quick-enquiry {
  background: linear-gradient(90deg, #0ea858 0%, #003319 100%);
  color: white;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 8px rgba(192, 0, 0, 0.3);
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.quick-enquiry::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0));
  transform: rotate(30deg);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c00000;
  box-shadow: 0 0 0 2px rgba(192, 0, 0, 0.1);
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 45%;
}

.button {
  background: linear-gradient(90deg, #0ea858 0%, #003319 100%);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 80%;
  transition: all 0.3s;
  box-shadow: 0 4px 8px rgba(192, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  background: linear-gradient(90deg, #246e15 0%, #72ea8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(192, 0, 0, 0.4);
}
.form-button {
  display: flex;
  justify-content: center;
}

.send-btn {
  width: 50%;
  background: linear-gradient(90deg, #0ea858 0%, #003319 100%);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-section {
  margin-top: 20px;
}
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-top: 30px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}
.whatsapp-btn:hover{
  background-color: #128c7e;
}

/* Alert styles */
.alert {
  padding: 12px 20px;
  border-radius: 8px;
  margin: 15px 0;
  font-weight: 500;
  text-align: center;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Country Code Picker Styles */
.phone-input-groups {
  display: flex;
  width: 100%;
}

.country-code-selects {
  flex: 0 0 0px;
  margin-right: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0px 0px;
  font-size: 1rem;
  background-color: white;
  cursor: pointer;
}

.country-code-select:focus {
  outline: none;
  border-color: #c00000;
  box-shadow: 0 0 0 2px rgba(192, 0, 0, 0.1);
}

.phone-number-input {
  flex: 1;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s;
}

.phone-number-input:focus {
  outline: none;
  border-color: #075507;
  box-shadow: 0 0 0 2px rgba(192, 0, 0, 0.1);
}

.validation-messages {
  font-size: 0.85rem;
  margin-top: 5px;
  color: #075507;
}

.validation-messages.error {
  color: #dc3545;
}

.validation-messages.success {
  color: #075507;
}

/* Responsive */
@media (max-width: 900px) {
  .containers {
    flex-direction: column;
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .left-section, .right-section {
    width: 100%;
  }

  header h1 {
    font-size: 2rem;
  }

  .language-selector {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .language-selector {
    position: static;
    margin: 20px auto;
    width: 90%;
    justify-content: center;
  }
  
  .phone-input-group {
    flex-direction: column;
  }
  
  .country-code-select {
    flex: 1;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/* Additional styles for dynamic content */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-link:hover {
    text-decoration: none;
    color: inherit;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-header:hover {
    background-color: #e9ecef;
}

.accordion-content {
    padding: 20px;
    background-color: white;
}

.accordion-content h4 {
    color: #2c5aa0;
    margin-top: 15px;
    margin-bottom: 10px;
}

.accordion-content ul {
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 8px;
}

.toggle {
    font-weight: bold;
    font-size: 18px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accordion-header {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .accordion-content {
        padding: 15px;
    }
}