/* ==========================================================================
   JAIKAAL GLOBAL — RESPONSIVE MASTER STYLESHEET
   Mobile-First, Touch-Friendly, Pixel-Perfect for all screens (320px to 4K)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GLOBAL CONTAINER & OVERFLOW PREVENTION
   -------------------------------------------------------------------------- */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

/* Fix iOS form zoom */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  font-size: 16px !important;
}

/* --------------------------------------------------------------------------
   2. DESKTOPS (min-width: 1025px)
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .cert-authority-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1rem;
  }

  .qc-pillars-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }

  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.1fr 1fr;
    gap: 3.5rem;
  }
}

/* --------------------------------------------------------------------------
   3. TABLETS (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-section {
    padding: 4rem 0 4.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-tags-carousel-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-form-wrapper {
    justify-content: center;
    width: 100%;
  }

  .hero-form-card {
    max-width: 540px;
    margin: 0 auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .cert-authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .qc-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

/* --------------------------------------------------------------------------
   4. TABLETS PORTRAIT & ALL PHONES (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Header & Navigation Drawer */
  .site-header {
    height: 70px;
  }

  .nav-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo-img {
    height: 42px;
  }

  .brand-logo-text-group .brand-name {
    font-size: 1.2rem;
  }

  .brand-logo-text-group .brand-tagline {
    font-size: 0.6rem;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 70px);
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem 2rem;
    gap: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid #f1f5f9;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: 10px;
    color: #334155;
    background: #f8fafc;
    display: block;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-link.active {
    background: #ecfdf5;
    color: #059669;
  }

  /* Hamburger Animation */
  .mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Section Spacing */
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-header {
    margin-bottom: 2rem;
    text-align: center;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Hero Mobile */
  .hero-section {
    min-height: auto !important;
    display: block !important;
    padding: 2.25rem 0 3.25rem !important;
    overflow: hidden !important;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    width: 100% !important;
  }

  .hero-content {
    text-align: left !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-brand-highlight {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 0.4rem !important;
  }

  .hero-title {
    font-size: clamp(1.25rem, 4.5vw, 1.65rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem !important;
    max-width: 100% !important;
  }

  .hero-description {
    font-size: clamp(0.85rem, 2.8vw, 0.95rem) !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
    max-width: 100% !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
    text-align: center !important;
  }

  .hero-tags-carousel-wrapper {
    margin-top: 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .hero-tags-track {
    display: flex !important;
    width: max-content !important;
    gap: 0.5rem !important;
  }

  .hero-tag-pill {
    font-size: 0.775rem !important;
    padding: 0.4rem 0.85rem !important;
    border-radius: 6px !important;
  }

  /* Hero Form */
  .hero-form-wrapper {
    width: 100% !important;
    display: block !important;
    margin-top: 0.5rem !important;
  }

  .hero-form-card {
    padding: 1.25rem 1rem !important;
    border-radius: 14px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .form-header {
    margin-bottom: 1rem !important;
  }

  .form-header h3 {
    font-size: 1.35rem !important;
    margin-bottom: 2px !important;
  }

  .form-header p {
    font-size: 0.8rem !important;
  }

  .form-group {
    margin-bottom: 0.7rem !important;
  }

  .form-label {
    font-size: 0.75rem !important;
    margin-bottom: 3px !important;
  }

  .form-control {
    font-size: 16px !important;
    padding: 0.65rem 0.85rem !important;
    border-radius: 8px !important;
    height: auto !important;
  }

  .input-with-icon .form-control {
    padding-left: 36px !important;
  }

  .input-with-icon svg {
    left: 11px !important;
    width: 15px !important;
    height: 15px !important;
  }

  textarea.form-control {
    min-height: 70px !important;
  }

  .btn-send-message {
    width: 100% !important;
    padding: 0.85rem !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
  }

  /* Stats Ribbon */
  .stats-ribbon {
    padding: 1rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .stat-card {
    padding: 0.85rem 1.15rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
    border-radius: 10px;
  }

  .stat-badge-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .stat-details {
    align-items: flex-start;
    text-align: left;
  }

  .stat-value {
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.1;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Welcome & Certified Box */
  .welcome-content-box {
    margin-bottom: 1.75rem;
  }

  .welcome-content-box p {
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
  }

  .certified-trusted-box {
    padding: 1.25rem 0.85rem;
    border-radius: 12px;
  }

  .cert-box-header {
    margin-bottom: 1.25rem;
  }

  .cert-box-title {
    font-size: 1.25rem;
  }

  .cert-box-subtitle {
    font-size: 0.85rem;
  }

  .cert-authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 0.5rem;
  }

  .cert-icon-squircle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 0.4rem;
  }

  .cert-icon-squircle svg {
    width: 22px;
    height: 22px;
  }

  .cert-authority-name {
    font-size: 0.825rem;
    line-height: 1.2;
    margin-bottom: 0.15rem;
  }

  .cert-authority-desc {
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .cert-box-footer {
    margin-top: 1.25rem;
    padding-top: 0.85rem;
    font-size: 0.78rem;
  }

  /* Product Showcase Cards */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .product-card {
    border-radius: 14px;
    max-width: 100%;
  }

  .product-image-wrap {
    height: 190px;
    aspect-ratio: auto;
  }

  .product-content {
    padding: 1.15rem 1rem;
  }

  .product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .product-varieties-list {
    gap: 0.4rem;
  }

  .variety-item {
    font-size: 0.825rem;
  }

  .btn-view-all {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 0.85rem;
    font-size: 0.95rem;
  }

  /* Quality Section */
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quality-card {
    padding: 1.15rem 1rem;
    gap: 0.85rem;
    border-radius: 12px;
  }

  .quality-step-number {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    border-radius: 10px;
  }

  .quality-card-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }

  .quality-card-content p {
    font-size: 0.825rem;
    line-height: 1.5;
  }

  /* QC Process Banner */
  .qc-process-banner {
    padding: 1.35rem 1rem;
    margin: 2rem auto 1.5rem;
    border-radius: 12px;
  }

  .qc-banner-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }

  .qc-banner-icon svg {
    width: 20px;
    height: 20px;
  }

  .qc-banner-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .qc-steps-flow {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
  }

  .qc-step-pill {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0.85rem;
    font-size: 0.825rem;
  }

  .qc-flow-arrow {
    display: none; /* Clean vertical stack on mobile */
  }

  /* QC 5 Pillars */
  .qc-pillars-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .qc-pillar-card {
    flex-direction: row;
    text-align: left;
    padding: 0.85rem 1rem;
    gap: 0.85rem;
    border-radius: 10px;
    justify-content: flex-start;
  }

  .qc-pillar-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .qc-pillar-icon svg {
    width: 20px;
    height: 20px;
  }

  .qc-pillar-title {
    font-size: 0.875rem;
  }

  /* Why Choose Us */
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-card {
    padding: 1.25rem 1rem;
    border-radius: 12px;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .why-icon svg {
    width: 22px;
    height: 22px;
  }

  .why-title {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
  }

  .why-text {
    font-size: 0.825rem;
    line-height: 1.55;
  }

  /* FAQ Accordion Mobile */
  .faq-section {
    padding: 3rem 0;
  }

  .faq-button {
    padding: 1rem 0.85rem;
    gap: 0.5rem;
  }

  .faq-button-left {
    gap: 0.6rem;
  }

  .faq-check-icon {
    width: 18px;
    height: 18px;
  }

  .faq-question-text {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .faq-icon-indicator {
    width: 18px;
    height: 18px;
  }

  .faq-panel p {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .faq-item.active .faq-panel {
    padding: 0.85rem 0.85rem 1rem calc(0.85rem + 18px + 0.6rem);
  }

  /* CTA Banner Mobile */
  .cta-banner-section {
    padding: 3.5rem 1rem;
  }

  .cta-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .cta-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .btn-cta-white {
    width: 100%;
    max-width: 290px;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  /* Footer Mobile */
  .site-footer {
    padding-top: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }

  .footer-brand-header {
    margin-bottom: 0.85rem;
  }

  .footer-desc {
    font-size: 0.825rem;
    line-height: 1.55;
  }

  .footer-heading {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .footer-links-list {
    gap: 0.5rem;
  }

  .footer-link,
  .footer-social-link {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding: 1.25rem 0;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    font-size: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   5. SMALL PHONES (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .brand-logo-img {
    height: 36px;
  }

  .brand-logo-text-group .brand-name {
    font-size: 1.05rem;
  }

  .brand-logo-text-group .brand-tagline {
    font-size: 0.52rem;
  }

  .hero-brand-highlight {
    font-size: 1.95rem;
  }

  .hero-title {
    font-size: 1.3rem;
  }

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

  .cert-authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0.4rem;
  }

  .cert-icon-squircle {
    width: 42px;
    height: 42px;
  }

  .cert-icon-squircle svg {
    width: 18px;
    height: 18px;
  }

  .cert-authority-name {
    font-size: 0.75rem;
  }

  .cert-authority-desc {
    font-size: 0.65rem;
  }

  .toast-container {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .toast {
    max-width: 100%;
    padding: 0.85rem 1rem;
  }

  /* Certificates Page Mobile Cards */
  .certificates-hero-section {
    padding: 2.75rem 0 3rem;
  }

  .certificates-section {
    padding: 2.5rem 0 3rem;
  }

  .certificates-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    margin: 1.5rem auto 2rem auto !important;
  }

  .cert-card {
    padding: 1.25rem 1rem !important;
    gap: 1rem !important;
    border-radius: 14px !important;
  }

  .cert-icon-wrap {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
  }

  .cert-icon-wrap svg {
    width: 26px !important;
    height: 26px !important;
  }

  .cert-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.2rem !important;
  }

  .cert-subtag {
    font-size: 0.8rem !important;
    margin-bottom: 0.4rem !important;
  }

  .cert-desc {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
  }

  .addl-cert-box {
    padding: 1.5rem 1rem !important;
    border-radius: 14px !important;
  }

  .addl-cert-badge {
    width: 52px !important;
    height: 52px !important;
    margin-bottom: 0.75rem !important;
  }

  .addl-cert-badge svg {
    width: 24px !important;
    height: 24px !important;
  }

  .addl-cert-title {
    font-size: 1.25rem !important;
  }

  .addl-cert-desc {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
  }
}

/* Extra small phone adjustment for Cert Cards */
@media (max-width: 480px) {
  .cert-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.15rem 1rem !important;
    gap: 0.85rem !important;
  }

  .cert-icon-wrap {
    width: 46px !important;
    height: 46px !important;
    border-radius: 10px !important;
  }

  .cert-icon-wrap svg {
    width: 22px !important;
    height: 22px !important;
  }

  .cert-title {
    font-size: 1.15rem !important;
  }

  .cert-subtag {
    font-size: 0.75rem !important;
  }

  .cert-desc {
    font-size: 0.825rem !important;
  }

  /* Products Page Mobile Responsiveness */
  .products-hero-section {
    padding: 2.75rem 0 3rem !important;
  }

  .catalog-category-block {
    padding: 2.5rem 0 3rem !important;
  }

  .catalog-category-header {
    margin-bottom: 1.75rem !important;
    text-align: center !important;
  }

  .catalog-category-title {
    font-size: 1.65rem !important;
    margin-bottom: 0.4rem !important;
  }

  .catalog-category-subtitle {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
  }

  .catalog-grid,
  .catalog-grid.two-col {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .catalog-item-card {
    border-radius: 14px !important;
  }

  .catalog-item-body {
    padding: 1.15rem 1rem !important;
  }

  .catalog-item-title {
    font-size: 1.15rem !important;
  }

  .catalog-item-desc {
    font-size: 0.825rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }

  /* Tailored Sourcing Box & Cards (Fix overflow button & cards) */
  .tailored-section {
    padding: 2.75rem 0 3.25rem !important;
  }

  .tailored-box {
    padding: 1.5rem 1rem !important;
    border-radius: 16px !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .tailored-badge {
    width: 46px !important;
    height: 46px !important;
    border-radius: 12px !important;
    margin-bottom: 0.75rem !important;
  }

  .tailored-badge svg {
    width: 22px !important;
    height: 22px !important;
  }

  .tailored-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 0.5rem !important;
  }

  .tailored-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }

  .tailored-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
    margin-bottom: 1.5rem !important;
  }

  .tailored-card {
    padding: 1.15rem 1rem !important;
    border-radius: 12px !important;
  }

  .tailored-card h4 {
    font-size: 1rem !important;
  }

  .tailored-card p {
    font-size: 0.825rem !important;
    line-height: 1.5 !important;
  }

  .btn-tailored-cta {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.925rem !important;
    white-space: normal !important;
    text-align: center !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
  }

  .products-cta-section {
    padding: 3rem 0 !important;
  }

  .cta-title {
    font-size: 1.65rem !important;
  }

  .cta-subtitle {
    font-size: 0.875rem !important;
  }

  .btn-cta-white {
    width: 100% !important;
    max-width: 280px !important;
    padding: 0.85rem 1.5rem !important;
    font-size: 0.95rem !important;
    justify-content: center !important;
  }

  /* About Us Page Responsiveness */
  .about-hero-section {
    padding: 2.75rem 0 3rem !important;
  }

  .about-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .about-stat-card {
    padding: 1.15rem 1rem !important;
    border-radius: 12px !important;
  }

  .who-we-are-section {
    padding: 2.5rem 0 3rem !important;
  }

  .who-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  .who-img {
    height: 220px !important;
    border-radius: 14px !important;
  }

  .purpose-section {
    padding: 2.5rem 0 3rem !important;
  }

  .purpose-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .purpose-card {
    padding: 1.25rem 1rem !important;
    border-radius: 14px !important;
  }

  .core-values-section {
    padding: 2.5rem 0 3rem !important;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .value-card {
    padding: 1.15rem 1rem !important;
    border-radius: 12px !important;
  }

  /* Contact Us Page Responsiveness */
  .contact-hero-section {
    padding: 2.75rem 0 3rem !important;
  }

  .contact-page-section {
    padding: 2.5rem 0 3rem !important;
  }

  .contact-page-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .connect-card,
  .contact-form-card {
    padding: 1.35rem 1rem !important;
    border-radius: 14px !important;
    position: static !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .contact-form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .contact-form-group {
    margin-bottom: 0.85rem !important;
  }

  .contact-form-input,
  .contact-form-textarea {
    font-size: 16px !important;
    padding: 0.75rem 0.85rem !important;
    border-radius: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-form-textarea {
    min-height: 100px !important;
  }

  .contact-submit-btn {
    width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem !important;
    border-radius: 10px !important;
    white-space: normal !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .contact-faq-section {
    padding: 2.5rem 0 3rem !important;
  }

  .contact-faq-list {
    margin-top: 1.5rem !important;
    gap: 1rem !important;
  }

  .contact-faq-card {
    padding: 1.15rem 1rem !important;
    border-radius: 12px !important;
  }
}



