/*
Theme Name: AT&T Business Internet
Theme URI: 
Author: 
Author URI: 
Description: A custom theme for AT&T Business Internet page
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: att-business
*/

/* Font Declarations */
@font-face {
    font-family: 'AT&T Aleck Sans';
    src: url('fonts/attalecksans_wrc_rg.woff2') format('woff2'),
         url('fonts/attalecksans_wrc_rg.woff') format('woff'),
         url('fonts/attalecksans_wrc_rg.ttf') format('truetype'),
         url('fonts/attalecksans_wrc_rg.eot') format('embedded-opentype'),
         url('fonts/attalecksans_wrc_rg.svg#ATTAleckSansRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AT&T Aleck Sans';
    src: url('fonts/attalecksans_wrc_bd.woff2') format('woff2'),
         url('fonts/attalecksans_wrc_bd.ttf') format('truetype'),
         url('fonts/attalecksans_wrc_bd.eot') format('embedded-opentype'),
         url('fonts/attalecksans_wrc_bd.svg#ATTAleckSansBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: normal;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Base Styles - Mobile First */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.container-narrow {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
img.att-logo-banner {
    width: 200px;
    display: block;
    margin: 10px auto 12px;
}
.global-margin{
    margin-bottom: 30px;
}
/* Header Styles - Mobile First */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-nav {
    display: none;
}

.header-phone span {
    display: none;
}

.header-phone {
    padding: 8px;
    margin-left: auto;
}

.phone-icon {
    width: 24px;
    height: 24px;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 8px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    position: relative;
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #333;
    left: 0;
}

.menu-icon:before {
    top: -8px;
}

.menu-icon:after {
    bottom: -8px;
}

/* Mobile Menu (off-canvas) */
body.no-scroll {
    overflow: hidden;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1100;
}

.menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 360px;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1200;
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: -8px 0 20px rgba(0,0,0,0.08);
}

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

.mobile-menu .nav-link {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    padding: 12px 0;
}

.menu-icon,
.menu-icon:before,
.menu-icon:after {
    transition: transform 0.25s ease, background-color 0.2s ease;
}

.menu-toggle.is-open .menu-icon {
    background-color: transparent;
}

.menu-toggle.is-open .menu-icon:before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open .menu-icon:after {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0078d4;
}

/* Footer Styles */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 30px;
}

.site-footer .container-narrow {
    padding: 0 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-widget p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #0078d4;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #0078d4;
}

.site-info {

    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0078d4;
}

section.pricing-plans .container {
    background: #f3f4f6;
    padding: 80px 14px;
    border-radius: 12px;
}



/* First row - 3 cards */
.plans-grid:first-of-type {
    grid-template-columns: repeat(3, 1fr);
}

/* Second row - 2 centered cards */
.plans-grid:last-of-type {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66.67%; /* To match the width of 2 cards out of 3 */
    margin-left: auto;
    margin-right: auto;
}





.pricing-plans {
    padding: 2rem 0;
}



.type-42 {
    font-size: 4.5rem;
    line-height: 1;
}

.pricing-plans h2 {
    font-size: 1rem;
}

.btn-group {
    width: 100%;
}

.btn-group button {
    flex: 1;
}

.guarantee-content {
    flex-direction: column;
}

.guarantee-image {
    flex: 0 0 auto;
    max-width: 150px;
}

.standard-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.standard-features h2 {
    font-size: 2rem;
}

.standard-features .subtitle {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.offers-grid {
    grid-template-columns: 1fr;
}



.offer-col h2 {
    font-size: 1.875rem;
}

/* Features Grid - Mobile First */
.standard-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Business Offers - Mobile First */
.business-offers {
    padding: 0 0 30px 0;
}

/* Reset any potential grid settings */
.offers-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px;
    width: 100%;
}

.offer-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;
    color: #fff;
    width: 100%;
}

.offer-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}



.offer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.offer-col h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.2;
}



/* Form Layout - Mobile First */
.form-row {
    grid-template-columns: 1fr;
}

/* CTA Buttons - Mobile First */
.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn {
    width: 100%;
    max-width: 300px;
}

/* Typography - Mobile First */
.pricing-plans h2,
.features-section h2,
.standard-features h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-section h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-section .subtitle {
    font-size: 1.125rem;
}






/* Hero Section */
.hero-section {
    background-color: #fff;
    text-align: center;
    border-radius: 0;
}

.hero-section .section {
    background: #eee;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    padding: 60px 40px;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Features Section */
.features-section {
    padding: 40px 0;
    text-align: center;
    border-radius: 0;
    margin: 0;
}

.features-section .section {
    margin: 0 auto;
    box-shadow: none;
}

.features-section .type-eyebrow-xxl {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.2;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 2.5rem;
}



.feature {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    hyphens: auto;
    word-wrap: break-word;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.feature h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    width: 100%;
    line-height: 1.4;
}

.feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    hyphens: auto;
    word-wrap: break-word;
}

.features-disclaimer {
    font-size: 0.8rem;
    color: #666;

    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Pricing Plans Section */
.pricing-plans {
    background-color: var(--color-white);
}

.pricing-plans .section {
    text-align: center;
}



.pricing-plans .type-base {
    font-size: 1.125rem;
    color: var(--color-gray-700);
    margin-bottom: 2rem;
}

/* Toggle Plan Buttons */
.toggle-plan-btn {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.btn-group {
    display: inline-flex;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
    border: 2px solid #0057B8;
    padding: 0;
}

.btn-group button {
    padding: 12px 24px;
    border: none;
    background: none;
    color: #0057B8;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    min-width: 180px;
    position: relative;
}

.btn-group button.active {
    background-color: #0057B8;
    color: #fff;
}

.btn-group button:first-child {
    border-radius: 50px 0 0 50px;
}

.btn-group button:last-child {
    border-radius: 0 50px 50px 0;
}

.btn-group button:hover:not(.active) {
    background-color: rgba(0, 87, 184, 0.1);
}
.top-promotion-title{
    font-size: 24px; 
    line-height: 1.2;
}
.top-promotion-container{
    padding: 16px 0; text-align: center; background-color: #f2fafd; border-radius: 12px;
}
.gap-1{
    gap: 1rem;
}
/* Plans Grid */
.plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
#top-promotion {
    padding: 0 15px;
}
.plan-card {
    flex: 1 1 100%;
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}
.internet-air-card-note {
    color: gray;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.25;
}
/* Free Months Tag */
.js-best-plan-section p {
    background: #baeefc;
    padding: 5px 15px;
    border-radius: 4px;
}
.js-best-plan-section {
    background-color: var(--color-att-blue-200);
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.js-best-plan-section p {
    color: var(--color-gray-800);
    font-weight: 700;
    font-size: 0.75rem;
    margin: 0;
}

/* Plan Headings */
.plan-card h2 {
    font-size: 1rem;
    color: var(--color-gray-700);
    margin-bottom: 0;
}

.plan-card h3 {
    font-size: 2rem;
    color: var(--color-gray-900);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

/* Price Section */
.plan-card .price {
    margin-bottom: 1.5rem;
}

.plan-card .strikethrough {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: -10px;
    display: block;
}

.plan-card .price-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-card .dollar-symbol {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
    top: 5px;
}

.plan-card .price-note {
    font-size: 1rem;
    line-height: 1.2;
    color: #666;
    white-space: wrap;
    font-weight: bold;
}

.plan-card .js-disclaimer-price {
    margin-top: 8px;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #666;
}

.plan-card .js-disclaimer-price p {
    margin: 0;
    line-height: 1.4;
}

.plan-card .js-disclaimer-price a {
    color: #0057b8;
    text-decoration: none;
}

.plan-card .js-disclaimer-price a:hover {
    text-decoration: underline;
}

/* Features List */
.plan-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-item svg {
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.feature-item span {
    color: var(--color-gray-700);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Signature Section (for plans with 5G backup) */
.signature-section {
    margin: 0 0 1rem 0;
    padding: 1rem;
    background-color: #f2fafd;
    border-radius: 0.25rem;
}

.signature-section .flex {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signature-section  {

    display: flex;
    align-items: center;
    justify-content: center;
}

.signature-section img {
    width: 48px;
    height: 48px;
}

.signature-section p {
    font-weight: 700;
    color: #000;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.signature-section p img {
    vertical-align: middle;
    margin-left: 4px;
}

/* CTA Button */
.plan-card .btn {
    margin-top: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Text */
.legal-text {
    font-size: 0.75rem;
    color: var(--color-gray-600);
    line-height: 1.4;
    margin-top: 2rem;
}

.legal-text a {
    color: var(--color-att-blue);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}


section.att-guarantee-section {
    padding: 0 15px;
}


.att-guarantee-section .container-narrow {
    background-color: #009fdb ;
    border-radius: 8px;
    padding: 40px;
}

.att-guarantee-section .section {
    color: #fff;
}



.guarantee-text {
    flex: 1;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.guarantee-description {
    margin-bottom: 20px;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.guarantee-list svg {
    flex-shrink: 0;
}

.guarantee-list .color-att-blue {
    fill: #fff;
}

.guarantee-legal {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.guarantee-legal a {
    color: #fff;
    text-decoration: underline;
}

.guarantee-image {
    flex: 0 0 auto;
    max-width: 150px;
}

.guarantee-image img {
    width: 100%;
    height: auto;
    margin-right: 140px;
    display: block;
    margin-top:20px;
}



/* Contact Section - Mobile First */
.contact-section {
    padding: 30px 15px;
    background: #f3f4f6;
}

.contact-section .section {
    max-width: 100%;
    margin: 0 auto;
}



.standard-features .section {
    text-align: center;
}

/* Business Offers - Mobile First */
.business-offers {
    padding: 0 0 30px 0;
}

.offer-col {

    padding: 20px;
}






/* Root Variables */
:root {
    --font-primary: 'AT&T Aleck Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Base Typography */
body {
    font-family: var(--font-primary);
    font-weight: normal;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.site-title,
.nav-menu > li > a,
.btn,
.type-eyebrow-xxl,
.plan-card h2,
.plan-card h3,
.signature-section p,
.features-section h2,
.pricing-plans h2 {
    font-family: var(--font-primary);
    font-weight: bold;
}

/* Strong and Bold Text */
strong,
b,
.btn-primary,
.price .type-42,
.js-best-plan-section p {
    font-family: var(--font-primary);
    font-weight: bold;
}

/* Standard Features Section */
.standard-features {
    background-color: #f2fafd;
    padding: 40px 15px;
    border-radius: 12px;
}

.standard-features .section {
    text-align: center;
}

.standard-features h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 15px;
}

.standard-features .subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 15px;
}

.standard-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.standard-feature {
    background: none;
    padding: 20px;
    box-shadow: none;
    text-align: center;
}

.standard-feature img {
    margin-bottom: 20px;
}

.standard-feature h3 {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.standard-feature .disclaimer {
    font-size: 0.875rem;
    color: #666;
    margin-top: 5px;
    line-height: 1.2;
}
/* Responsive Design */


/* Business Offers Section */
.business-offers {
    padding: 0 0 30px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.offer-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    color: #fff;
}

.offer-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.left-col::before {
    background-image: linear-gradient(to right, rgba(0,0,0), rgba(0,0,0,0.6)), url('images/bg-1.jpg');
    background-position: right;
}

.right-col::before {
    background-image: linear-gradient(rgb(0 0 0), rgb(0 0 0 / 0%)), url('images/bg-2.jpg');
}
#free-gateway.right-col::before {
    background-image: linear-gradient(rgb(0 0 0), rgb(0 0 0 / 31%)), url('images/bg-3.jpg');
}
.offer-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.offer-col h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.offer-col h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: #fff;
}

.offer-col .subtitle {
    font-size: 1.125rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.offer-col .value-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 16px;
}

.offer-col .disclaimer {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.1;
}

.offer-col .disclaimer a {
    color: #fff;
    text-decoration: underline;
}

.offer-col .btn {
    background-color: #fff;
    color: #0057B8;
}

.offer-col .btn:hover {
    background-color: #f5f5f5;
}






/* Base Form Styles - Mobile First */
.form-row {
    display: grid;
    gap: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    height: 56px;
    font-family: var(--font-primary);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
    opacity: 1;
    font-family: var(--font-primary);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px auto;
    justify-content: center;
}

.form-group.checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.form-group.checkbox label {
    font-size: 14px;
    color: #666;
    text-align: left;
}

/* Button Styles - Mobile First */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #00388f;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.btn:hover {
    background-color: #002b6f;
}

.btn-secondary {
    background-color: #666;
}

.btn-secondary:hover {
    background-color: #444;
}

/* Form Messages */
.form-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.no-btn-margin {
    margin-bottom: 0 !important;
}





.guarantee-image {
    flex: 0 0 auto;
    max-width: 150px;
}





/* Base Mobile Styles */
.hero-section {
    padding: 20px 0;
}

.hero-section h1 {
    font-size: 2rem;
}

.subtitle {
    font-size: 1.125rem;
}

.features-section h2 {
    font-size: 2rem;
    line-height: 1.2;
}

.features-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    display: grid;
    justify-items: center;
}

.feature {
    max-width: 100%;
}



.guarantee-image {
    flex: 0 0 auto;
    max-width: 150px;
}





    .btn-group {
        width: 100%;
    }

    .btn-group button {
        flex: 1;
    }


/* Base Mobile Styles */
.site-logo {
    display: flex;
    align-items: center;
    height: 45px;
}

.site-logo img {
    height: 100%;
    width: auto;
    display: block;
}
#standard-features{
    padding: 0 15px;
}
.d-flex{
    display: flex;
}
.justify-content-between{
    justify-content: space-between;
}
.justify-content-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.align-items-start{
    align-items: flex-start;
}
h2.hero-section-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
}
.legal-text-hero {
    font-size: 14px;
    margin-bottom: 2rem;
}
sup {
    font-size: 50%;
}

.hero-section.internet-air-hero{
    text-align: left;
}
.hero-col {
    width: 100%;
}
.legal-note {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.feature-item.hero span {
    color: var(--color-gray-700);
    font-size: 1.45rem;
    line-height: 1.4;
}
.price-amount {
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
}
.feature-item.hero {
    margin-bottom: .5rem;
}
.price-row.hero {
    display: flex;
    align-items: center;
    gap: 3px;
}
.hero .dollar-symbol {
    font-weight: bold;
    font-size: 36px;
}
.strikethrough {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: -16px;
    display: block;
}

.internet-air-hero.hero-section .section {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0) 100%), url(images/air-hero-bg.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    padding: 60px 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    flex-direction: column;
}
svg.color-white {
    fill: white;
}
a.dark-bg-link{
    color:white !important;
}
h2.air-hero-section-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 15px;
}
.hero-col .strikethrough {
    color: white;
}
.hero-col  .btn {
    background-color: #fff;
    color: #0057B8;
}
.section-form {
    background-color: #f2fafd;
    border-radius: 12px;
    padding: 50px 0;
}
.section-form h2 {
    line-height: 1.2;
    margin-bottom: 15px;
}
.flex-column {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
img.att-router {
    width: 130px;
}
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group .error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-group input.error + .error-message,
.form-group textarea.error + .error-message {
    display: block;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

a.btn.btn-secondary,
a.btn.btn-primary
 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
a.header-phone {
    display: flex;
    text-decoration: none;
    color: inherit;
    gap: 4px;
}
/******************/
/******************/
/******************/
/******************/
/******************/
/* larger screen */
/******************/
/******************/
/******************/
/******************/
/******************/

@media (min-width: 768px) {
    /* Layout / Grid */
    .header-content {
      justify-content: space-between;
    }
    .plans-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .standard-features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .offers-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .form-row:first-child {
      grid-template-columns: 1fr 1fr;
    }
    .form-row:nth-child(2) {
      grid-template-columns: repeat(3, 1fr);
    }
  
    /* Buttons / Groups */
    .btn-group {
      width: auto;
    }
    .btn-group button {
      flex: 0 1 auto;
    }
    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
    .btn {
      width: auto;
      min-width: 200px;
    }
  
    /* Pricing Plans */
    .pricing-plans {
      padding: 3rem 0;
    }

    .plan-card {
      padding: 2rem;
    }
  
    /* Headings / Typography */
    .type-42 {
      font-size: 2.25rem;
    }
    .hero-section h1 {
      font-size: 3rem;
    }
    .subtitle {
      font-size: 1.5rem;
    }

    .pricing-plan-title{
        font-size: 2.5rem !important;
    }
    /* Standard Features */
    .standard-features {
      padding: 40px 0;
    }
  
    /* Offers */
    .offer-col {
      padding: 40px;
    }
    .offer-col h2 {
      font-size: 2rem;
    }
    .offer-content {
      max-width: 400px;
    }
  
    /* Guarantee */

    .guarantee-image {
      flex: 0 0 200px;
      max-width: none;
    }
  
    /* Contact */
    .contact-section {
      padding: 60px 0;
    }
    .contact-section .section {
      max-width: 800px;
    }
    .contact-form button[type="submit"] {
      min-width: 200px;
    }
    .form-group.checkbox {
        margin: 20px auto;
        max-width: 515px;
    }
  
    /* Header / Navigation */
    .header-nav {
      display: flex;
      gap: 24px;
      flex: 1;
      justify-content: center;
    }
    .header-phone {
      margin-left: 0;
    }
    .menu-toggle {
      display: none;
    }
    .header-phone span {
      display: inline;
    }
    .header-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #000;
      text-decoration: none;
      font-size: 30px;
      font-weight: 500;
    }
    .phone-icon {
      width: 20px;
      height: 20px;
    }
    .nav-menu {
      display: flex;
    }
    .nav-link {
      color: #000;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      padding: 8px 0;
      position: relative;
    }
    .nav-link:hover {
      color: #0057B8;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #0057B8;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .nav-link:hover::after {
      transform: scaleX(1);
    }
    .site-logo {
      height: 65px;
    }
  
    /* Guarantee (duplicate cleanup) */
    .guarantee-content {
        display: flex
        ;
      flex-direction: row;
    }
    .guarantee-image {
      flex: 0 0 200px;
    }
    
    /* Plans Section */
    .plans-grid {
        justify-content: center;
    }
    
    .plan-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    .plans-grid:last-of-type {
        max-width: 100%;
    }
    
    .plans-grid:last-of-type .plan-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    .features-grid {
        gap: 20px;
    }
    .feature {
        padding: 2rem;
    }
    .guarantee-image img {
        width: 300px;
        margin-top:0;
    }
    .hero-section .section {
        margin-left: -15px;
        margin-right: -15px;
    }
    h2.hero-section-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 18px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        font-weight: bold;
    }
    .hero-section {
        padding: 0;
    }

}
  
@media (min-width: 1024px) {
    img.att-router {
        width: 160px;
    }
    .internet-air-hero.hero-section .section {
        flex-direction: row;
    }
    .form-row {
        gap: 20px;
    }
    .hero-col {
        width: 40%;
    }
    .flex-column.flex-lg-row {
        flex-direction: row;
    }
    .left-col::before {
        background-image: linear-gradient(to right, rgba(0,0,0), rgba(0,0,0,0.0)), url('images/bg-1.jpg');
        background-position: center;
    }
    .hero-section .section {
        background: radial-gradient(circle at center, rgb(255 255 255 / 75%) 1%, rgba(0, 0, 0, 0) 100%), url(images/hero-bg.jpg);
        background-position: center;
    }
    /* Plans & Standard Features */
    .plans-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .standard-features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .features-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
  
    /* Offers */
    .offers-grid {
      grid-template-columns: 2fr 1fr !important;
    }

    .offer-col h2 {
      font-size: 2.25rem;
    }
    .offer-content {
      max-width: 400px;
    }
  
    /* Typography / Sizing */
    .pricing-plans {
      padding: 0;
    }
    .type-42 {
      font-size: 2.625rem;
    }
    

    
    .plan-card {
        flex: 1 1 calc(33.333% - 1.334rem);
        max-width: calc(33.333% - 1.334rem);
    }
    
    .plans-grid:last-of-type {
        justify-content: center;
        max-width: 66.67%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .plans-grid:last-of-type .plan-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    section.pricing-plans .container {
        background: #f3f4f6;
        padding: 50px 50px;
        border-radius: 12px;
    }
}
  
@media (min-width: 1400px) {
    .container {
      max-width: 1200px;
    }
    .container-narrow {
      max-width: 1000px;
    }
}
  
@media (min-width: 1600px) {
    .container {
      max-width: 1400px;
    }
    .container-narrow {
      max-width: 1200px;
    }
}
  
@media (min-width: 1920px) {
    .container {
      max-width: 1600px;
    }
    .container-narrow {
      max-width: 1324px;
    }
  }
  