/* Hero Section */
.hero {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  color: var(--royal-blue-dark);
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text {
  color: var(--cool-gray);
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Info Section */
.features {
  padding: 80px 0;
  background: hsl(0, 0%, 98%);
}

.features-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border: 1px solid hsl(0, 0%, 90%);
}

.feature-item-content {
  padding: 40px;
}

.item-title {
  color: var(--royal-blue-dark);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.item-text {
  color: var(--cool-gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--cool-gray);
}

.contact-details ion-icon {
  color: hsl(2, 100%, 69%);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details span {
  font-weight: 600;
  color: var(--royal-blue-dark);
  min-width: 100px;
}

.contact-details a {
  color: var(--cool-gray);
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: hsl(2, 100%, 69%);
}

/* Contact Form Section */
.contact {
  padding: 80px 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-form {
  display: grid;
  gap: 25px;
}

.input-wrapper {
  display: grid;
  gap: 8px;
}

.input-label {
  color: var(--royal-blue-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.input-field {
  padding: 12px 15px;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 8px;
  color: var(--cool-gray);
  font-size: 1rem;
  transition: all 0.3s ease;
}

textarea.input-field {
  height: 120px;
  resize: vertical;
}

.input-field:focus {
  border-color: hsl(2, 100%, 69%);
  box-shadow: 0 0 0 4px hsla(2, 100%, 69%, 0.1);
}

.contact-banner {
  background: hsl(0, 0%, 98%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid hsl(0, 0%, 90%);
}

.contact-banner figure {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.whatsapp-contact {
  text-align: center;
}

.whatsapp-contact h3 {
  color: var(--royal-blue-dark);
  margin-bottom: 10px;
}

.whatsapp-contact p {
  color: var(--cool-gray);
  margin-bottom: 20px;
}

.btn-primary {
  background: hsl(2, 100%, 69%);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Hero Section */
.contact-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
              url('../images/rice.webp') center/cover;
  text-align: center;
}

/* Contact Info Cards */
.contact-info {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  background: hsl(0, 0%, 98%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon-wrapper ion-icon {
  font-size: 24px;
  color: hsl(2, 100%, 69%);
}

.info-card h3 {
  color: var(--royal-blue-dark);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.info-card p {
  color: var(--cool-gray);
  line-height: 1.6;
}

.info-card a {
  color: var(--cool-gray);
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: hsl(2, 100%, 69%);
}

/* Contact Form & Map Section */
.contact-form-section {
  padding: 100px 0;
  background: hsl(0, 0%, 98%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}

.form-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); */
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  color: var(--royal-blue-dark);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.form-header p {
  color: var(--cool-gray);
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 650px;
  margin: 0 auto;
}

.form-group {
  position: relative;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: var(--royal-blue-dark);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid hsl(0, 0%, 90%);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--royal-blue-dark);
  background: hsl(0, 0%, 98%);
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: hsl(0, 0%, 70%);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: hsl(2, 100%, 69%);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px hsla(2, 100%, 69%, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
  min-height: 150px;
  max-height: 300px;
}

.form-group.required label::after {
  content: '*';
  color: hsl(2, 100%, 69%);
  margin-left: 4px;
}

.btn-submit {
  grid-column: 1 / -1;
  background: hsl(2, 100%, 69%);
  color: var(--white);
  padding: 18px 40px;
  border: 2px solid hsl(2, 100%, 69%);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: transparent;
  color: hsl(2, 100%, 69%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-submit ion-icon {
  font-size: 20px;
}


.map-container {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Quick Contact Section */
.quick-contact {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.whatsapp-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.whatsapp-contact ion-icon {
  font-size: 40px;
  color: #25D366;
}

.contact-text {
  flex: 1;
}

.contact-text h3 {
  color: var(--royal-blue-dark);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--cool-gray);
  font-size: 0.9rem;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Enquiry Form Section */
.enquiry-section {
  background: var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.enquiry-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); */
}

.enquiry-wrapper .section-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--royal-blue-dark);
  font-size: 2rem;
  font-weight: 600;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--royal-blue-dark);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.required {
  color: hsl(2, 100%, 69%);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid hsl(0, 0%, 90%);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--royal-blue-dark);
  background: var(--white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--royal-blue-dark);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 32, 128, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: hsl(0, 0%, 75%);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background: var(--royal-blue-dark);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  align-self: flex-end;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 32, 128, 0.15);
}

/* Contact Details Section */
.contact-details-section {
  padding: 80px 0;
  /* background: hsl(0, 0%, 98%); */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  min-height: 600px;
}

.contact-info .section-title {
  color: var(--royal-blue-dark);
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-item ion-icon {
  font-size: 24px;
  color: hsl(2, 100%, 69%);
}

.item-content h3 {
  color: hsl(2, 100%, 69%);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.item-content p {
  color: var(--cool-gray);
  line-height: 1.6;
}

.item-content a {
  color: var(--cool-gray);
  transition: color 0.3s ease;
}

.item-content a:hover {
  color: var(--royal-blue-dark);
}

.map-wrapper {
  height: 90%;
  min-height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-container {
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Notification Styles */
.notification {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.notification.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.notification.error {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ffab91;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .info-grid {
    padding: 0 20px;
  }
  
  .contact-grid {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-wrapper {
    padding: 30px;
  }
  
  .map-container iframe {
    min-height: 300px;
  }
  
  .whatsapp-contact {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .info-card {
    padding: 30px 20px;
  }
  
  .form-header h2 {
    font-size: 1.8rem;
  }

  .form-header p {
    font-size: 1rem;
  }

  .enquiry-wrapper .section-title {
    font-size: 1.8rem;
  }

  .btn-submit {
    width: 100%;
  }
}