
 

  .teamhome-contruction-page {
    --primary: #f05c62;
    --primary-dark: #d94a50;
    --secondary: #2f3440;
    --secondary-light: #3d4455;
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --gray: #888;
    --text-dark: #1a1a1a;
    --text-body: #555;
    --border: #e5e5e5;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
  }

  /* ── SCROLL ANIMATIONS ── */
  .teamhome-contruction-page .th-reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
  }
  .teamhome-contruction-page .th-reveal.th-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .teamhome-contruction-page .th-reveal-left {
    opacity: 0;
    transform: translateX(-56px);
    transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
  }
  .teamhome-contruction-page .th-reveal-left.th-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .teamhome-contruction-page .th-reveal-right {
    opacity: 0;
    transform: translateX(56px);
    transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
  }
  .teamhome-contruction-page .th-reveal-right.th-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .teamhome-contruction-page .th-delay-1 { transition-delay: 0.1s; }
  .teamhome-contruction-page .th-delay-2 { transition-delay: 0.2s; }
  .teamhome-contruction-page .th-delay-3 { transition-delay: 0.35s; }
  .teamhome-contruction-page .th-delay-4 { transition-delay: 0.5s; }

  /* ── HERO SECTION ── */
  .teamhome-contruction-page .th-hero {
    position: relative;
    height: 420px;
    background: url('/img/th-shield/1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .teamhome-contruction-page .th-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47,52,64,0.82) 0%, rgba(58, 57, 57, 0.55) 100%);
  }
  .teamhome-contruction-page .th-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
  }
  .teamhome-contruction-page .th-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(240,92,98,0.2);
    border: 1px solid rgba(240,92,98,0.5);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    /* letter-spacing: 3px; */
    /* text-transform: uppercase; */
    padding: 6px 20px;
    border-radius: 2px;
    margin-bottom: 24px;
  }
  .teamhome-contruction-page .th-hero h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    /* text-transform: uppercase; */
    /* letter-spacing: -1px; */
    margin-bottom: 18px;
  }
  .teamhome-contruction-page .th-hero h1 span {
    color: var(--primary);
  }
  .teamhome-contruction-page .th-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
  }
  .teamhome-contruction-page .th-hero-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  }

  /* ── SECTION BASE ── */
  .teamhome-contruction-page .th-section {
    padding: 90px 0;
  }
  .teamhome-contruction-page .th-section-alt {
    background: var(--light-bg);
  }
  .teamhome-contruction-page .th-section-dark {
    background: var(--secondary);
  }
  .teamhome-contruction-page .th-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .teamhome-contruction-page .th-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    /* letter-spacing: 4px; */
    /* text-transform: uppercase; */
    color: var(--primary);
    margin-bottom: 14px;
  }
  .teamhome-contruction-page .th-section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
  }
  .teamhome-contruction-page .th-section-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    /* text-transform: uppercase; */
    /* letter-spacing: -0.5px; */
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .teamhome-contruction-page .th-section-heading span {
    color: var(--primary);
  }
  .teamhome-contruction-page .th-section-heading.th-light {
    color: var(--white);
  }
  .teamhome-contruction-page .th-section-sub {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 600px;
  }
  .teamhome-contruction-page .th-section-sub.th-light {
    color: rgba(255,255,255,0.75);
  }
  .teamhome-contruction-page .th-divider {
    width: 56px;
    height: 4px;
    background: var(--primary);
    margin: 20px 0 36px;
    border-radius: 2px;
  }

  /* ── CONTACT SPLIT SECTION (Section 1 - white bg) ── */
  .teamhome-contruction-page .th-contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .teamhome-contruction-page .th-contact-info-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .teamhome-contruction-page .th-contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .teamhome-contruction-page .th-contact-icon-wrap {
    width: 52px;
    height: 52px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(240,92,98,0.07);
    transition: background 0.25s, transform 0.25s;
  }
  .teamhome-contruction-page .th-contact-info-item:hover .th-contact-icon-wrap {
    background: var(--primary);
    transform: translateY(-3px);
  }
  .teamhome-contruction-page .th-contact-icon-wrap i {
    font-size: 20px;
    color: var(--primary);
    transition: color 0.25s;
  }
  .teamhome-contruction-page .th-contact-info-item:hover .th-contact-icon-wrap i {
    color: var(--white);
  }
  .teamhome-contruction-page .th-contact-info-text strong {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    /* letter-spacing: 2px; */
    /* text-transform: uppercase; */
    color: var(--secondary);
    margin-bottom: 4px;
    font-weight: 600;
  }
  .teamhome-contruction-page .th-contact-info-text p,
  .teamhome-contruction-page .th-contact-info-text a {
    font-size: 15px;
    color: var(--text-body);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
  }
  .teamhome-contruction-page .th-contact-info-text a:hover {
    color: var(--primary);
  }

  /* ── CONTACT FORM ── */
  .teamhome-contruction-page .th-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    padding: 44px 40px;
    border-radius: 2px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.08);
  }
  .teamhome-contruction-page .th-form-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 600;
    /* text-transform: uppercase; */
    color: var(--secondary);
    margin-bottom: 6px;
    /* letter-spacing: -0.3px; */
  }
  .teamhome-contruction-page .th-form-title span {
    color: var(--primary);
  }
  .teamhome-contruction-page .th-form-sub {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.5;
  }
  .teamhome-contruction-page .th-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .teamhome-contruction-page .th-form-group {
    margin-bottom: 18px;
  }
  .teamhome-contruction-page .th-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    /* letter-spacing: 2px; */
    /* text-transform: uppercase; */
    color: var(--secondary);
    margin-bottom: 8px;
  }
  .teamhome-contruction-page .th-form-group input,
  .teamhome-contruction-page .th-form-group select,
  .teamhome-contruction-page .th-form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 2px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
  }
  .teamhome-contruction-page .th-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
  }
  .teamhome-contruction-page .th-form-group input:focus,
  .teamhome-contruction-page .th-form-group select:focus,
  .teamhome-contruction-page .th-form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240,92,98,0.12);
  }
  .teamhome-contruction-page .th-form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  .teamhome-contruction-page .th-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 36px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    /* letter-spacing: 2px; */
    /* text-transform: uppercase; */
    cursor: pointer;
    border-radius: 2px;
    width: 100%;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
  }
  .teamhome-contruction-page .th-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,92,98,0.35);
  }
  .teamhome-contruction-page .th-btn-primary:active {
    transform: translateY(0);
  }

  /* ── WHY CHOOSE US (Section 2 - light alt bg) ── */
  .teamhome-contruction-page .th-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .teamhome-contruction-page .th-why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-bottom: 3px solid transparent;
    padding: 32px 24px;
    border-radius: 2px;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: default;
  }
  .teamhome-contruction-page .th-why-card:hover {
    border-bottom-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  }
  .teamhome-contruction-page .th-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(240,92,98,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.25s;
  }
  .teamhome-contruction-page .th-why-card:hover .th-why-icon {
    background: var(--primary);
  }
  .teamhome-contruction-page .th-why-icon i {
    font-size: 26px;
    color: var(--primary);
    transition: color 0.25s;
  }
  .teamhome-contruction-page .th-why-card:hover .th-why-icon i {
    color: var(--white);
  }
  .teamhome-contruction-page .th-why-card h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    /* text-transform: uppercase; */
    color: var(--secondary);
    /* letter-spacing: 0.5px; */
    margin-bottom: 12px;
  }
  .teamhome-contruction-page .th-why-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
  }

  /* ── SERVICES SECTION (Section 3 - dark bg) ── */
  .teamhome-contruction-page .th-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
  }
  .teamhome-contruction-page .th-service-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
  }
  .teamhome-contruction-page .th-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(.22,1,.36,1);
  }
  .teamhome-contruction-page .th-service-card:hover img {
    transform: scale(1.08);
  }
  .teamhome-contruction-page .th-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(240,92,98,0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.35s;
  }
  .teamhome-contruction-page .th-service-card:hover .th-service-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(47,52,64,0.92) 100%);
  }
  .teamhome-contruction-page .th-service-overlay h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    /* text-transform: uppercase; */
    /* letter-spacing: 0.5px; */
    margin-bottom: 4px;
  }
  .teamhome-contruction-page .th-service-overlay span {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
    font-weight: 500;
  }
  .teamhome-contruction-page .th-service-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.25s, transform 0.25s;
  }
  .teamhome-contruction-page .th-service-card:hover .th-service-arrow {
    opacity: 1;
    transform: scale(1);
  }
  .teamhome-contruction-page .th-service-arrow i {
    color: var(--white);
    font-size: 14px;
  }

  /* ── COMMITMENT SECTION (Section 4 - white bg) ── */
  .teamhome-contruction-page .th-commitment-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .teamhome-contruction-page .th-commitment-img {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
  }
  .teamhome-contruction-page .th-commitment-img img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
  }
  .teamhome-contruction-page .th-commitment-img:hover img {
    transform: scale(1.04);
  }
  .teamhome-contruction-page .th-commitment-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .teamhome-contruction-page .th-commitment-badge strong {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
  }
  .teamhome-contruction-page .th-commitment-badge span {
    font-size: 10px;
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-weight: 600;
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
    line-height: 1.2;
    margin-top: 2px;
  }
  .teamhome-contruction-page .th-promise-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .teamhome-contruction-page .th-promise-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    background: #fafafa;
    border-radius: 0 2px 2px 0;
    transition: background 0.2s, transform 0.2s;
  }
  .teamhome-contruction-page .th-promise-item:hover {
    background: rgba(240,92,98,0.05);
    transform: translateX(4px);
  }
  .teamhome-contruction-page .th-promise-item i {
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
  }
  .teamhome-contruction-page .th-promise-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary);
  }

  /* ── STATS STRIP (Section 5 - primary bg) ── */
  .teamhome-contruction-page .th-stats-strip {
    background: var(--primary);
    padding: 56px 0;
  }
  .teamhome-contruction-page .th-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .teamhome-contruction-page .th-stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
  }
  .teamhome-contruction-page .th-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.3);
  }
  .teamhome-contruction-page .th-stat-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    display: block;
  }
  .teamhome-contruction-page .th-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    /* text-transform: uppercase; */
    /* letter-spacing: 2px; */
    font-weight: 600;
    margin-top: 8px;
    display: block;
  }

  /* ── MAP + CONTACT FORM SECTION (Section 6 - alt bg) ── */
  .teamhome-contruction-page .th-map-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .teamhome-contruction-page .th-map-embed {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 380px;
  }
  .teamhome-contruction-page .th-map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  .teamhome-contruction-page .th-office-hours {
    background: var(--secondary);
    padding: 24px 28px;
    margin-top: 20px;
    border-radius: 2px;
  }
  .teamhome-contruction-page .th-office-hours h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    /* text-transform: uppercase; */
    /* letter-spacing: 2px; */
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .teamhome-contruction-page .th-office-hours h5 i {
    color: var(--primary);
    font-size: 16px;
  }
  .teamhome-contruction-page .th-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
  }
  .teamhome-contruction-page .th-hours-row:last-child {
    border-bottom: none;
  }
  .teamhome-contruction-page .th-hours-row span:first-child {
    color: rgba(255,255,255,0.7);
  }
  .teamhome-contruction-page .th-hours-row span:last-child {
    color: var(--primary);
    font-weight: 600;
  }

  /* ── CTA SECTION (Section 7 - dark) ── */
  .teamhome-contruction-page .th-cta-section {
    position: relative;
    background: url('/img/about/bg2.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
  }
  .teamhome-contruction-page .th-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(47,52,64,0.88);
  }
  .teamhome-contruction-page .th-cta-content {
    position: relative;
    z-index: 2;
  }
  .teamhome-contruction-page .th-cta-content h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    color: var(--white);
    /* text-transform: uppercase; */
    /* letter-spacing: -0.5px; */
    margin-bottom: 16px;
    line-height: 1.05;
  }
  .teamhome-contruction-page .th-cta-content h2 span {
    color: var(--primary);
  }
  .teamhome-contruction-page .th-cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
  }
  .teamhome-contruction-page .th-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .teamhome-contruction-page .th-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    /* letter-spacing: 2px; */
    /* text-transform: uppercase; */
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    transition: border-color 0.2s, background 0.2s;
  }
  .teamhome-contruction-page .th-btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
  }
  .teamhome-contruction-page .th-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 14px 32px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    /* letter-spacing: 2px; */
    /* text-transform: uppercase; */
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .teamhome-contruction-page .th-btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,92,98,0.4);
  }

  /* ── SUCCESS MESSAGE ── */
  .teamhome-contruction-page .th-success-msg {
    display: none;
    background: #e8f5e9;
    border: 1px solid #81c784;
    border-left: 4px solid #43a047;
    padding: 16px 20px;
    border-radius: 2px;
    margin-top: 16px;
    font-size: 15px;
    color: #2e7d32;
    font-weight: 500;
    align-items: center;
    gap: 10px;
  }
  .teamhome-contruction-page .th-success-msg.th-show {
    display: flex;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .teamhome-contruction-page .th-contact-split,
    .teamhome-contruction-page .th-commitment-wrap,
    .teamhome-contruction-page .th-map-contact-wrap {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .teamhome-contruction-page .th-why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .teamhome-contruction-page .th-services-grid {
      grid-template-columns: 1fr;
    }
    .teamhome-contruction-page .th-stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .teamhome-contruction-page .th-stat-item:nth-child(2)::after {
      display: none;
    }
    .teamhome-contruction-page .th-commitment-badge {
      bottom: 10px;
      right: 10px;
    }
    .teamhome-contruction-page .th-form-row {
      grid-template-columns: 1fr;
    }
    .teamhome-contruction-page .th-container {
      padding: 0 20px;
    }
    .teamhome-contruction-page .th-hero {
      height: 320px;
    }
    .teamhome-contruction-page .th-section {
      padding: 60px 0;
    }
  }

  @media (max-width: 540px) {
    .teamhome-contruction-page .th-why-grid {
      grid-template-columns: 1fr;
    }
    .teamhome-contruction-page .th-stats-grid {
      grid-template-columns: 1fr 1fr;
    }
    .teamhome-contruction-page .th-form-wrap {
      padding: 28px 20px;
    }
    .teamhome-contruction-page .th-commitment-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
  }
  .teamhome-contruction-page .th-hero h1{
    font-size: 2.5rem;
  }
  }

  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */
  /* ======================================================================== */

      /* ===================== CSS VARIABLES ===================== */
:root {
  --th-red: #f05c62;
  --th-red-dark: #f05c62;
  --th-black: #2f3440;
  --th-dark: #2f3440;
  --th-white: #ffffff;
  --th-light-gray: #f5f5f5;
  --th-gray: #666666;
  --th-border: #e0e0e0;
  --th-nav-height: 60px;
  --th-topbar-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--th-black);
  overflow-x: hidden;
}

/* ===================== TOP BAR ===================== */
.teamHome-homepage__topbar {
  background: var(--th-black);
  color: var(--th-white);
  height: var(--th-topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.teamHome-homepage__topbar-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  flex-shrink: 0;
}

.teamHome-homepage__topbar-logo-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--th-white);
  letter-spacing: 1px;
}

.teamHome-homepage__topbar-logo-text span {
  color: var(--th-red);
}

.teamHome-homepage__topbar-logo-sub {
  font-size: 0.6rem;
  color: #aaa;
  letter-spacing: 1px;
  display: block;
  margin-top: -4px;
  font-style: italic;
}

.teamHome-homepage__topbar-contact {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.teamHome-homepage__topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #ccc;
}

.teamHome-homepage__topbar-item svg {
  color: var(--th-red);
  flex-shrink: 0;
}

.teamHome-homepage__topbar-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.teamHome-homepage__topbar-social-label {
  font-size: 0.82rem;
  color: #aaa;
}

.teamHome-homepage__topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #2a2a2a;
  color: var(--th-white);
  transition: background 0.2s;
}

.teamHome-homepage__topbar-social a:hover {
  background: var(--th-red);
}

/* ===================== MARQUEE ===================== */
.teamHome-homepage__marquee-wrapper {
  background: var(--th-red);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.teamHome-homepage__marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: teamHomeMarquee 28s linear infinite;
}

.teamHome-homepage__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--th-white);
  text-transform: uppercase;
}

.teamHome-homepage__marquee-item::after {
  content: "◆";
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.5rem;
  margin-left: 1.5rem;
}

@keyframes teamHomeMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===================== NAVBAR ===================== */
.teamHome-homepage__navbar {
  background: var(--th-white);
  border-bottom: 2px solid var(--th-border);
  height: var(--th-nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.teamHome-homepage__navbar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 1100px;
  justify-content: center;
}

.teamHome-homepage__nav-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--th-black);
  text-decoration: none;
  padding: 0 1.1rem;
  height: var(--th-nav-height);
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.teamHome-homepage__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--th-red);
  transition: width 0.25s;
}

.teamHome-homepage__nav-link:hover {
  color: var(--th-red);
}
.teamHome-homepage__nav-link:hover::after {
  width: 80%;
}

.teamHome-homepage__nav-dropdown {
  position: relative;
}

.teamHome-homepage__nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.teamHome-homepage__nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--th-white);
  border: 1px solid var(--th-border);
  border-top: 3px solid var(--th-red);
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 10;
}

.teamHome-homepage__nav-dropdown:hover .teamHome-homepage__nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.teamHome-homepage__nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: var(--th-black);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition:
    background 0.15s,
    color 0.15s;
}

.teamHome-homepage__nav-dropdown-menu a:last-child {
  border-bottom: none;
}
.teamHome-homepage__nav-dropdown-menu a:hover {
  background: var(--th-red);
  color: var(--th-white);
}

/* Hamburger */
.teamHome-homepage__nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 12px;
  margin-left: auto;
  background: transparent;
  border: 2px solid var(--th-red);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.teamHome-homepage__nav-hamburger:hover {
  background: rgba(240, 92, 98, 0.1);
  transform: scale(1.05);
}

.teamHome-homepage__nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--th-red);
  border-radius: 2px;
  transition: all 0.3s;
}

.teamHome-homepage__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--th-white);
  border-top: 3px solid var(--th-red);
  padding: 1rem 1.5rem;
  gap: 0.3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.teamHome-homepage__mobile-menu.active {
  display: flex;
}

.teamHome-homepage__mobile-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--th-black);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
  border-radius: 4px;
}

.teamHome-homepage__mobile-menu a:hover {
  color: var(--th-white);
  background: var(--th-red);
  padding-left: 1.5rem;
}

.teamHome-homepage__mobile-menu a:last-child {
  border-bottom: none;
}

/* ===================== HERO ===================== */
.teamHome-homepage__hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.teamHome-homepage__hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("./img/banner/b1.jpg");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.7);
  transform: scale(1.04);
  animation: teamHomeHeroZoom 16s ease-in-out infinite alternate;
}

@keyframes teamHomeHeroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.teamHome-homepage__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
}

.teamHome-homepage__hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

.teamHome-homepage__hero-content {
  flex: 1;
  max-width: 780px;
  color: var(--th-white);
  animation: teamHomeFadeUp 0.9s ease both;
}

@keyframes teamHomeFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.teamHome-homepage__hero-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.teamHome-homepage__hero-desc {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 440px;
}

.teamHome-homepage__hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 2px solid var(--th-white);
  color: var(--th-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}

.teamHome-homepage__hero-btn:hover {
  background: var(--th-red);
  border-color: var(--th-red);
}

/* ===================== FORM CARD ===================== */
.teamHome-homepage__form-card {
  background: var(--th-white);
  border-radius: 8px;
  overflow: hidden;
  width: 340px;
  flex-shrink: 0;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
  animation: teamHomeFadeUp 0.9s 0.3s ease both;
}

.teamHome-homepage__form-header {
  background: var(--th-red);
  padding: 1.2rem 1.5rem;
  text-align: center;
  color: var(--th-white);
}

.teamHome-homepage__form-header h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.teamHome-homepage__form-header p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.2rem;
}

.teamHome-homepage__form-body {
  padding: 1.4rem 1.5rem 1.5rem;
}

.teamHome-homepage__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.teamHome-homepage__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.teamHome-homepage__form-group:last-of-type {
  margin-bottom: 1.2rem;
}

.teamHome-homepage__form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
}

.teamHome-homepage__form-group input,
.teamHome-homepage__form-group select,
.teamHome-homepage__form-group textarea {
  border: 1.5px solid var(--th-border);
  border-radius: 4px;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--th-black);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.teamHome-homepage__form-group input:focus,
.teamHome-homepage__form-group select:focus,
.teamHome-homepage__form-group textarea:focus {
  border-color: var(--th-red);
  background: #fff;
}

.teamHome-homepage__form-group textarea {
  resize: none;
  height: 64px;
}

.teamHome-homepage__form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--th-red);
  color: var(--th-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
}

.teamHome-homepage__form-submit:hover {
  background: var(--th-red-dark);
  transform: translateY(-1px);
}
.teamHome-homepage__form-submit:active {
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .teamHome-homepage__hero-inner {
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
  }
  .teamHome-homepage__form-card {
    width: 100%;
    max-width: 480px;
    align-self: center;
    margin: 0 auto;
  }
  .teamHome-homepage__hero-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .teamHome-homepage__topbar {
    flex-direction: column;
    height: auto;
    padding: 0.6rem 1rem;
    gap: 0.4rem;
  }
  .teamHome-homepage__topbar-contact {
    gap: 1rem;
  }
  .teamHome-homepage__navbar-inner {
    display: none;
  }
  .teamHome-homepage__nav-hamburger {
    display: flex;
  }
  .teamHome-homepage__navbar {
    justify-content: space-between;
    padding: 0 1.2rem;
  }
  .teamHome-homepage__navbar-logo-mobile {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--th-black);
  }
  .teamHome-homepage__navbar-logo-mobile span {
    color: var(--th-red);
  }
  .teamHome-homepage__hero {
    min-height: auto;
    padding: 0;
    display: block;
  }
  .teamHome-homepage__hero-bg {
    position: static;
    height: 320px;
    filter: brightness(1);
    animation: none;
    background-position: center;
  }
  .teamHome-homepage__hero-overlay {
    display: none;
  }
  .teamHome-homepage__hero-inner {
    flex-direction: column;
    position: relative;
    padding: 0;
    gap: 0;
    max-width: 100%;
    align-items: stretch;
    z-index: 1;
  }
  .teamHome-homepage__hero-content {
    max-width: 100%;
    display: block;
    padding: 1.5rem 1rem;
    color: var(--th-black);
    text-align: center;
    background: #fff;
    animation: none;
  }
  .teamHome-homepage__hero-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  .teamHome-homepage__hero-desc {
    display: none;
  }
  .teamHome-homepage__hero-btn {
    display: none;
  }
  .teamHome-homepage__form-card {
    width: 90%;
    max-width: 100%;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.15),
      0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 1.5rem auto;
    overflow: hidden;
  }
  .teamHome-homepage__form-header {
    text-align: center;
    padding: 1rem 1.2rem;
    background: var(--th-red);
  }
  .teamHome-homepage__form-header h2 {
    font-size: 1.2rem;
    color: #fff;
  }
  .teamHome-homepage__form-header p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
  }
  .teamHome-homepage__form-body {
    padding: 1.2rem 1rem;
    background: #fff;
  }
  .teamHome-homepage__form-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .teamHome-homepage__form-group:has(#th-email),
  .teamHome-homepage__form-group:has(#th-service),
  .teamHome-homepage__form-group:has(#th-message) {
    display: none;
  }
  .teamHome-homepage__form-group {
    margin-bottom: 0.8rem;
  }
  .teamHome-homepage__form-submit {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  .teamHome-homepage__topbar-social {
    display: none;
  }
  .teamHome-homepage__form-submit {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .teamHome-homepage__topbar{
    display: none;
  }
  .teamHome-homepage__topbar-contact {
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
  }
  .teamHome-homepage__form-card {
    width: 95%;
    margin: 1rem auto;
  }
  .teamHome-homepage__form-header {
    padding: 0.8rem 1rem;
  }
  .teamHome-homepage__form-header h2 {
    font-size: 1.1rem;
  }
  .teamHome-homepage__form-body {
    padding: 1rem;
  }
}

/* STATS */
.teamHome-homepage__stats {
  background: #f7f7f7;
  padding: 3.5rem 2rem 2rem;
}
.teamHome-homepage__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.teamHome-homepage__stat-icon {
  width: 100px;
  height: 100px;
  background: var(--th-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.teamHome-homepage__stat-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(240, 92, 98, 0.3);
}
.teamHome-homepage__stat-icon i {
  color: #fff;
  font-size: 2.2rem;
}
.teamHome-homepage__stat-number {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--th-black);
}
.teamHome-homepage__stat-label {
  font-size: 0.85rem;
  color: var(--th-gray);
  margin-top: 0.2rem;
}

/* ABOUT */
.teamHome-homepage__about {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.teamHome-homepage__about-title {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.15;
  color: var(--th6-dark);
  text-align: center;
  margin-bottom: 0.6rem;
}
.teamHome-homepage__about-title .red {
  color: var(--th-red);
}
.teamHome-homepage__about-subtitle {
  font-size: 1rem;
  color: var(--th-gray);
  margin-bottom: 1.4rem;
  font-style: italic;
}
.teamHome-homepage__about-body {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #444;
}
.teamHome-homepage__about-body strong {
  color: var(--th-black);
}

/* IMAGES + WHY CHOOSE */
/* .teamHome-homepage__about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 860px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.teamHome-homepage__about-img-left {
  border: 5px solid var(--th-red);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
.teamHome-homepage__about-img-right {
  border-radius: 4px;
  overflow: hidden;
  margin-left: -30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.teamHome-homepage__about-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.teamHome-homepage__why {
  padding: 3rem 2rem 5rem;
  text-align: center;
}
.teamHome-homepage__why-title {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.15;
  color: var(--th6-dark);
  text-align: center;
  margin-bottom: 2.5rem;
}
.teamHome-homepage__why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.teamHome-homepage__why-card {
  border: 1.5px solid #f0dede;
  border-radius: 8px;
  padding: 1.8rem 1.2rem;
  text-align: left;
  background: #fff;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.teamHome-homepage__why-card:hover {
  box-shadow: 0 8px 28px rgba(224, 43, 43, 0.1);
  transform: translateY(-4px);
}
.teamHome-homepage__why-card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.teamHome-homepage__why-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--th-red);
  margin-bottom: 0.7rem;
}
.teamHome-homepage__why-card p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.7;
  text-align: justify;
} */

/* GLIMPSE / WORKS VIDEO GALLERY */
.teamHome-homepage__works {
  padding: 4rem 2rem;
  background: #f05c62;
  text-align: center;
}
.teamHome-homepage__works-title {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.15;
  color: var(--th6-dark);
  text-align: center;
  margin-bottom: .5rem;
}
.teamHome-homepage__works-title .red {
  color: white;
}
.teamHome-homepage__works-sub {
  font-size: 0.85rem;
  color: white;
  margin-bottom: 2.5rem;
  font-weight: 600;
}
.teamHome-homepage__works-slider-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.teamHome-homepage__works-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.teamHome-homepage__works-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}
.teamHome-homepage__works-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.teamHome-homepage__works-slide:hover img {
  filter: brightness(0.5);
}
.teamHome-homepage__works-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--th-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(240, 92, 98, 0.3);
  border: none;
  padding: 0;
}
.teamHome-homepage__works-slide:hover .teamHome-homepage__works-play-btn {
  background: #ff6a6e;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(240, 92, 98, 0.5);
}
.teamHome-homepage__works-play-btn i {
  color: white;
  font-size: 2.5rem;
  margin-left: 4px;
}
.teamHome-homepage__works-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 1rem 1.2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 90px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.teamHome-homepage__works-slide:hover .teamHome-homepage__works-slide-overlay {
  opacity: 1;
}
.teamHome-homepage__works-slide-tagline {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.teamHome-homepage__works-slide-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}
.teamHome-homepage__works-client {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--th-red);
}
.teamHome-homepage__works-stars {
  color: #f5a623;
  font-size: 0.85rem;
}
.teamHome-homepage__works-btn {
  display: none;
}
.teamHome-homepage__works-slide-tagline {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.teamHome-homepage__works-slide-tagline em {
  font-style: normal;
  color: var(--th-red);
}
.teamHome-homepage__works-slide-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.teamHome-homepage__works-client {
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--th-red);
}
.teamHome-homepage__works-stars {
  color: #f5a623;
  font-size: 1rem;
}
.teamHome-homepage__works-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--th-red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
}
.teamHome-homepage__works-btn:hover {
  background: var(--th-red-dark);
}
.teamHome-homepage__works-btn--prev {
  left: -18px;
}
.teamHome-homepage__works-btn--next {
  right: -18px;
}

/* SERVICES */
.teamHome-homepage__services {
  padding: 4rem 2rem;
  background: #fafafa;
}
.teamHome-homepage__services-title {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.15;
  color: var(--th6-dark);
  text-align: center;
  margin-bottom: 2.5rem;
}
.teamHome-homepage__services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.teamHome-homepage__service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.teamHome-homepage__service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(224, 43, 43, 0.12);
}
.teamHome-homepage__service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.teamHome-homepage__service-card-body {
  padding: 1rem 1.1rem 1.3rem;
}
.teamHome-homepage__service-card-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.teamHome-homepage__service-card p {
  font-size: 0.78rem;
  color: var(--th-gray);
  line-height: 1.5;
}

/* PACKAGES */
.teamHome-homepage__packages {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}
.teamHome-homepage__packages-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.teamHome-homepage__packages-title .red {
  color: var(--th-red);
}
.teamHome-homepage__packages-sub {
  font-size: 0.85rem;
  color: var(--th-gray);
  margin-bottom: 2rem;
}
.teamHome-homepage__packages-tabs {
  display: flex;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: 4px;
  overflow: hidden;
}
.teamHome-homepage__packages-tab {
  flex: 1;
  padding: 0.85rem;
  background: #f0dede;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  position: relative;
}
.teamHome-homepage__packages-tab.active {
  background: var(--th-red);
}
.teamHome-homepage__packages-tab.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--th-red);
}
.teamHome-homepage__packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.teamHome-homepage__package-col {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
}
.teamHome-homepage__package-col-header {
  background: var(--th-red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.85rem 0.8rem;
  line-height: 1.3;
}
.teamHome-homepage__pkg-acc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--th-black);
  border-top: 1px solid #eee;
  cursor: pointer;
  user-select: none;
  background: #fff;
  transition: background 0.15s;
}
.teamHome-homepage__pkg-acc-header:hover {
  background: #fff5f5;
}
.teamHome-homepage__package-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  background: var(--th-red);
  cursor: pointer;
}
.teamHome-homepage__package-col-header span {
  display: inline-block;
}
.teamHome-homepage__package-col-header .package-chevron {
  transition: transform 0.25s ease;
  font-size: 0.8rem;
}
.teamHome-homepage__package-col-body {
  display: none;
}
.teamHome-homepage__package-col.open .teamHome-homepage__package-col-body {
  display: block;
}
.teamHome-homepage__package-col.open .teamHome-homepage__package-col-header {
  background: #c8232a;
}
.teamHome-homepage__pkg-acc-header i.chevron {
  font-size: 0.7rem;
  color: var(--th-red);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.teamHome-homepage__pkg-acc-header.open i.chevron {
  transform: rotate(180deg);
}
.teamHome-homepage__pkg-acc-body {
  display: none;
  padding: 0.3rem 0.8rem 0.8rem 1.2rem;
  border-top: 1px solid #f5f5f5;
  background: #fefefe;
}
.teamHome-homepage__pkg-acc-body.open {
  display: block;
}
.teamHome-homepage__pkg-acc-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.teamHome-homepage__pkg-acc-body ul li {
  font-size: 0.76rem;
  color: #444;
  padding: 0.3rem 0;
  border-bottom: 1px solid #f5f5f5;
  line-height: 1.45;
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}
.teamHome-homepage__pkg-acc-body ul li::before {
  content: "•";
  color: var(--th-red);
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.teamHome-homepage__pkg-acc-body ul li:last-child {
  border-bottom: none;
}

/* GALLERY */
.teamHome-homepage__gallery {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}
.teamHome-homepage__gallery-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.teamHome-homepage__gallery-sub {
  font-size: 0.85rem;
  color: var(--th-gray);
  margin-bottom: 2.5rem;
}
.teamHome-homepage__gallery-slider-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
.teamHome-homepage__gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  align-items: center;
}
.teamHome-homepage__gallery-slide {
  flex: 0 0 calc(33.333% - 1rem);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.teamHome-homepage__gallery-slide.center {
  transform: scale(1.08);
  z-index: 2;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}
.teamHome-homepage__gallery-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.teamHome-homepage__gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--th-red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
}
.teamHome-homepage__gallery-btn:hover {
  background: var(--th-red-dark);
}
.teamHome-homepage__gallery-btn--prev {
  left: -18px;
}
.teamHome-homepage__gallery-btn--next {
  right: -18px;
}

/* CTA BANNER */
.teamHome-homepage__cta-banner {
  position: relative;
  margin: 0 2rem 4rem;
  border-radius: 10px;
  overflow: hidden;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.teamHome-homepage__cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("./img/banner/b2.jpg");
  background-size: cover;
  background-position: center;
}
.teamHome-homepage__cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -90deg,
    rgba(224, 43, 43, 0.644) 0%,
    rgba(0, 0, 0, 0.3) 70%,
    transparent 100%
  );
}
.teamHome-homepage__cta-banner-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2.5rem;
  text-align: right;
  color: #fff;
  max-width: 1100px;
  justify-content: flex-end;
}
.teamHome-homepage__cta-banner-content h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.teamHome-homepage__cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  background: #fff;
  color: var(--th-red);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.teamHome-homepage__cta-banner-btn:hover {
  background: var(--th-red-dark);
  color: #fff;
}

/* TESTIMONIALS */
.teamHome-homepage__reviews {
  padding: 0 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.teamHome-homepage__reviews-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.teamHome-homepage__reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.teamHome-homepage__review-card {
  border-left: 4px solid var(--th-red);
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-radius: 0 8px 8px 0;
}
.teamHome-homepage__review-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.teamHome-homepage__review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}
.teamHome-homepage__review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teamHome-homepage__review-name {
  font-size: 0.82rem;
  color: var(--th-gray);
  margin-top: 0.3rem;
}
.teamHome-homepage__review-card h4 {
  font-size: 1rem;
  font-weight: 600;
}
.teamHome-homepage__review-text {
  font-size: 0.82rem;
  color: #555;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.teamHome-homepage__review-stars {
  color: #f5a623;
  font-size: 0.95rem;
}

/* FOOTER */
.teamHome-homepage__footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 4rem 2rem 0;
}
.teamHome-homepage__footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.2fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.teamHome-homepage__footer-logo-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.teamHome-homepage__footer-logo-text span {
  color: var(--th-red);
}
.teamHome-homepage__footer-tagline {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--th-red);
  padding-bottom: 0.6rem;
  display: inline-block;
}
.teamHome-homepage__footer-about {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 1.2rem;
  text-align: justify;
}
.teamHome-homepage__footer-social {
  display: flex;
  gap: 0.6rem;
}
.teamHome-homepage__footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.teamHome-homepage__footer-social a:hover {
  border-color: var(--th-red);
  color: var(--th-red);
}

.teamHome-homepage__footer-links-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.teamHome-homepage__footer-links-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1.5rem;
}
.teamHome-homepage__footer-links-cols a {
  font-size: 0.82rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.15rem 0;
}
.teamHome-homepage__footer-links-cols a:hover {
  color: var(--th-red);
}

.teamHome-homepage__footer-address {
  font-size: 0.82rem;
  color: #aaa;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  display: flex;
  gap: 0.5rem;
}
.teamHome-homepage__footer-address svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--th-red);
}
.teamHome-homepage__footer-map {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #333;
}
.teamHome-homepage__footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

.teamHome-homepage__footer-bottom {
  border-top: 1px solid #2e2e2e;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.teamHome-homepage__footer-bottom span {
  font-size: 0.78rem;
  color: #666;
}
.teamHome-homepage__footer-bottom-links {
  display: flex;
  gap: 1rem;
}
.teamHome-homepage__footer-bottom-links a {
  font-size: 0.78rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.teamHome-homepage__footer-bottom-links a:hover {
  color: var(--th-red);
}

/* RESPONSIVE NEW SECTIONS */
@media (max-width: 900px) {
  .teamHome-homepage__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .teamHome-homepage__why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .teamHome-homepage__services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .teamHome-homepage__packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .teamHome-homepage__reviews-grid {
    grid-template-columns: 1fr;
  }
  .teamHome-homepage__footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .teamHome-homepage__about-images {
    grid-template-columns: 1fr;
  }
  .teamHome-homepage__about-img-right {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .teamHome-homepage__stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .teamHome-homepage__why-grid {
    grid-template-columns: 1fr;
  }
  .teamHome-homepage__services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .teamHome-homepage__packages-grid {
    grid-template-columns: 1fr;
  }
  .teamHome-homepage__packages-tabs {
    flex-direction: column;
  }
  .teamHome-homepage__works-slide {
    flex: 0 0 90%;
  }
  .teamHome-homepage__gallery-slide {
    flex: 0 0 80%;
  }
  .teamHome-homepage__service-card img {
    height: 140px;
  }
  .teamHome-homepage__service-card-title {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
  }
  .teamHome-homepage__service-card-title.red {
    color: var(--th-red);
  }
  .teamHome-homepage__service-card p {
    font-size: 0.78rem;
    display: none;
  }
  .teamHome-homepage__navbar {
    background: var(--th-black);
    border-bottom: 2px solid var(--th-border);
    height: var(--th-nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }
}
