/* ============================================================
   CORPORATE SEO PAGE - SHOPIFY DESIGN SYSTEM
   ============================================================ */

/* --- GLOBAL PAGE TOKENS --- */
:root {
  --corp-primary: #e7181b;
  --corp-primary-hover: #bd1215;
  --corp-dark: #0a0a0a;
  --corp-dark-secondary: #111111;
  --corp-text: #0f172a;
  --corp-text-secondary: #475569;
  --corp-text-muted: #94a3b8;
  --corp-border: #e2e8f0;
  --corp-bg-light: #f8fafc;
  --corp-white: #ffffff;
  --corp-radius: 16px;
  --corp-radius-sm: 12px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.container {
  max-width: 1200px;
}
/* ============================================================
   1. HERO SECTION (Shopify Style - Centered + Stats Bar)
   ============================================================ */
.corporate-hero {
  background: var(--corp-dark);
  padding: 140px 24px 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

/* Grid Background */
.hero-grid-bg {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(#bf1a1a24 1px, transparent 1px),
    linear-gradient(90deg, #bf1a1a26 2px, transparent 2px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

.corporate-hero .glow-blob-hero {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.12) 0%,
    transparent 70%
  );
  top: -15%;
  right: -10%;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.corporate-hero .container {
  margin: 0 auto;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-content-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--corp-white);
  width: 100%;
  padding-bottom: 60px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--corp-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-badge .badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--corp-primary);
  animation: badge-pulse-animation 2s infinite;
}

/* Hero Title */
.corporate-hero .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  /* max-width: 800px; */
}

.corporate-hero .hero-title .highlight {
  color: var(--corp-primary);
}

/* Hero Description */
.corporate-hero .hero-desc {
  max-width: 900px;
  margin: 0 auto 32px;
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Hero Button */
.corporate-hero .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.corporate-hero .btn-primary {
  background: var(--corp-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.corporate-hero .btn-primary:hover {
  background: var(--corp-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(231, 24, 27, 0.35);
}

/* --- HERO STATS BAR --- */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 30px 24px;
}

.stats-grid {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--corp-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.stat-desc {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* Floating Enquire */
.float-enquire {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background: var(--corp-primary);
  color: var(--corp-white);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px 8px 0 0;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(231, 24, 27, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-enquire:hover {
  background: var(--corp-primary-hover);
  padding-bottom: 34px;
}

/* ============================================================
   2. SECTION HEADERS (Shopify Style)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header.text-left {
  text-align: left;
}

.badge-red {
  display: inline-block;
  color: var(--corp-primary);
  background: rgba(231, 24, 27, 0.06);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(231, 24, 27, 0.12);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--corp-text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title .highlight {
  color: var(--corp-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--corp-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-line {
  width: 50px;
  height: 3px;
  background: var(--corp-primary);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================================
   3. SERVICES GRID SECTION
   ============================================================ */
.services-grid-section {
  padding: 100px 24px;
  background: var(--corp-bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--corp-white);
  border: 1px solid var(--corp-border);
  border-radius: var(--corp-radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(231, 24, 27, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--corp-text);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--corp-primary);
  transition: width 0.3s ease;
}

.service-card:hover h3::after {
  width: 80px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--corp-text-secondary);
}

/* ============================================================
   4. DISCOVER BANNER (Shopify CTA Style)
   ============================================================ */
.discover-banner-section {
  padding: 60px 24px;
background: rgba(133, 2, 2, 0.03);




}

.discover-banner {
  background: var(--corp-dark-secondary);
  border-radius: var(--corp-radius);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.discover-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.discover-avatar-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.discover-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-text {
  color: var(--corp-white);
}

.discover-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}

.discover-text p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

.discover-banner .btn-primary {
  background: var(--corp-primary);
  color: #fff;
  padding: 14px 28px;
  /* border-radius: 8px; */
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.discover-banner .btn-primary:hover {
  background: var(--corp-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 24, 27, 0.3);
}

/* ============================================================
   5. STRATEGIC AUTOMATION SECTION
   ============================================================ */
.strategic-section {
  padding: 100px 24px;
  background: var(--corp-white);
}

.strategic-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: start;
}

.strategic-left {
  position: sticky;
  top: 120px;
}

.strategic-left .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.strategic-left p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--corp-text-secondary);
  margin-bottom: 20px;
}

.strategic-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- Card: Icon left, Content right (Image jaisa) ---- */
.strategy-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--corp-white);
  border: 1px solid var(--corp-border);
  border-radius: var(--corp-radius-sm);
  padding: 24px;
  transition: all 0.3s ease;
}


.strategy-card:hover{
    background: var(--corp-bg-light);
}

.strategy-card:hover {
  border-color: rgba(231, 24, 27, 0.15);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.strategy-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(231, 24, 27, 0.06);
  color: var(--corp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.strategy-card:hover .strategy-icon {
  background: var(--corp-primary);
  color: var(--corp-white);
}

.strategy-content {
  flex: 1;
}

.strategy-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--corp-text);
  margin-bottom: 8px;
}

.strategy-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--corp-text-secondary);
}
/* ============================================================
   6. WHY CORPORATE SEO SECTION
   ============================================================ */
.why-corporate-section {
  padding: 100px 24px;
  background: var(--corp-bg-light);
}

.why-corporate-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--corp-text-secondary);
}

.why-corporate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.corporate-card {
  background: var(--corp-white);
  border: 1px solid var(--corp-border);
  border-radius: var(--corp-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.corporate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(231, 24, 27, 0.12);
}

.corporate-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(231, 24, 27, 0.06);
  color: var(--corp-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.corporate-card:hover .corporate-icon {
  background: var(--corp-primary);
  color: var(--corp-white);
}

.corporate-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--corp-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.corporate-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--corp-text-secondary);
}

/* Responsive */
@media (max-width: 991px) {
  .why-corporate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-corporate-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   7. WHY CHOOSE SECTION (Shopify Why Founders Style)
   ============================================================ */
/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */

.why-choose-section {
  padding: 100px 24px;
  background: var(--corp-white);
}

/* ============================================================
   TWO COLUMN LAYOUT
   ============================================================ */

.why-choose-layout {
  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);

  gap: 70px;

  align-items: center;
}

/* ============================================================
   LEFT CONTENT AREA
   ============================================================ */

.why-choose-content-area {
  max-width: 760px;
}

.why-choose-content-area .section-header {
  text-align: left;

  max-width: 700px;

  margin-bottom: 42px;
}

/* ============================================================
   WHY CHOOSE LIST
   ============================================================ */

.why-choose-list {
  display: flex;

  flex-direction: column;

  gap: 0;

  max-width: 900px;
}

/* ============================================================
   ITEM
   ============================================================ */

.why-choose-item {
  position: relative;

  display: flex;

  gap: 20px;

  align-items: flex-start;

  padding: 24px 0;

  border-bottom: 1px solid var(--corp-border);

  transition:
    padding-left 0.3s ease,
    transform 0.3s ease;
}

.why-choose-item:first-child {
  padding-top: 0;
}

.why-choose-item:last-child {
  border-bottom: none;

  padding-bottom: 0;
}

/* ============================================================
   MARKER
   ============================================================ */

.choose-marker {
  position: relative;

  width: 40px;
  height: 40px;

  border-radius: 12px;

  background: rgba(231, 24, 27, 0.07);

  color: var(--corp-primary);

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 0.78rem;

  font-weight: 800;

  flex-shrink: 0;

  margin-top: 1px;

  border: 1px solid rgba(231, 24, 27, 0.1);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

/* ============================================================
   CONTENT
   ============================================================ */

.choose-content {
  flex: 1;
}

.choose-content h4 {
  font-size: 1.08rem;

  font-weight: 700;

  color: var(--corp-text);

  margin: 0 0 8px;

  line-height: 1.4;

  transition: color 0.3s ease;
}

.choose-content p {
  font-size: 0.94rem;

  line-height: 1.7;

  color: var(--corp-text-secondary);

  margin: 0;

  max-width: 720px;
}

/* ============================================================
   HOVER
   ============================================================ */

.why-choose-item:hover .choose-marker {
  background: var(--corp-primary);

  color: #ffffff;

  border-color: var(--corp-primary);

  transform: translateY(-2px);
}

.why-choose-item:hover .choose-content h4 {
  color: var(--corp-primary);
}

/* ============================================================
   IMAGE AREA
   ============================================================ */

.why-choose-image-area {
  width: 100%;
}

.why-choose-image {
  display: block;

  width: 100%;

  height: 540px;

  object-fit: cover;

  border-radius: 24px;

  transition: transform 0.5s ease;
}

.why-choose-image-area:hover .why-choose-image {
  transform: scale(1.015);
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {
  .why-choose-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .why-choose-content-area {
    max-width: 100%;
  }

  .why-choose-image-area {
    max-width: 700px;

    margin: 0 auto;
  }

  .why-choose-image {
    height: 450px;
  }
}

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

@media (max-width: 600px) {
  .why-choose-section {
    padding: 70px 20px;
  }

  .why-choose-layout {
    gap: 38px;
  }

  .why-choose-content-area .section-header {
    margin-bottom: 32px;
  }

  .why-choose-item {
    gap: 14px;

    padding: 20px 0;
  }

  .choose-marker {
    width: 36px;
    height: 36px;

    border-radius: 10px;

    font-size: 0.72rem;
  }

  .choose-content h4 {
    font-size: 1rem;

    margin-bottom: 7px;
  }

  .choose-content p {
    font-size: 0.89rem;

    line-height: 1.65;
  }

  .why-choose-image {
    height: 350px;

    border-radius: 19px;
  }

  .why-choose-item:hover {
    padding-left: 0;
  }
}

/* ============================================================
   8. COMMITMENT SECTION (Dark)
   ============================================================ */
.commitment-section {
  background: var(--corp-dark);
  padding: 100px 24px;
  color: var(--corp-white);
  position: relative;
  overflow: hidden;
}

.commitment-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.1) 0%,
    transparent 70%
  );
  top: -20%;
  left: -10%;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.commitment-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.commitment-content h2 span {
  color: var(--corp-primary);
}

.commitment-text-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.commitment-text-group p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94a3b8;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.commitment-list li i {
  color: var(--corp-primary);
  margin-top: 3px;
  font-size: 1.1rem;
}

.commitment-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.commitment-image-wrap img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: var(--corp-radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.commitment-image-wrap:hover img {
  transform: translateY(-5px);
}

/* ============================================================
   9. FAQ SECTION (Shopify Dark FAQ Style)
   ============================================================ */
.faq-section {
  background: var(--corp-dark-secondary);
  padding: 100px 24px;
  color: var(--corp-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 60px;
  align-items: start;
}

/* FAQ Form Card */
.faq-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--corp-radius);
  padding: 32px;
  position: sticky;
  top: 120px;
}

.faq-form-card > p:first-child {
  font-size: 0.85rem;
  color: var(--corp-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.faq-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.faq-form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.faq-form-control::placeholder {
  color: #64748b;
}

.faq-form-control:focus {
  border-color: var(--corp-primary);
  background: rgba(255, 255, 255, 0.08);
}

textarea.faq-form-control {
  resize: vertical;
  min-height: 80px;
}

.faq-submit-btn {
  width: 100%;
  background: var(--corp-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.faq-submit-btn:hover {
  background: var(--corp-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 24, 27, 0.3);
}

/* FAQ Right Column */
.faq-right-header {
  margin-bottom: 30px;
}

.faq-right-header .badge-red {
  margin-bottom: 12px;
}

.faq-main-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.faq-main-heading .highlight {
  color: var(--corp-primary);
}

.faq-subtext {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--corp-primary);
}

.faq-icon-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #94a3b8;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-trigger:hover .faq-icon-indicator {
  background: var(--corp-primary);
  color: #fff;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-panel {
  max-height: 500px;
  padding-bottom: 18px;
}

.faq-item.active .faq-icon-indicator {
  background: var(--corp-primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-content p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* Contact Alert */
.contact-alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.4s ease;
}

.contact-alert.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-alert.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

@keyframes badge-pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 24, 27, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(231, 24, 27, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 24, 27, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE: 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .corporate-hero .hero-title {
    font-size: 2.8rem;
  }

  .strategic-grid {
    gap: 50px;
  }

  .commitment-grid {
    gap: 50px;
  }

  .commitment-content h2 {
    font-size: 2rem;
  }
}

/* ============================================================
   RESPONSIVE: 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-corporate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategic-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .strategic-left {
    position: static;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .commitment-list {
    align-items: center;
  }

  .commitment-image-wrap img {
    max-width: 300px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-form-card {
    position: static;
  }
}

/* ============================================================
   RESPONSIVE: 991px
   ============================================================ */
@media (max-width: 991px) {
  .corporate-hero {
    padding: 120px 20px 0;
    min-height: auto;
  }

  .corporate-hero .hero-title {
    font-size: 2.4rem;
  }

  .corporate-hero .hero-desc {
    font-size: 1rem;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    flex: 1 1 40%;
    padding: 0 10px;
  }

  .stat-divider {
    display: none;
  }

  .discover-banner {
    flex-direction: column;
    text-align: center;
    padding: 35px 30px;
    gap: 25px;
  }

  .discover-left {
    flex-direction: column;
    gap: 16px;
  }

  .services-grid-section,
  .strategic-section,
  .why-corporate-section,
  .why-choose-section,
  .commitment-section,
  .faq-section {
    padding: 80px 20px;
  }
}

/* ============================================================
   RESPONSIVE: 768px
   ============================================================ */
@media (max-width: 768px) {
  .corporate-hero .hero-title {
    font-size: 2rem;
  }

  .corporate-hero .hero-desc {
    font-size: 0.95rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-corporate-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .discover-text h3 {
    font-size: 1.2rem;
  }

  .commitment-content h2 {
    font-size: 1.7rem;
  }

  .faq-main-heading {
    font-size: 1.7rem;
  }

  .faq-trigger {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  .float-enquire {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE: 480px
   ============================================================ */
@media (max-width: 480px) {
  .corporate-hero {
    padding: 100px 16px 0;
  }

  .corporate-hero .hero-title {
    font-size: 1.7rem;
  }

  .corporate-hero .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .corporate-hero .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-bar {
    padding: 20px 16px;
  }

  .stat-item {
    flex: 1 1 45%;
    padding: 0 5px;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  .stat-desc {
    font-size: 0.7rem;
  }

  .discover-banner {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .discover-avatar-wrap {
    width: 65px;
    height: 65px;
  }

  .services-grid-section,
  .strategic-section,
  .why-corporate-section,
  .why-choose-section,
  .commitment-section,
  .faq-section {
    padding: 60px 16px;
  }

  .service-card,
  .corporate-card {
    padding: 24px 20px;
  }

  .strategy-card {
    padding: 20px;
  }

  .faq-form-card {
    padding: 24px 20px;
  }

  .why-choose-item {
    gap: 16px;
  }

  .choose-marker {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .choose-content h4 {
    font-size: 1.05rem;
  }

  .commitment-content h2 {
    font-size: 1.45rem;
  }

  .commitment-list li {
    font-size: 0.9rem;
  }

  .faq-main-heading {
    font-size: 1.5rem;
  }
}

/* ============================================================
   MOBILE TYPOGRAPHY OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .corporate-hero .hero-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
  }

  .section-title,
  .faq-main-heading,
  .commitment-content h2 {
    font-size: 1.7rem !important;
    font-weight: 700 !important;
  }

  .discover-text h3,
  .faq-form-card h3,
  .choose-content h4,
  .strategy-card h4,
  .corporate-card h3,
  .service-card h3 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
  }

  .corporate-hero .hero-desc,
  .section-subtitle,
  .why-corporate-intro,
  .strategic-left p,
  .strategy-card p,
  .corporate-card p,
  .choose-content p,
  .commitment-text-group p,
  .faq-content p,
  .faq-subtext {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 480px) {
  .corporate-hero .hero-title {
    font-size: 1.55rem !important;
  }

  .section-title,
  .faq-main-heading,
  .commitment-content h2 {
    font-size: 1.45rem !important;
  }

  .discover-text h3,
  .faq-form-card h3,
  .choose-content h4,
  .strategy-card h4,
  .corporate-card h3,
  .service-card h3 {
    font-size: 1.1rem !important;
  }

  .corporate-hero .hero-desc,
  .section-subtitle,
  .why-corporate-intro,
  .strategic-left p,
  .strategy-card p,
  .corporate-card p,
  .choose-content p,
  .commitment-text-group p,
  .faq-content p,
  .faq-subtext {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }
}
