/* === Process Banner Section === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Mulish', sans-serif;
}


/* ===============================
   OUR BRAND SECTION
=============================== */
.brand-section {
  position: relative;
  background: url('../images/Frame\ 20.png') center/cover no-repeat;
  padding: 80px 10%;
  overflow: hidden;
}

/* Container */
.brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Left text area */
.brand-content {
  flex: 1;
  max-width: 45%;
  color: #000000;
  z-index: 2;
  margin-top: 4%;
}

.brand-content h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}

.brand-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  text-align: left;
  font-weight: 700;
}

/* Right side (slanted shape with video) */
.brand-video-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

}

.brand-video-shape {
  width: 673px;
  height: 391px;
  background: #333;
  transform: rotate(-25deg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  margin-right: -283px;

}

.brand-video-shape video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-14deg) scale(1.4);
  position: absolute;
  top: 0;
  left: 0;
}

/* ===============================
   RESPONSIVE DESIGN
=============================== */

/* For tablets (max 1024px) */
@media (max-width: 1024px) {
  .brand-section {
    padding: 60px 6%;
  }

  .brand-video-area {
    display: none;
  }

  .brand-container {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    text-align: center;
  }

  .brand-content {
    max-width: 90%;
    margin-top: 0;
    text-align: center;
  }

  .brand-content h1 {
    font-size: 28px;
  }

  .brand-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .brand-video-shape {
    width: 500px;
    height: 290px;
    transform: rotate(-20deg);
    margin: 40px 0 0 0;
  }

  .brand-video-shape video {
    transform: rotate(-10deg) scale(1.3);
  }
}

/* For small tablets and large phones (max 768px) */
@media (max-width: 768px) {
  .brand-section {
    padding: 50px 5%;
  }

  .brand-content h1 {
    font-size: 24px;
  }

  .brand-content p {
    font-size: 13px;
  }

  .brand-video-shape {
    width: 400px;
    height: 240px;
    transform: rotate(-18deg);
  }

  .brand-video-shape video {
    transform: rotate(-8deg) scale(1.2);
  }
}

/* For mobile (max 600px) */
@media (max-width: 600px) {
  .brand-section {

    padding: 120px 5% 80px 5%;
    /* Large top padding to clear fixed header */
    min-height: 450px;
    /* Ensure section has enough height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: top center;
    /* Stick background to top for consistency */
  }

  .brand-video-area {
    display: none;
  }

  .brand-container {
    flex-direction: column;
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .brand-content {
    max-width: 100%;
    position: relative;
    text-align: center;
    order: 1;
    margin-bottom: 30px;
    /* Space between text and video shape */
  }

  .brand-video-area {
    order: 2;
    margin-top: 30px;
  }

  .brand-content h1 {
    font-size: 22px;
  }

  .brand-content p {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    /* Changed from justify to center */
  }

  .brand-video-shape {
    width: 60%;
    /* Reduced width for mini slant on small screens */
    max-width: 280px;
    height: 160px;
    transform: rotate(-10deg);
    /* Reduced rotation for better visibility */
    margin: 20px auto;
    margin-right: 0;
    /* Align right to match desktop vibe but centered effectively by max-width/margin auto */
  }

  .brand-video-shape video {
    transform: rotate(-8deg) scale(1.3);
    /* Adjusted scale */
  }
}


/* ===============================
   WHO WE ARE SECTION
=============================== */
.who-we-are {
  background: #000000;
  color: #fff;
  padding: 80px 10%;

}

.who-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* Left column */
.who-left {
  flex: 1.2;
  margin-left: -72px;
}

.who-left h2 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 25px;
}

.who-left p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #FFFFFF;
  text-align: justify;
}

/* Right column */
.who-right {
  flex: 0.8;
  margin-top: 8%;
}

.who-right p {
  font-size: 15px;
  line-height: 1.8;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: justify;
  margin-left: 12px;
}

/* ===============================
   RESPONSIVE DESIGN
=============================== */

/* For tablets (max 1024px) */
@media (max-width: 1024px) {
  .who-we-are {
    padding: 70px 8%;
  }

  .who-container {
    gap: 40px;
  }

  .who-left {
    margin-left: 0;
  }

  .who-left h2 {
    font-size: 38px;
  }

  .who-left p,
  .who-right p {
    font-size: 14px;
    line-height: 1.7;
  }

  .who-right {
    margin-top: 4%;
  }
}

/* For small tablets (max 768px) */
@media (max-width: 768px) {
  .who-we-are {
    padding: 60px 6%;
  }

  .who-container {
    flex-direction: column;
    gap: 30px;
  }

  .who-left {
    margin-left: 0;
    text-align: center;
  }

  .who-left h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .who-left p {
    font-size: 14px;
    text-align: justify;
  }

  .who-right {
    margin-top: 0;
  }

  .who-right p {
    font-size: 14px;
    margin-left: 0;
    text-align: justify;
  }
}

/* For mobile devices (max 600px) */
@media (max-width: 600px) {
  .who-we-are {
    padding: 50px 5%;
  }

  .who-container {
    flex-direction: column;
    gap: 25px;
  }

  .who-left {
    margin-left: 0;
    text-align: center;
  }

  .who-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .who-left p,
  .who-right p {
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
  }

  .who-right {
    margin-top: 0;
  }
}


/* ===========================================
   PURPOSE / PROMISE / MISSION / VALUES Section
=========================================== */
.pmv-section {
  height: 450px;
  position: relative;
  background: url('../images/2149325411 1.png') center center/cover no-repeat;
  transition: background 0.9s ease-in-out;
  overflow: hidden;
  color: #fff;
}

/* Backgrounds for each section */
.purpose-bg {
  background: url("../images/Group\ 8.png") center center/cover no-repeat;
}

.promise-bg {
  background: url("../images/Group\ 9.png") center center/cover no-repeat;
}

.mission-bg {
  background: url("../images/Group\ 11.png") center center/cover no-repeat;
}

.values-bg {
  background: url("../images/Group\ 12.png") center center/cover no-repeat;
}

/* center overlay with four words horizontally */
.pmv-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
  z-index: 2;
  text-transform: uppercase;
}

.pmv-item {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  margin: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.pmv-item:hover {
  color: #d61c4e;
  transform: translateY(-4px) scale(1.03);
}

/* Detail view (hidden initially) */
.pmv-detail {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  padding: 60px 80px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* when active, show details */
.pmv-section.detail-active .pmv-detail {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* hide overlay when detail active */
.pmv-section.detail-active .pmv-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* left content */
.pmv-detail-left {
  max-width: 780px;
  color: #fff;
}

.pmv-detail-left h3 {
  font-size: 36px;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pmv-detail-left p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  color: #fff;
  max-width: 680px;
}

/* right vertical list */
.pmv-detail-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pmv-detail-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pmv-detail-right li {
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 0;
  opacity: 0.95;
}

.pmv-detail-right li:hover {
  color: #d61c4e;
  transform: translateX(6px);
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Close button */
.pmv-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 6;
}

/* responsive */
@media (max-width: 900px) {
  .pmv-overlay {
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
  }

  .pmv-item {
    font-size: 22px;
  }

  .pmv-detail {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    text-align: center;
    overflow-y: auto;
  }

  .pmv-detail-right {
    margin-top: 20px;
  }

  .pmv-detail-left p {
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .pmv-section {
    height: auto;
    min-height: 500px;
  }

  .pmv-overlay {
    flex-direction: column;
    justify-content: center;
    gap: 25px;
  }

  .pmv-item {
    font-size: 22px;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
  }

  .pmv-item:last-child {
    border-bottom: none;
  }

  .pmv-detail {
    padding: 60px 20px 20px 20px;
  }

  .pmv-detail-left h3 {
    font-size: 28px;
  }

  .pmv-close {
    top: 15px;
    right: 15px;
  }
}

/* animation for smooth fade-in */
.pmv-detail-left,
.pmv-detail-right ul {
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.pmv-section.detail-active .pmv-detail-left,
.pmv-section.detail-active .pmv-detail-right ul {
  transform: translateY(0);
  opacity: 1;
}




/* ============================
   BRAND HIGHLIGHTS SECTION
============================ */
.brand-highlights {
  background: #f8f5f0;
  padding: 0px 80px;
  position: relative;
  overflow: hidden;
}

.brand-header {
  margin-top: 4%;
}

/* Header */
.brand-highlights .brand-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 38px;
}

/* Arrows */
.brand-slider-controls {
  position: absolute;
  top: 50px;
  right: 80px;
}

.brand-slider-controls .arrow {
  background: #e5e1da;
  border: none;
  padding: 8px 12px;
  margin-left: 6px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  transition: 0.3s;
}

.brand-slider-controls .arrow:hover {
  background: #d61c4e;
  color: #fff;
}

/* Scroll Wrapper */
.brand-cards-wrapper {
  overflow: hidden;
  position: relative;
}

/* Cards Container */
.brand-cards {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  scroll-snap-type: x proximity;
  /* less strict snap */

}

/* Individual Card */
.brand-card {
  background: #fff;
  width: 23%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
}

/* Image area */
.image-container {
  position: relative;
  width: 100%;
  height: 265px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 147%;
  object-fit: cover;
}

/* Button Tag */
.tag-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}

.tag-btn:hover {
  background: #d61c4e;
}

/* Card Text */
.card-content {
  background: #781919;
  color: #fff;
  padding: 12px 14px;
  flex-grow: 1;
}

.card-content p {
  font-size: 13px;
  margin: 0 0 10px 0;
}

.card-content a {
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  margin-left: 145px;
}

.card-content a:hover {
  text-decoration: underline;
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */

/* Tablet View (1024px - 768px) */
@media (max-width: 1024px) {
  .brand-highlights {
    padding: 40px 50px;
  }

  .brand-highlights .brand-header h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .brand-slider-controls {
    top: 35px;
    right: 50px;
  }

  .brand-cards {
    gap: 16px;
  }

  .brand-card {
    width: 30%;
  }

  .image-container {
    height: 220px;
  }

  .card-content p {
    font-size: 12.5px;
  }

  .card-content a {
    font-size: 11.5px;
    margin-left: 110px;
  }
}

/* Mobile View (≤767px) */
@media (max-width: 767px) {
  .brand-highlights {
    padding: 20px 0;
    overflow-x: hidden;
  }

  .brand-highlights .brand-header h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
  }

  .brand-slider-controls {
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  /* Make wrapper scrollable (for swipe) but visible */
  .brand-cards-wrapper {
    overflow: hidden;
    overflow-x: auto;
    /* ensures smooth scroll */
    scroll-padding-right: 40px;
    /* 👈 ensures last card fully visible */
    width: 100%;
  }

  /* Cards container stays inline for JS arrow scroll */
  .brand-cards {
    display: flex;
    transition: transform 0.5s ease;
    gap: 12px;
    padding: 0 15px;
  }

  .brand-card {
    width: 85%;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 8px;
    padding-right: 20px;
    /* 👈 adds space at end */

  }

  .image-container {
    height: 180px;
  }

  .card-content {
    text-align: center;
    padding: 2px;
  }

  .card-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .card-content a {
    display: inline-block;
    margin-top: 8px;
    margin-left: 0;
    /* Reset desktop margin */
    font-size: 12px;
  }
}


/* ============================
   OUR BRAND KIT SECTION
============================ */
.brand-kit {
  background: #fff;
  padding: 100px 80px;
}

.brand-kit-container {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-kit-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

/* ============================
   LEFT TEXT
============================ */
.brand-kit-text {
  flex: 1;
}

.brand-kit-text h2 {
  font-size: 37px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.brand-kit-text p {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  max-width: 420px;
}

/* ============================
   LOGO CARD
============================ */
.logo-card {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* TOP LOGO */
.logo-top {
  background: #000;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 145px;
  overflow: hidden;
}

.logo-top img {
  max-width: 280px;
  height: auto;
}

/* BOTTOM LOGOS */
.logo-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100px;
}

.logo-box {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-box.white {
  background: #fff;
}

.logo-box.gray {
  background: #a8a4a4;
}

.logo-box img {
  max-width: 120px;
  height: auto;
}

/* LOGO FOOTER */
.logo-footer {
  background: #781919;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-footer span {
  font-size: 14px;
  font-weight: 600;
}

/* ============================
   RIGHT CONTENT
============================ */
.brand-kit-right {
  flex: 1.2;
}

/* ============================
   VIDEO CARD
============================ */
.video-card {
  position: relative;
  width: 100%;
}

.video-card iframe {
  width: 100%;
  height: 280px;
  border: none;
}

.video-overlay {
  background: #781919;
  color: #fff;
  padding: 12px 16px;
}

.video-overlay p {
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* ============================
   BROCHURE CARD (UPDATED)
============================ */
.brochure-card {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* ============================
   TEMPLATE CARD (NEW)
============================ */
.template-card {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.template-card img {
  width: 100%;
  height: auto;
  flex-grow: 1;
  object-fit: cover;
}

.brand-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.brochure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Common Visual Wrapper for Equal Height */
.card-visual {
  height: 245px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.template-visual-bg {
  background-image: url('../images/slide-template-dark.png');
  background-size: cover;
  background-position: top center;
  height: 100%;
  width: 100%;
}

/* BROCHURE FOOTER */
.brochure-footer {
  background: #781919;
  border-top: 0px solid #e5e5e5;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brochure-footer span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* DOWNLOAD BUTTON */
.download-btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ============================
   RESPONSIVE STYLES
============================ */

/* Tablet & Small Laptop */
@media (max-width: 1024px) {
  .brand-kit {
    padding: 80px 50px;
  }

  .brand-kit-top {
    flex-direction: column;
    text-align: center;
  }

  .brand-cards-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }


  .brand-kit-text p {
    margin: 0 auto;
  }

  .logo-card,
  .brochure-card,
  .template-card {
    margin: 0 auto;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .brand-kit {
    padding: 70px 30px;
  }

  .brand-kit-text h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .brand-kit {
    padding: 40px 20px;
  }

  .brand-kit-text h2 {
    font-size: 28px;
  }

  .logo-card {
    width: 100%;
    margin-top: 30px;
  }

  .logo-top img {
    max-width: 100%;
  }

  .logo-bottom {
    grid-template-columns: 1fr;
  }

  .video-card iframe {
    height: 200px;
  }

  .brochure-card {
    width: 100%;
  }

  .brochure-footer span {
    font-size: 14px;
  }

  .download-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}




/* ============================
   CONTACT SECTION
============================ */
.contact-section {
  background: url("../images/Frame\ 20\ \(2\).png") center center/cover no-repeat;
  padding: 5px 67px;
  position: relative;
  color: #fff;
}

.contact-overlay {
  padding: 60px 70px;
  border-radius: 6px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

/* Left Content */
.contact-left {
  flex: 1;
  margin-top: 13%;
}

.contact-left h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
}

.contact-left p {
  font-size: 23px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Right Form */
.contact-right {
  flex: 1;
  padding: 30px 35px;
  border-radius: 6px;
}

.contact-right h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  flex: 1;
  position: relative;
}

label {
  font-size: 13px;
  color: #fff;
  margin-bottom: 5px;
}

/* Inputs & Textarea */
input,
textarea {
  padding: 8px 10px;
  font-size: 13px;
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-bottom-color: #d61c4e;
}

/* ============================
   ⭐ SERVICE TYPE DROPDOWN (FIXED)
============================ */
.service-type-group {
  padding-bottom: 130px;
  /* ✅ forces dropdown to open DOWN */
}

select#serviceType {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: transparent;
  color: #fff;
  font-size: 13px;

  padding: 10px 38px 10px 10px;
  margin-top: 6px;
  /* ✅ space from label */

  border: none;
  border-bottom: 1px solid #aaa;
  outline: none;
  cursor: pointer;

  transition: all 0.3s ease;

  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

select#serviceType:focus {
  border-bottom-color: #d61c4e;
}

select#serviceType option {
  color: #000;
}

/* Error */
.error-message {
  font-size: 12px;
  color: #ff4d4d;
  margin-top: 2px;
  height: 14px;
}

/* Submit Button */
.submit-btn {
  background: #d61c4e;
  border: none;
  color: #fff;
  padding: 11px 35px;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
  margin-left: 35%;
}

.submit-btn:hover {
  background: #b21740;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .contact-section {
    padding: 50px 40px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-right {
    width: 80%;
  }

  .submit-btn {
    margin: 25px auto 0;
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-right {
    width: 100%;
  }

  select#serviceType {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 10px 10px;
  }

  .contact-overlay {
    padding: 30px 20px;
  }

  .contact-left h2 {
    font-size: 32px;
  }

  .contact-left p {
    font-size: 16px;
  }

  .contact-right {
    padding: 20px 15px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .service-type-group {
    padding-bottom: 20px;
    /* Reduced excessive padding */
    margin-bottom: 20px;
  }

  select#serviceType {
    font-size: 13px;
    padding: 8px 36px 8px 8px;
  }

  .submit-btn {
    width: 100%;
    margin: 20px 0 0;
    display: block;
  }
}