/* ========== CONTACT HERO========== */
.contact-hero,
.service-hero,
.career-hero,
.about-hero,
.product-hero {
  padding: 80px 0 120px;
  background-color: #f6f4ef;
  color: #000;
  position: relative;
  overflow: hidden;
  background-image: url('../image/body-img.webp');
}

.contact-hero::before,
.service-hero::before,
.career-hero::before,
.about-hero::before,
.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23FF9F1A" fill-opacity="0.05" d="M83.1,12.6c15.7-6.8,33.9-6.2,49.8,1.1s27.8,20.5,32.5,36.6c4.7,16.1,1.7,33.7-7,48.2c-8.7,14.5-23.5,24.4-40.1,28.2c-16.6,3.8-34.5,1.1-49.5-8.2c-15-9.3-25.8-24.8-28.6-42c-2.8-17.2,2.2-34.9,13.3-48.4C52.9,29.1,67.4,19.4,83.1,12.6z"/></svg>');
  background-repeat: no-repeat;
  background-position: 120% 50%;
  background-size: 50%;
  opacity: 0.1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero h1,
.service-hero h1,
.service-hero h1,
.about-hero h1,
.product-hero h1,
.career-hero h1 {
  font-size: 64px;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.1;
}

.contact-hero h1 span,
.service-hero h1 span,
.career-hero h1 span,
.about-hero h1 span,
.product-hero h1 span {
  background: linear-gradient(135deg, #ff9f1a, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p,
.service-hero p,
.career-hero p,
.about-hero p,
.product-hero p {
  font-size: 20px;
  color: #1f2022;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CONTACT INFO CARDS (why-us style) ========== */
.contact-info-section {
  padding: 100px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  padding: 20px 10px;
  background: var(--bg-light);
  border-radius: 24px;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  text-align: center;
}

.contact-card:hover {
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border-color: #ff9f1a;
  transform: translateY(-8px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--color-gradient2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: #ff7a00;
  transition: all 0.3s;
}

.contact-card:hover .contact-icon {
  background: var(--color-gradient);
  color: white;
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--color-dark-primary);
  ;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.contact-card .contact-sub {
  font-size: 16px;
  color: var(--text-muted);
}
/* Add/modify these responsive rules */

/* Tablet screens */
@media (max-width: 991px) {
  .contact-info-section {
    padding: 70px 0;
  }

  .contact-grid {
    gap: 24px;
    margin-top: 32px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    margin-bottom: 20px;
  }

  .contact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .contact-card p {
    font-size: 16px;
  }

  .contact-card .contact-sub {
    font-size: 14px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .contact-info-section {
    padding: 50px 0;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 28px;
  }

  .contact-card {
    padding: 20px 12px;
    border-radius: 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 16px;
  }

  .contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contact-card p {
    font-size: 14px;
  }

  .contact-card .contact-sub {
    font-size: 13px;
  }
}

/* Small mobile (below 576px) */
@media (max-width: 576px) {
  .contact-info-section {
    padding: 40px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .contact-card {
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    margin-bottom: 14px;
  }

  .contact-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .contact-card p {
    font-size: 15px;
  }

  .contact-card .contact-sub {
    font-size: 13px;
  }
}
/* Add this to match your other sections */
.contact-info-section .container {
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-info-section .container {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .contact-info-section .container {
    padding: 0 16px;
  }
}

/* ========== FORM & MAP SECTION ========== */
.form-map-section {
  padding: 80px 0 100px;
  background: var(--bg-light);
}

.contact-form-wrapper {
  background: white;
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
}

.form-label {
  font-weight: 600;
  color: var(--color-dark-primary);
  ;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 1px solid var(--border-default);
  ;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 16px;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: #ff9f1a;
  box-shadow: 0 0 0 4px rgba(255, 159, 26, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
}

.map-wrapper {
  background: white;
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  border: 1px solid #f1f5f9;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 20px;
  margin-top: 25px;
}


.map-placeholder {
  background: var(--color-gradient2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: #ff7a00;
}

.map-placeholder i {
  font-size: 80px;
  margin-bottom: 20px;
  color: #ff9f1a;
}

.map-placeholder h4 {
  color: var(--color-dark-primary);
  margin-bottom: 15px;
}

.map-placeholder p {
  color:  var(--text-muted);;
}

/* Add these responsive overrides to your existing CSS */

/* Tablet & Mobile adjustments */
@media (max-width: 991px) {
  .form-map-section {
    padding: 60px 0 70px;
  }

  .contact-form-wrapper {
    padding: 35px 28px;
  }

  .contact-form-wrapper h3 {
    font-size: 28px;
  }

  .contact-form-wrapper p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .map-wrapper {
    margin-top: 30px;
    padding: 25px 20px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .map-placeholder i {
    font-size: 60px;
  }

  .map-placeholder h4 {
    font-size: 22px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .form-map-section {
    padding: 40px 0 50px;
  }

  .container {
    padding: 0 16px;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-form-wrapper p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .form-control,
  .form-select {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 14px;
  }

  .form-label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .row.g-4 > [class*="col-"] {
    margin-bottom: 18px;
  }

  textarea.form-control {
    min-height: 120px;
  }

  .btn-primary {
    padding: 14px;
    font-size: 15px;
  }

  .map-wrapper {
    padding: 20px 16px;
    border-radius: 20px;
    margin-top: 25px;
  }

  .map-wrapper iframe {
    height: 250px;
    border-radius: 16px;
    margin-top: 18px;
  }

  .map-placeholder {
    padding: 20px 16px;
  }

  .map-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .map-placeholder h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .map-placeholder p {
    font-size: 14px;
  }

  .map-wrapper > div:last-child {
    margin-top: 20px !important;
  }

  .map-wrapper a {
    font-size: 14px;
  }

  .col-12 p {
    font-size: 12px;
  }
}

/* Small mobile (below 480px) */
@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 20px 16px;
  }

  .contact-form-wrapper h3 {
    font-size: 22px;
  }

  .map-placeholder i {
    font-size: 42px;
  }

  .map-wrapper iframe {
    height: 220px;
  }

  .btn-primary {
    padding: 12px;
  }
}
/* Update or add this to your existing CSS */
.row.g-4 {
  row-gap: 0;
}

.row.g-4 > [class*="col-"] {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .row.g-4 > [class*="col-"] {
    margin-bottom: 18px;
  }
}
/* ========== FAQ SECTION (process-style with flip) ========== */
.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background: var(--bg-light);
  ;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: white;
  border-color: #ff9f1a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.faq-question i {
  font-size: 24px;
  color: #ff7a00;
  background: var(--color-gradient2);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.faq-item h4 {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--color-dark-primary);
  ;
}

.faq-item p {
     color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-left: 65px;
}

/* Add/modify these responsive rules */

/* Tablet screens */
@media (max-width: 991px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-grid {
    gap: 24px;
    margin-top: 32px;
  }

  .faq-item {
    padding: 24px;
  }

  .faq-question i {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .faq-item h4 {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 15px;
    margin-left: 60px;
  }
}

/* Mobile screens (your existing 768px rule is good, but enhance it) */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-question {
    gap: 12px;
    flex-wrap: wrap;
  }

  .faq-question i {
    width: 42px;
    height: 42px;
    font-size: 18px;
    border-radius: 14px;
  }

  .faq-item h4 {
    font-size: 17px;
    flex: 1;
    min-width: 180px;
  }

  .faq-item p {
    font-size: 14px;
    margin-left: 54px;
    line-height: 1.6;
  }
}

/* Small mobile (below 480px) */
@media (max-width: 480px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-grid {
    gap: 16px;
  }

  .faq-item {
    padding: 18px;
    border-radius: 20px;
  }

  .faq-question {
    gap: 10px;
  }

  .faq-question i {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 12px;
  }

  .faq-item h4 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 13px;
    margin-left: 46px;
    line-height: 1.5;
  }
}
/* Make sure your container has proper padding on mobile */
.faq-section .container {
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .faq-section .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .faq-section .container {
    padding: 0 16px;
  }
}

/* ========== CTA (identical) ========== */
.cta-section {
  padding: 100px 0;
}

/* This is now the styled box */
.cta-box {
  background: var(--color-gradient);
  color: white;
  padding: 80px 40px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(185, 46, 46, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-box p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ========== RESPONSIVE ========== */
/* Add/modify these responsive rules */

/* Tablet screens */
@media (max-width: 991px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-box {
    padding: 60px 30px;
    border-radius: 24px;
  }

  .cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .cta-buttons {
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-box {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .cta-box::before {
    width: 100%;
    right: -50%;
    top: -30%;
  }

  .cta-box h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .cta-box p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .cta-buttons {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 14px;
    justify-content: center;
  }
}

/* Small mobile (below 576px) */
@media (max-width: 576px) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-box {
    padding: 32px 20px;
    border-radius: 18px;
  }

  .cta-box h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .cta-box p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cta-buttons {
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    max-width: 260px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .btn-primary i,
  .btn-outline i {
    font-size: 12px;
  }
}

/* Ensure container padding consistency */
.cta-section .container {
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cta-section .container {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .cta-section .container {
    padding: 0 16px;
  }
}