:root {
  --primary: #0d6efd;
  --primary-dark: #0b5ed7;
  --primary-soft: #e7f0ff;
  --dark: #0b1f3a;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #fff, var(--primary-soft));
  box-shadow: 0 8px 30px rgba(13,110,253,0.12);
  z-index: 999;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 58px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  margin: 0 16px;
  position: relative;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--primary);
  cursor: pointer;
}



/* RESPONSIVE */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: linear-gradient(180deg, #fff, var(--primary-soft));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 14px 0;
  }

 
}

@media (max-width: 576px) {

  .btn-primary,
  .btn-outline {
    width: 100%;
  }
}
/* =========================
   HERO
========================= */
.premium-hero {
  position: relative;              /* 🔥 REQUIRED for overlay */
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;

  background-image: url("./image/herobg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  overflow: hidden;
}

/* OVERLAY */
.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.37),
    rgba(255, 255, 255, 0.555)
  );
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.premium-hero > * {
  position: relative;
  z-index: 2;
}

/* =========================
   HERO LAYOUT
========================= */
.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  gap: 50px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.hero-content {
  flex: 1;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--dark);
  margin-top: 18px;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  margin-top: 16px;
  color: #333;              /* 🔥 white text hata diya (overlay hai) */
  line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
}

.btn-primary,
.btn-outline {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

/* =========================
   HERO FORM
========================= */
.hero-form-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-form {
  background: #fff;
  max-width: 420px;
  width: 100%;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(13,110,253,0.15);
}

.hero-form h3 {
  text-align: center;
  margin-bottom: 22px;
  color: var(--primary);
}

/* FORM FIELDS */
.pc-form-group {
  position: relative;
  margin-bottom: 18px;
}

.pc-form-group input,
.pc-form-group select,
.pc-form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.pc-submit-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}
/* =========================
   MOBILE HERO BACKGROUND
========================= */
@media (max-width: 576px) {
  .premium-hero {
    background-image: url("./image/mobilebg.jpg");
    background-position: center top;
    background-size: cover;
  }
}
/* =========================
   TABLET FORM WIDTH FIX
========================= */
@media (max-width: 991px) and (min-width: 577px) {

  .hero-form-box {
    width: 100%;
    justify-content: center;
  }

  .hero-form {
    max-width: 650px;   /* 🔥 pehle 420px thi */
    width: 100%;
    padding: 38px;
  }

}

/* MOBILE */
@media (max-width: 576px) {
  .premium-hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

  .hero-form {
    padding: 28px 22px;
  }
}


/* SERVICES SECTION */
.premium-services {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-soft), #ffffff);
}

.services-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: auto;
  margin-bottom: 70px;
}

.section-tag {
  background: rgba(13,110,253,0.15);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 2.5rem;
  color: var(--dark);
}

.section-head p {
  margin-top: 14px;
  color: #555;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden; /* 🔥 image edge clean */
  box-shadow: 0 25px 60px rgba(13,110,253,0.12);
  transition: 0.4s ease;
}

/* IMAGE FULL WIDTH */
.service-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 full width without stretch */
  transition: 0.5s ease;
}

/* CONTENT */
.service-body {
  padding: 26px 24px 32px;
  text-align: center;
}

.service-body h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  transition: 0.3s;
}

.service-body p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.65;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 85px rgba(13,110,253,0.25);
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card:hover h3 {
  color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-img {
    height: 170px;
  }
}


/* =========================
   ABOUT SECTION (PREMIUM)
========================= */
.about-premium {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    #ffffff
  );
  overflow: hidden;
}

.about-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ================= IMAGE SIDE ================= */
.about-image {
  flex: 1;
  position: relative;
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: 1s ease;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 35px 80px rgba(13,110,253,0.25);
}

/* BLUE GLOW */
.image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(13,110,253,0.35),
    transparent 70%
  );
  top: 10%;
  left: 10%;
  filter: blur(55px);
  z-index: 1;
}

/* ================= CONTENT SIDE ================= */
.about-info {
  flex: 1;
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease 0.2s;
}

.about-badge {
  display: inline-block;
  background: rgba(13,110,253,0.15);
  color: var(--primary);
  padding: 6px 22px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 18px;
}

.about-info h2 {
  font-size: 2.7rem;
  color: var(--dark);
  line-height: 1.3;
}

.about-info h2 span {
  color: var(--primary);
}

.about-info p {
  margin-top: 20px;
  font-size: 1.03rem;
  color: #555;
  line-height: 1.75;
}

/* ================= BUTTONS ================= */
.about-actions {
  margin-top: 36px;
  display: flex;
  gap: 20px;
}

.btn-fill {
  background: var(--primary);
  color: #fff;
  padding: 14px 38px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(13,110,253,0.35);
}

.btn-fill:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 38px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ================= ANIMATION SHOW ================= */
.fade-image.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .about-wrap {
    flex-direction: column;
    text-align: center;
  }

  .about-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-info h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-premium {
    padding: 80px 0;
  }

  .about-info h2 {
    font-size: 1.9rem;
  }

  .btn-fill,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}


/* =========================
   CTA SECTION (PREMIUM)
========================= */
.cta-premium {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    #ffffff
  );
  position: relative;
  overflow: hidden;
}

/* DECORATIVE BLUR */
.cta-premium::before,
.cta-premium::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(13,110,253,0.18);
  filter: blur(70px);
}

.cta-premium::before {
  width: 260px;
  height: 260px;
  top: -80px;
  left: -80px;
}

.cta-premium::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -80px;
}

/* CTA CARD */
.cta-wrapper {
  width: 90%;
  max-width: 900px;
  margin: auto;
  text-align: center;
  background: #ffffff;
  padding: 70px 60px;
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(13,110,253,0.18);
  position: relative;
  z-index: 1;

  opacity: 0;
  transform: translateY(50px);
  transition: 0.9s ease;
}

/* BADGE */
.cta-badge {
  display: inline-block;
  background: rgba(13,110,253,0.15);
  color: var(--primary);
  padding: 6px 22px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 18px;
}

/* TEXT */
.cta-wrapper h2 {
  font-size: 2.6rem;
  color: var(--dark);
  line-height: 1.3;
}

.cta-wrapper h2 span {
  color: var(--primary);
}

.cta-wrapper p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* PRIMARY */
.cta-btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 38px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(13,110,253,0.35);
}

.cta-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* OUTLINE */
.cta-btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 38px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* SHOW ANIMATION */
.fade-cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .cta-wrapper {
    padding: 50px 32px;
  }

  .cta-wrapper h2 {
    font-size: 2.1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-wrapper h2 {
    font-size: 1.8rem;
  }
}


/* =========================
   OUR PROCESS SECTION
========================= */
.process-section {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    #ffffff
  );
}

.process-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.process-header {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.process-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 700;
}

.process-header h2 {
  font-size: 2.6rem;
  margin-top: 12px;
  color: var(--dark);
}

.process-header p {
  margin-top: 14px;
  color: #555;
}

/* ================= GRID ================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.process-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 38px 28px;
  text-align: center;

  min-height: 360px;              /* SAME HEIGHT */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  box-shadow: 0 25px 60px rgba(13,110,253,0.12);
  transition: 0.4s ease;

  opacity: 0;
  transform: translateY(40px);
  position: relative;
  overflow: hidden;
}

/* ================= ICON ================= */
.process-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 18px;

  background: var(--primary-soft);
  color: var(--primary);
  box-shadow: 0 15px 40px rgba(13,110,253,0.25);
  transition: 0.4s ease;
}

/* REMOVE OLD COLOR CLASSES EFFECT */
.icon-green,
.icon-blue,
.icon-red,
.icon-orange {
  border: 3px solid var(--primary);
}

/* ================= STEP ================= */
.process-step {
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  transition: 0.3s ease;
}

/* ================= TEXT ================= */
.process-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
  transition: 0.3s ease;
}

.process-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* ================= HOVER EFFECT ================= */
.process-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    transparent
  );
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.process-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 45px 100px rgba(13,110,253,0.25);
  background: linear-gradient(
    180deg,
    #ffffff,
    var(--primary-soft)
  );
}

.process-item:hover::before {
  width: 80%;
}

.process-item:hover .process-icon {
  transform: scale(1.15) rotate(3deg);
  box-shadow: 0 22px 55px rgba(13,110,253,0.35);
}

.process-item:hover .process-step {
  background: var(--primary);
}

.process-item:hover h3 {
  color: var(--primary);
}

.process-item:hover p {
  color: #444;
}

/* ================= SHOW ANIMATION ================= */
.fade-process.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= DELAYS ================= */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-item {
    min-height: 340px;
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-header h2 {
    font-size: 2.1rem;
  }

  .process-item {
    min-height: auto;
  }
}
/* =========================
   REVIEW SECTION
========================= */
.pro-review-section {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    #ffffff
  );
}

.pro-review-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.pro-review-header {
  text-align: center;
  margin-bottom: 60px;
}

.pro-review-tag {
  display: inline-block;
  background: rgba(13,110,253,0.15);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
}

.pro-review-header h2 {
  font-size: 2.4rem;
  margin: 16px 0 10px;
  color: var(--dark);
}

.pro-review-header p {
  color: #555;
}

/* ================= SWIPER ================= */
.pro-review-swiper {
  padding-bottom: 20px;
}

/* ================= CARD ================= */
.pro-review-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  height: 360px;                 /* 🔥 SAME HEIGHT */
  box-shadow: 0 30px 70px rgba(13,110,253,0.15);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
}

.pro-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 100px rgba(13,110,253,0.25);
}

/* ================= USER ================= */
.pro-review-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pro-review-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-soft);
}

.pro-review-user h4 {
  font-size: 1.05rem;
  color: var(--dark);
}

.pro-review-user span {
  font-size: 0.85rem;
  color: var(--primary);
}

/* ================= STARS ================= */
.pro-review-stars {
  color: #f4b400;
  font-size: 16px;
  margin: 10px 0;
}

/* ================= TEXT ================= */
.pro-review-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .pro-review-card {
    height: auto;          /* 🔥 mobile auto height */
  }

  .pro-review-header h2 {
    font-size: 2rem;
  }
}


/* =========================
   CONTACT FORM SECTION
========================= */
.pc-contact-section {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    #ffffff
  );
}

.pc-contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT INFO */
.pc-contact-info {
  flex: 1;
}

.pc-tag {
  display: inline-block;
  background: rgba(13,110,253,0.15);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
}

.pc-contact-info h2 {
  font-size: 2.6rem;
  margin: 18px 0;
  color: var(--dark);
}

.pc-contact-info h2 span {
  color: var(--primary);
}

.pc-contact-info p {
  color: #555;
  line-height: 1.7;
}

.pc-contact-points {
  margin-top: 25px;
  list-style: none;
}

.pc-contact-points li {
  margin-bottom: 10px;
  color: #333;
}

/* FORM CARD */
.pc-contact-form {
  flex: 1;
  background: #ffffff;
  padding: 42px;
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(13,110,253,0.18);
}

/* FORM GROUP */
.pc-form-group {
  position: relative;
  margin-bottom: 22px;
}

.pc-form-group input,
.pc-form-group textarea,
.pc-form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
}

.pc-form-group textarea {
  resize: none;
}

.pc-form-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #777;
  pointer-events: none;
  transition: 0.3s;
  background: #fff;
  padding: 0 6px;
}

.pc-form-group textarea + label {
  top: 18px;
  transform: none;
}

/* FLOAT LABEL */
.pc-form-group input:focus + label,
.pc-form-group input:valid + label,
.pc-form-group textarea:focus + label,
.pc-form-group textarea:valid + label,
.pc-form-group select:focus + label {
  top: -8px;
  font-size: 12px;
  color: var(--primary);
}

/* SUBMIT BUTTON */
.pc-submit-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(13,110,253,0.35);
}

.pc-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* STATUS */
.pc-form-status {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

/* =========================
   CONTACT RESPONSIVE
========================= */
@media (max-width: 992px) {
  .pc-contact-container {
    flex-direction: column;
  }

  .pc-contact-info h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .pc-contact-info {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .pc-contact-form {
    padding: 30px 22px;
  }

  .pc-contact-info h2 {
    font-size: 1.9rem;
  }
}


/* =========================
   LOCATION MAP SECTION
========================= */
.loc-section {
  padding: 90px 0;
  background: #ffffff;
}

.loc-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.loc-header {
  text-align: center;
  max-width: 650px;
  margin: auto;
  margin-bottom: 40px;
}

.loc-tag {
  display: inline-block;
  background: rgba(13,110,253,0.15);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.loc-header h2 {
  font-size: 2.4rem;
  color: var(--dark);
}

.loc-header p {
  margin-top: 10px;
  color: #555;
  font-size: 1rem;
}

/* MAP BOX */
.loc-map-box {
  width: 100%;
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(13,110,253,0.18);
}

/* IFRAME */
.loc-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   MAP RESPONSIVE
========================= */
@media (max-width: 768px) {
  .loc-section {
    padding: 70px 0;
  }

  .loc-header h2 {
    font-size: 2rem;
  }

  .loc-map-box {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .loc-header h2 {
    font-size: 1.8rem;
  }

  .loc-map-box {
    height: 260px;
  }
}

/* =========================
   FOOTER (PREMIUM BLUE)
========================= */
footer {
  background: linear-gradient(
    180deg,
    #0b1f3a,
    #08162b
  );
  color: #e5e7eb;
  padding: 90px 20px 30px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* ================= BRAND ================= */
.footer-brand i {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 15px;
}

.footer-brand h2 {
  font-size: 26px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.9;
  color: #cbd5e1;
  max-width: 360px;
}

/* ================= FOOTER BOX ================= */
.footer-box h3 {
  font-size: 20px;
  margin-bottom: 22px;
  color: #ffffff;
  position: relative;
}

.footer-box h3::after {
  content: '';
  width: 42px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 10px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #cbd5e1;
}

/* LINKS */
.footer-box ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-box ul li a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* ================= CONTACT ================= */
.contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.7;
}

.contact i {
  color: var(--primary);
  margin-top: 4px;
  font-size: 15px;
}

/* ================= COPYRIGHT ================= */
.copyright {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.copyright a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.copyright a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  footer {
    text-align: center;
    padding: 70px 20px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand p {
    margin: auto;
  }

  .footer-box h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact li {
    justify-content: center;
  }
}
