/* ============================================================
   GREEN SIGMA — CONTACT US PAGE STYLES
   File: assets/css/contactus.css
   ============================================================ */

:root {
  --gs-forest-950: #0a2e22;
  --gs-forest-900: #0f3d2e;
  --gs-forest-700: #146c43;
  --gs-forest-500: #1e9e5c;
  --gs-mint-400: #4cc185;
  --gs-mint-100: #eaf7ee;
  --gs-bg: #f7faf8;
  --gs-card: #ffffff;
  --gs-border: #e0ece4;
  --gs-ink: #14201a;
  --gs-ink-muted: #5c6b62;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--gs-bg);
  color: var(--gs-ink);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--gs-forest-700);
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-block;
  background: var(--gs-forest-900);
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gs-forest-700);
}

/* ============================================================
   HEADER
   ============================================================ */

.gs-header {
  background: #ffffff;
  border-bottom: 0.5px solid var(--gs-border);
  padding: 14px 0;
}

.gs-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gs-header .logo img {
  height: 34px;
  display: block;
}

.gs-header nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.gs-header nav ul a {
  color: var(--gs-ink);
  font-weight: 500;
}

.gs-header nav ul a:hover {
  color: var(--gs-forest-700);
}

/* ============================================================
   HERO
   ============================================================ */

.contact-hero {
  background: linear-gradient(180deg, #eef4f0, var(--gs-bg));
  padding: 48px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content .tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gs-forest-500);
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero-content h1 span {
  color: var(--gs-forest-500);
  display: block;
}

.hero-content p {
  color: var(--gs-ink-muted);
  font-size: 1rem;
  max-width: 46ch;
  margin: 0 0 20px;
}

.response-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 0.5px solid var(--gs-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--gs-ink);
}

.response-box i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gs-mint-100);
  color: var(--gs-forest-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--gs-mint-100) 0%, rgba(234, 247, 238, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* ============================================================
   CONTACT SECTION — FORM + INFO
   ============================================================ */

.contact-section {
  padding: 56px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form-card {
  background: #ffffff;
  border: 0.5px solid var(--gs-border);
  border-radius: 16px;
  padding: 32px;
}

.contact-form-card h2 {
  font-size: 1.35rem;
  margin: 0 0 4px;
}

.contact-form-card > p {
  color: var(--gs-ink-muted);
  font-size: 0.9rem;
  margin: 0 0 24px;
}

.input-box {
  position: relative;
  margin-bottom: 14px;
}

.input-box input,
.input-box select {
  width: 100%;
  padding: 12px 40px 12px 14px;
  border: 0.5px solid var(--gs-border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gs-ink);
  background: #ffffff;
  appearance: none;
}

.input-box i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gs-ink-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.input-box select {
  cursor: pointer;
}

.input-box input:focus,
.input-box select:focus {
  outline: none;
  border-color: var(--gs-forest-500);
}

.contact-form-card textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px 14px;
  border: 0.5px solid var(--gs-border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gs-ink);
  resize: vertical;
  margin-bottom: 14px;
}

.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--gs-forest-500);
}

.submit-btn {
  width: 100%;
  background: #080a08;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.submit-btn:hover {
  background: var(--gs-forest-700);
}

.contact-form-card small {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gs-ink-muted);
  margin-top: 12px;
}

.contact-form-card small i {
  color: var(--gs-forest-500);
}

/* ---- Right side: Other Ways to Reach Us ---- */

.contact-details h2 {
  font-size: 1.2rem;
  margin: 0 0 20px;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--gs-border);
}

.info-card:last-child {
  border-bottom: none;
}

.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #080a08;
  color: #42d85b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.info-card h3 {
  font-size: 0.98rem;
  margin: 0 0 4px;
}

.info-card p,
.info-card span {
  font-size: 0.85rem;
  color: var(--gs-ink-muted);
  margin: 0;
  display: block;
}

/* ============================================================
   WHY CONTACT
   ============================================================ */

.why-contact {
  background: #eef2ef;
  padding: 56px 0;
}

.why-contact h2 {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}

.why-item i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 0.5px solid var(--gs-border);
  color: var(--gs-forest-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
}

.why-item span {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

/* ============================================================
   FAQ
   ============================================================ */

.contact-faq {
  padding: 56px 0;
}

.contact-faq h2 {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 32px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.faq-card {
  background: #ffffff;
  border: 0.5px solid var(--gs-border);
  border-radius: 10px;
  padding: 18px;
}

.faq-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  padding-right: 20px;
  position: relative;
}

.faq-card h3::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 0.75rem;
  color: var(--gs-forest-500);
}

.faq-card p {
  font-size: 0.85rem;
  color: var(--gs-ink-muted);
  margin: 10px 0 0;
}

/* ============================================================
   CTA
   ============================================================ */

/*==========================
  GOOGLE MAP SECTION
==========================*/

.gs-location-map{
    margin-top: 25px;
    width: 100%;
    max-width: 420px;   /* Reduce map width */
    height: 170px;      /* Reduce map height */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dfe8e2;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.gs-location-map iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

/*==========================
 MOBILE
==========================*/

@media(max-width:991px){

.gs-location-wrapper{

    grid-template-columns:1fr;

}

.gs-location-map iframe{

    height:300px;

}

.gs-location-card{

    padding:30px;

}

.gs-location-card h2{

    font-size:28px;

}

.gs-phone h3{

    font-size:28px;

}

.gs-phone-icon{

    width:60px;
    height:60px;
    font-size:20px;

}

}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--gs-forest-950);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
  .gs-header nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
}