/* ================================================
   S.T. Contracts - Areas We Cover Page
   ================================================ */

* { box-sizing: border-box; }

/*====================
  HERO
====================*/
.st-areas-hero {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #252525 100%);
    padding: 80px 40px;
    font-family: 'Mulish', sans-serif;
    position: relative;
    overflow: hidden;
}

.st-areas-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 0% 100%, rgba(242, 136, 35, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(242, 136, 35, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.st-areas-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.st-areas-hero-content {
    max-width: 580px;
}

.st-areas-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(242, 136, 35, 0.15);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.st-areas-hero-badge i {
    color: #F28823;
}

.st-areas-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.1;
}

.st-areas-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.st-areas-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.st-areas-hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    min-width: 220px;
}

.st-areas-hero-stat i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F28823 0%, #d67315 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.st-areas-hero-stat strong {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.st-areas-hero-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.st-areas-hero-stat > *:not(i) {
    display: flex;
    flex-direction: column;
}

/*====================
  MAP
====================*/
.st-areas-map {
    position: relative;
    height: 420px;
}

.st-areas-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

.st-areas-map-card {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    max-width: 280px;
    margin-left: calc((100vw - 1200px) / 2);
}

.st-areas-map-card i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F28823 0%, #d67315 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.st-areas-map-card strong {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.st-areas-map-card p {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px;
}

.st-areas-map-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #F28823;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.st-areas-map-card a:hover {
    gap: 10px;
}

.st-areas-map-card a i {
    font-size: 11px;
    width: auto;
    height: auto;
    background: none;
    display: inline;
}

/*====================
  PRIMARY AREAS
====================*/
.st-areas-primary {
    background: #fff;
    padding: 80px 40px;
    font-family: 'Mulish', sans-serif;
}

.st-areas-primary-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.st-areas-primary header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.st-areas-primary h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
    position: relative;
    display: inline-block;
}

.st-areas-primary h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F28823 0%, #d67315 100%);
    border-radius: 2px;
}

.st-areas-primary header p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin: 24px 0 0;
}

.st-areas-primary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.st-areas-primary-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.st-areas-primary-item:hover {
    background: #fff;
    border-color: #F28823;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(242, 136, 35, 0.12);
}

.st-areas-primary-item i {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-size: 22px;
    color: #F28823;
    transition: all 0.3s ease;
}

.st-areas-primary-item:hover i {
    background: linear-gradient(135deg, #F28823 0%, #d67315 100%);
    color: #fff;
    transform: scale(1.05);
}

.st-areas-primary-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}

.st-areas-primary-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/*====================
  SECONDARY AREAS
====================*/
.st-areas-secondary {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef0f2 100%);
    padding: 70px 40px;
    font-family: 'Mulish', sans-serif;
}

.st-areas-secondary-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.st-areas-secondary header {
    margin-bottom: 36px;
}

.st-areas-secondary h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    position: relative;
    display: inline-block;
}

.st-areas-secondary h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F28823 0%, #d67315 100%);
    border-radius: 2px;
}

.st-areas-secondary header p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 20px 0 0;
}

.st-areas-secondary-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.st-areas-secondary-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.st-areas-secondary-tags span:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(242, 136, 35, 0.15);
    transform: translateY(-2px);
}

.st-areas-secondary-tags i {
    color: #F28823;
    font-size: 12px;
}

/*====================
  CTA
====================*/
.st-areas-cta {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    padding: 70px 40px;
    font-family: 'Mulish', sans-serif;
}

.st-areas-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.st-areas-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 136, 35, 0.15);
    color: #F28823;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.st-areas-cta-badge i {
    font-size: 12px;
}

.st-areas-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.st-areas-cta p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 550px;
}

.st-areas-cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.st-areas-cta-btn {
    background: linear-gradient(135deg, #F28823 0%, #d67315 100%);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(242, 136, 35, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.st-areas-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 136, 35, 0.4);
}

.st-areas-cta-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.st-areas-cta-phone:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.st-areas-cta-phone i {
    color: #F28823;
}

/*====================
  TABLET (1024px)
====================*/
@media (max-width: 1024px) {
    .st-areas-hero {
        padding: 60px 32px;
    }
    
    .st-areas-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .st-areas-hero-content h1 {
        font-size: 40px;
    }
    
    .st-areas-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .st-areas-hero-stat {
        min-width: 180px;
        padding: 16px 20px;
    }
    
    .st-areas-map {
        height: 350px;
    }
    
    .st-areas-map-card {
        left: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
    }
    
    .st-areas-primary {
        padding: 60px 32px;
    }
    
    .st-areas-primary h2 {
        font-size: 30px;
    }
    
    .st-areas-primary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .st-areas-secondary {
        padding: 60px 32px;
    }
    
    .st-areas-cta {
        padding: 60px 32px;
    }
    
    .st-areas-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .st-areas-cta h2 {
        font-size: 28px;
    }
    
    .st-areas-cta-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/*====================
  MOBILE (767px)
====================*/
@media (max-width: 767px) {
    .st-areas-hero {
        padding: 48px 24px;
    }
    
    .st-areas-hero-content h1 {
        font-size: 32px;
    }
    
    .st-areas-hero-content p {
        font-size: 16px;
    }
    
    .st-areas-hero-stats {
        gap: 12px;
    }
    
    .st-areas-hero-stat {
        flex: 1;
        flex-direction: column;
        text-align: center;
        min-width: 0;
        max-width: 110px;
        padding: 20px 12px;
        gap: 12px;
    }
    
    .st-areas-hero-stat i {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .st-areas-hero-stat strong {
        font-size: 24px;
    }
    
    .st-areas-hero-stat span {
        font-size: 11px;
    }
    
    .st-areas-hero-stat > *:not(i) {
        align-items: center;
    }
    
    .st-areas-map {
        height: 280px;
    }
    
    .st-areas-map-card {
        display: none;
    }
    
    .st-areas-primary {
        padding: 48px 24px;
    }
    
    .st-areas-primary header {
        margin-bottom: 32px;
    }
    
    .st-areas-primary h2 {
        font-size: 26px;
    }
    
    .st-areas-primary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .st-areas-primary-item {
        padding: 24px 16px;
    }
    
    .st-areas-primary-item i {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .st-areas-primary-item h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .st-areas-primary-item p {
        font-size: 13px;
    }
    
    .st-areas-secondary {
        padding: 48px 24px;
    }
    
    .st-areas-secondary h2 {
        font-size: 24px;
    }
    
    .st-areas-secondary-tags {
        gap: 10px;
    }
    
    .st-areas-secondary-tags span {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .st-areas-cta {
        padding: 48px 24px;
    }
    
    .st-areas-cta h2 {
        font-size: 24px;
    }
    
    .st-areas-cta p {
        font-size: 15px;
    }
    
    .st-areas-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }
    
    .st-areas-cta-btn,
    .st-areas-cta-phone {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 18px 24px;
        font-size: 16px;
    }
}

/*====================
  SMALL MOBILE (400px)
====================*/
@media (max-width: 400px) {
    .st-areas-hero {
        padding: 40px 20px;
    }
    
    .st-areas-hero-content h1 {
        font-size: 28px;
    }
    
    .st-areas-hero-stat {
        max-width: 95px;
        padding: 16px 10px;
    }
    
    .st-areas-hero-stat i {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .st-areas-hero-stat strong {
        font-size: 20px;
    }
    
    .st-areas-hero-stat span {
        font-size: 10px;
    }
    
    .st-areas-map {
        height: 240px;
    }
    
    .st-areas-primary {
        padding: 40px 20px;
    }
    
    .st-areas-primary h2 {
        font-size: 24px;
    }
    
    .st-areas-primary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .st-areas-primary-item {
        padding: 20px 16px;
    }
    
    .st-areas-primary-item i {
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .st-areas-primary-item h3 {
        font-size: 16px;
    }
    
    .st-areas-primary-item p {
        font-size: 13px;
    }
    
    .st-areas-secondary {
        padding: 40px 20px;
    }
    
    .st-areas-secondary h2 {
        font-size: 22px;
    }
    
    .st-areas-secondary-tags span {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .st-areas-cta {
        padding: 40px 20px;
    }
    
    .st-areas-cta h2 {
        font-size: 22px;
    }
    
    .st-areas-cta-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}