* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Crimson Pro", serif;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* ===== SECTION 1: HERO ===== */
.hero {
  background-color: #b80d0d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 40px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.logo-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links li a {
  color: white;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s;
}
.nav-links li a.active {
  color: #102a43;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nav-links li a:hover {
  color: #102a43;
  opacity: 1;
}
.nav-links li a i {
  font-size: 10px;
  margin-left: 4px;
}
.btn-quote {
  background-color: #102a43;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s;
}
.btn-quote:hover {
  background-color: #1a3a5c;
}
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
  padding: 40px 0 80px;
}
.hero-text {
  max-width: 520px;
}
.hero-title {
  font-family: "Crimson Pro", serif;
  font-size: 68px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 28px;
}
.hero-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 380px;
}
.btn-started {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #102a43;
  color: white;
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
}
.btn-started:hover {
  background-color: #1a3a5c;
}
.btn-started i {
  font-size: 12px;
}
.hero-image {
  flex-shrink: 0;
}
.hero-image-clip {
  width: 420px;
  height: 500px;
  /* clip-path: polygon(12% 0%, 100% 0%, 100% 88%, 88% 100%, 0% 100%, 0% 12%); */
  position: relative;
  /* background: #102a43; */
  padding: 5px;
}

/* ===== SECTION 1: HERO IMAGE MOBILE SIZE FIX ===== */
.hero-image-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* clip-path: polygon(12% 0%, 100% 0%, 100% 88%, 88% 100%, 0% 100%, 0% 12%); */
}

/* ===== SECTION 2: PRODUCTS ===== */
.products-section {
  padding: 80px 0 60px;
  background: white;
}
.products-label {
  text-align: center;
  color: #b80d0d;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.products-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 16px;
}
.products-description {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.product-card {
  background: #f2f2f2;
  padding: 40px 20px 30px;
  text-align: center;
  border: 0.5px solid #e8e8e8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-icon {
  display: block;
  margin: 0 auto 16px;
  height: 70px;
  width: auto;
  max-width: 80px;
  background: transparent;
  object-fit: contain;
}
.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin: 0;
}
.products-cta {
  text-align: center;
  margin-top: 50px;
}
.btn-products {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #3d5a73;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
}
.btn-products:hover {
  background-color: #102a43;
}
.btn-products i {
  font-size: 13px;
}
.section-label {
  color: #b80d0d;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-family: "Crimson Pro", serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* ===== SECTION 3: WHY CHOOSE US ===== */
.why-section {
  padding: 100px 0;
  background: #faf6f2;
}
.why-layout {
  display: flex;
  gap: 60px;
  align-items: stretch;
}
.why-left {
  flex: 0 0 40%;
  position: relative;
  display: flex;
}
.why-image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
}
.why-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.why-overlay-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #b80d0d;
  color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 260px;
  text-align: center;
}
.why-overlay-icon {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
}
.why-overlay-card p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.why-overlay-card strong {
  font-weight: 700;
}
.why-right {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
}
.why-right .section-title {
  font-family: "Crimson Pro", serif;
  font-size: 45px;
  margin-bottom: 36px;
}
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: space-between;
}
.why-card {
  background: #f1eae4;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex: 1;
}
.why-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #b80d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.why-card-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.why-card-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* ===== SECTION 4: ABOUT US ===== */
.about-section {
  padding: 80px 0;
  background: white;
}
.about-top {
  display: flex;
  gap: 50px;
  align-items: stretch;
  margin-bottom: 40px;
}
.about-image-col {
  flex: 0 0 38%;
}
.about-image-wrapper {
  position: relative;
  height: 100%;
}
.about-portrait {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #b80d0d;
  display: block;
}
.about-name-card {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #faf6f2;
  padding: 14px 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.about-name-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.about-name-card p {
  font-size: 12px;
  color: #666;
}
.about-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.about-content-card {
  background: #fcf4ee;
  padding: 36px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.about-description {
  color: #000000;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 500px;
}
.about-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.about-phone-icon {
  width: 44px;
  height: 44px;
  padding: 5px;
  flex-shrink: 0;
  background-color: #b80d0d;
  border-radius: 8px;
}
.about-phone-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-contact-text span {
  font-size: 12px;
  color: #000000;
  display: block;
}
.about-contact-text strong {
  font-size: 15px;
  color: #000000;
  font-weight: 700;
}
.about-illustration {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 250px;
}
/* Middle Cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.about-card {
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  height: 100%;
}
.about-card-red {
  background: #b80d0d;
  color: white;
}
.about-card-beige {
  background: #faf6f2;
  gap: 10px;
  border: 1px solid #e8ddd5;
}
.about-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.about-card-red h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-card-red p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}
.about-card-avatars {
  display: flex;
  gap: -8px;
  margin-bottom: auto;
}
.mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #b80d0d;
  margin-left: -8px;
  object-fit: cover;
}
.mini-avatar:first-child {
  margin-left: 0;
}
.mini-avatar-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b80d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  margin-left: -8px;
}
.about-claim-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 10px;
}
.about-claim-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-claim-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #b80d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.about-claim-row span {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.about-progress-bar {
  height: 6px;
  background: #ecc1c1;
  border-radius: 4px;
  overflow: hidden;
}
.about-progress-fill {
  width: 95%;
  height: 100%;
  background: #b80d0d;
  border-radius: 4px;
}
.about-testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: auto;
}
.about-testimonial-author {
  margin-top: 20px;
}
.about-testimonial-author strong {
  display: block;
  font-size: 15px;
}
.about-testimonial-author span {
  font-size: 12px;
  opacity: 0.7;
}
/* Bottom Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.about-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about-stat h3 {
  font-family: "Crimson Pro", serif;
  font-size: 56px;
  font-weight: 700;
  color: #b80d0d;
  line-height: 1;
}
.about-stat span {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  max-width: 80px;
}

/* ===== SECTION 5: CONTACT FORM ===== */
.contact-section {
  background: url("Assets/get-free-quot-BG.jpg") center/cover no-repeat;
  padding: 80px 120px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  display: none;
}
.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-left {
  flex: 1;
}
.contact-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}
.contact-heading {
  font-family: "Crimson Pro", serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin-bottom: 18px;
}
.contact-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 420px;
}
.contact-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
}
.contact-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
  font-weight: 500;
}
.contact-feature i {
  font-size: 14px;
  opacity: 0.9;
}
.contact-right {
  flex: 1;
}
.contact-form {
  padding: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row-full {
  grid-template-columns: 1fr;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #ffffff26;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Crimson Pro", serif;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.7)' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  color: rgba(255, 255, 255, 0.6);
}
.contact-form select option {
  background: #333;
  color: white;
}
.contact-form textarea {
  resize: none;
  min-height: 80px;
}
.btn-subscribe {
  background: #0f2a44;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 4px;
}
.btn-subscribe:hover {
  background: #1a3f5c;
}

/* ===== SECTION 6: FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: white;
}
.faq-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.faq-label {
  text-align: center;
  margin-bottom: 12px;
}
.faq-list {
  max-width: 945px;
  margin: 0 auto;
}
.faq-item {
  background: #fcf4ee;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(3, 74, 70, 0.2);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: #1a1a1a;
  transition: background 0.3s;
}
.faq-question:hover {
  background: rgba(171, 11, 11, 0.05);
}
.faq-question i {
  font-size: 12px;
  color: #666;
  transition: transform 0.3s;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 30px 20px;
  max-height: 200px;
}
.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ===== SECTION 7: FOOTER ===== */
.site-footer {
  background: url("Assets/Footer BG image.jpg") center/cover no-repeat;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-pattern {
  display: none;
}
.footer-pattern-img {
  display: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
}
.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 38px;
  width: auto;
}
.footer-logo-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
  display: block;
}
.footer-logo-sub {
  font-size: 10px;
  color: #888;
  display: block;
}
.footer-brand-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 320px;
}
.footer-links-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.footer-links-col ul li {
  margin-bottom: 14px;
}
.footer-links-col ul li a {
  font-size: 14px;
  color: #555;
  transition: color 0.3s;
}
.footer-links-col ul li a:hover {
  color: #b80d0d;
}
.footer-contact-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-contact-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-label {
  display: block;
  font-size: 12px;
  color: #888;
}
.footer-contact-value {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}
.footer-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bar p {
  font-size: 13px;
  color: #888;
}
.footer-bar-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-bar-links a {
  font-size: 13px;
  color: #555;
  transition: color 0.3s;
}
.footer-bar-links a:hover {
  color: #b80d0d;
}
.footer-bar-links span {
  color: #ccc;
  font-size: 13px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b80d0d;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 500;
}
.mobile-nav .close-btn {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1441px) {
  .container {
    max-width: 1360px;
  }
  .hero-title {
    font-size: 76px;
  }
}
@media (max-width: 1280px) {
  .container {
    margin: 20px auto;
    padding: 0 32px;
  }
  .hero-title {
    font-size: 58px;
  }
  .hero-image-clip {
    width: 360px;
    height: 430px;
  }
  .services-layout {
    gap: 40px;
  }
  .products-section .services-left {
    flex: 0 0 250px;
  }
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-bottom: 60px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-clip {
    width: 320px;
    height: 380px;
  }
  .nav-links {
    gap: 24px;
  }
  .contact-section {
    padding: 60px 40px;
  }
  .contact-container {
    gap: 40px;
  }
  .services-layout {
    flex-direction: column;
  }
  .products-section .services-left {
    flex: none;
    width: 100%;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title,
  .products-title,
  .why-right .section-title {
    font-size: 34px;
  }
  .testimonial-layout {
    flex-direction: column;
  }
  .team-layout {
    flex-direction: column;
  }
  .why-layout {
    flex-direction: column;
  }
  .why-left,
  .why-right {
    flex: none;
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 16px;
  }
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-right {
    width: 100%;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-heading {
    font-size: 28px;
  }
  .contact-features {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 20px;
  }
  .nav-links,
  .btn-quote-large {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }
  .hero-title {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-image-clip {
    width: 340px;
    height: 400px;
  }
  .services-section {
    padding: 60px 0;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .service-card {
    padding: 20px;
  }
  .section-title,
  .products-title,
  .why-right .section-title {
    font-size: 28px;
  }
  .cta-section {
    padding: 50px 0;
  }
  .cta-section h2 {
    font-size: 26px;
  }
  .testimonial-section {
    padding: 60px 0;
  }
  .testimonial-card.dark {
    padding: 30px;
  }
  .team-section {
    padding: 60px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item h3 {
    font-size: 28px;
  }
  .faq-section {
    padding: 60px 0;
  }
  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }
  .footer {
    padding: 60px 0 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-image-clip {
    width: 300px;
    height: 360px;
  }
  .btn-quote {
    padding: 10px 18px;
    font-size: 12px;
  }
  .products-grid {
    gap: 12px;
  }
  .service-card {
    padding: 16px;
  }
  .service-icon {
    width: 50px;
    height: 50px;
  }
  .section-title,
  .products-title,
  .why-right .section-title {
    font-size: 24px;
  }
  .team-avatars .avatar {
    width: 44px;
    height: 44px;
  }
  .avatar-add img {
    width: 44px;
    height: 44px;
  }
  .cta-section h2 {
    font-size: 22px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-content {
    gap: 45px;
  }
  .contact-section {
    padding: 40px 12px;
  }
  .contact-form {
    padding: 16px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-image-clip {
    width: 280px;
    height: 330px;
  }
  .btn-started {
    width: 45%;
    justify-content: center;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .service-icon {
    margin-bottom: 0;
    min-width: 50px;
    flex-shrink: 0;
  }
  .section-title,
  .products-title,
  .why-right .section-title {
    font-size: 22px;
  }
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
  .stat-item h3 {
    font-size: 24px;
  }
  .faq-question {
    padding: 14px 16px;
    font-size: 13px;
  }
  .footer-umbrella img {
    max-width: 150px;
  }
}
@media (max-width: 375px) {
  .hero-title {
    font-size: 24px;
  }
  .section-title,
  .products-title,
  .why-right .section-title {
    font-size: 20px;
  }
  .hero-image-clip {
    width: 260px;
    height: 300px;
  }
}

/* ===== SECTION 4 & 7 RESPONSIVE ===== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .about-top {
    flex-direction: column;
    gap: 30px;
  }
  .about-image-col {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .about-portrait {
    min-height: 380px;
  }
  .about-content-col {
    flex: none;
    width: 100%;
  }
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .about-stat h3 {
    font-size: 42px;
  }
  .footer-columns {
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
  }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  .about-top {
    flex-direction: column;
    gap: 30px;
  }
  .about-image-col {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .about-portrait {
    min-height: 350px;
  }
  .about-content-card {
    padding: 24px;
  }
  .about-description {
    font-size: 13px;
  }
  .about-illustration {
    width: 180px;
    right: -10px;
  }
  .about-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-card {
    min-height: 180px;
    padding: 24px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-stat h3 {
    font-size: 36px;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Large Phone (600px) */
@media (max-width: 600px) {
  .about-image-col {
    max-width: 100%;
  }
  .about-portrait {
    min-height: 300px;
  }
  .about-name-card {
    padding: 10px 20px;
  }
  .about-name-card h4 {
    font-size: 14px;
  }
  .about-content-card {
    padding: 20px;
  }
  .about-illustration {
    width: 140px;
    opacity: 0.2;
  }
  .about-card-red h4 {
    font-size: 16px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-stat h3 {
    font-size: 32px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-footer {
    padding: 50px 0 0;
  }
}

/* Small Phone (480px) */
@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }
  .about-portrait {
    min-height: 260px;
  }
  .about-content-card {
    padding: 16px;
  }
  .about-description {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .about-contact-row {
    flex-wrap: wrap;
  }
  .about-illustration {
    display: none;
  }
  .about-cards {
    gap: 16px;
  }
  .about-card {
    padding: 24px;
    min-height: 180px;
  }
  .about-card-avatars .mini-avatar {
    width: 36px;
    height: 36px;
  }
  .mini-avatar-add {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .about-stat h3 {
    font-size: 26px;
  }
  .footer-brand-desc {
    font-size: 13px;
  }
  .footer-contact-value {
    font-size: 13px;
  }
  .footer-bar p {
    font-size: 11px;
  }
  .footer-bar-links a {
    font-size: 11px;
  }
}
