/* AppWT.com Mobile Layout Optimization */
/* Prefix: .developed-by-appwt-llc- as per mandate */
/* Priority Fixes: Weather widget, Floating CTA, Reviews widget, Typography */

/* =====================================================
   CORE MOBILE FIXES - APPLY FIRST
   ===================================================== */

.developed-by-appwt-llc-mobile-container {
    max-width: calc(100vw - 20px);
    overflow-x: hidden;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Prevent horizontal overflow globally */
.developed-by-appwt-llc-overflow-fix {
    max-width: 100vw;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Global fixed element protection - prevent buttons from causing horizontal scroll */
button[style*="position: fixed"],
button[style*="position:fixed"],
.back-to-top,
.developed-by-appwt-llc-back-to-top,
.fixed-consult-btn,
.accessibility-tool {
    max-width: calc(100vw - 10px) !important;
    box-sizing: border-box !important;
}

/* =====================================================
   BADGE STYLES - BASE AND RESPONSIVE
   ===================================================== */

/* Rotating Award Badge Fix */
a#rotatingAwardBadge,
.developed-by-appwt-llc-rotating-award-badge {
    line-height: 120% !important;
}

/* Base Badge Row Styles - See main definition below line 670 */
/* .developed-by-appwt-llc-badges-row is defined in SITE-WIDE BADGE DISPLAY ROW section */

.developed-by-appwt-llc-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 180px;
    min-height: 120px;
    padding: 16px;
    box-sizing: border-box;
}

/* =====================================================
   WEATHER WIDGET FIXES - PRIORITY 1
   ===================================================== */

.developed-by-appwt-llc-weather-widget {
    background: linear-gradient(135deg, #1B4332 0%, #0D2818 100%);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    width: 100%;
    max-width: calc(100vw - 20px);
    box-sizing: border-box;
    color: #00D4FF;
    font-size: clamp(12px, 2.5vw, 16px);
    line-height: 1.4;
    text-align: center;
    word-wrap: break-word;
    overflow: hidden;
}

.developed-by-appwt-llc-weather-widget .temperature {
    color: #F4A261;
    font-weight: bold;
    font-size: clamp(16px, 4vw, 22px);
    display: block;
    margin: 5px 0;
}

.developed-by-appwt-llc-weather-widget .weather-info {
    white-space: normal;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* =====================================================
   FLOATING FREE CONSULT BUTTON - PRIORITY 2
   ===================================================== */

.developed-by-appwt-llc-floating-cta {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: linear-gradient(45deg, #F4A261, #FFD700);
    color: #1B4332;
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 20px 12px;
    font-weight: bold;
    font-size: clamp(14px, 3vw, 18px);
    cursor: pointer;
    z-index: 998;
    box-shadow: -3px 0 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.developed-by-appwt-llc-floating-cta:hover,
.developed-by-appwt-llc-floating-cta:active {
    transform: translateY(-50%) translateX(-8px);
    box-shadow: -6px 0 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #B8941C 0%, #D4AF37 100%);
}

/* Touch-friendly sizing for mobile */
@media (max-width: 768px) {
    .developed-by-appwt-llc-floating-cta {
        padding: 18px 10px;
        font-size: 14px;
        min-height: 100px;
        right: 3px;
    }
}

/* =====================================================
   GOOGLE REVIEWS WIDGET - PRIORITY 3
   ===================================================== */

.developed-by-appwt-llc-reviews-widget {
    position: fixed;
    bottom: 20px;
    left: 10px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    z-index: 999;
    max-width: 220px;
    min-width: 180px;
    transform: translateX(-100%);
    animation: slideInReviews 0.8s ease-out 3s forwards;
    font-size: clamp(11px, 2vw, 14px);
}

.developed-by-appwt-llc-reviews-widget h4 {
    color: #1B4332;
    margin: 0 0 8px 0;
    font-size: clamp(12px, 2.2vw, 16px);
}

.developed-by-appwt-llc-reviews-widget .stars {
    color: #FFD700;
    font-size: clamp(14px, 3vw, 18px);
    margin: 5px 0;
}

.developed-by-appwt-llc-reviews-widget .review-text {
    color: #333;
    line-height: 1.3;
    margin-bottom: 8px;
}

@keyframes slideInReviews {
    to {
        transform: translateX(0);
    }
}

/* Hide ALL old badge placements and duplicate elements - now using horizontal badge row */
.developed-by-appwt-llc-bbb-seal,
.developed-by-appwt-llc-google-review-badge,
.developed-by-appwt-llc-designrush-badge-container,
.developed-by-appwt-llc-reviews-widget,
.developed-by-appwt-llc-mobile-review-badge {
    display: none !important;
}

/* Mobile Review Badge - Small and Simple */
.developed-by-appwt-llc-mobile-review-badge {
    position: fixed;
    bottom: 20px;
    left: 10px;
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 996;
    display: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.developed-by-appwt-llc-mobile-review-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.developed-by-appwt-llc-mobile-review-stars {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 3px;
}

.developed-by-appwt-llc-mobile-review-rating {
    color: #333;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 4px;
}

.developed-by-appwt-llc-mobile-review-btn {
    color: #4285F4;
    font-size: 9px;
    font-weight: 500;
    text-decoration: none;
}

/* Show mobile review badge only on mobile */
@media (max-width: 768px) {
    .developed-by-appwt-llc-mobile-review-badge {
        display: block !important;
    }
}

/* =====================================================
   RESPONSIVE TYPOGRAPHY - PRIORITY 4
   ===================================================== */

.developed-by-appwt-llc-responsive-heading-1 {
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: clamp(16px, 3vw, 24px);
}

.developed-by-appwt-llc-responsive-heading-2 {
    font-size: clamp(24px, 5vw, 40px);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: clamp(14px, 2.5vw, 20px);
}

.developed-by-appwt-llc-responsive-heading-3 {
    font-size: clamp(20px, 4vw, 32px);
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: clamp(12px, 2vw, 18px);
}

.developed-by-appwt-llc-responsive-text {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.6;
    margin-bottom: clamp(12px, 2vw, 16px);
}

.developed-by-appwt-llc-responsive-small-text {
    font-size: clamp(12px, 2.5vw, 16px);
    line-height: 1.5;
}

/* =====================================================
   MOBILE-FIRST CONTAINERS
   ===================================================== */

.developed-by-appwt-llc-responsive-container {
    width: 100%;
    max-width: calc(100vw - 20px);
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Grid System - Mobile First */
.developed-by-appwt-llc-grid {
    display: grid;
    gap: clamp(15px, 3vw, 30px);
    grid-template-columns: 1fr;
    width: 100%;
}

@media (min-width: 768px) {
    .developed-by-appwt-llc-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .developed-by-appwt-llc-responsive-container {
        padding: 0 20px;
    }
}

@media (min-width: 1024px) {
    .developed-by-appwt-llc-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* =====================================================
   HEADER & NAVIGATION FIXES
   ===================================================== */

.developed-by-appwt-llc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(5px, 2vw, 20px) clamp(5px, 3vw, 30px);
    background: #1B4332;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 60px;
    width: 100%;
}

/* Mobile Header Optimizations */
@media (max-width: 1188px) {
    .developed-by-appwt-llc-header {
        padding: 5px;
        width: 100%;
        max-width: 100%;
    }
    
    .developed-by-appwt-llc-header-content {
        padding: 5px;
        width: 100%;
        max-width: 100%;
    }
    
    .developed-by-appwt-llc-login-btn {
        padding: 5px 8px !important;
        font-size: 0.75rem !important;
        margin-right: 3px !important;
        white-space: nowrap !important;
        min-width: auto !important;
    }
    
    .developed-by-appwt-llc-quote-btn {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        min-width: auto !important;
    }
}

.developed-by-appwt-llc-logo {
    max-width: clamp(100px, 20vw, 180px);
    height: auto;
}

.developed-by-appwt-llc-nav-menu {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
    align-items: center;
}

/* Mobile Navigation Improvements */
.developed-by-appwt-llc-mobile-nav {
    background: #000000 !important;
    border-top: 2px solid #F4A261;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    z-index: 999999 !important;
}

/* Z-index Priority Fixes */
.developed-by-appwt-llc-header {
    z-index: 10000 !important;
}

.developed-by-appwt-llc-mobile-nav {
    z-index: 999999 !important;
}

.developed-by-appwt-llc-designrush-badge {
    z-index: 100 !important;
}

.developed-by-appwt-llc-floating-cta {
    z-index: 998 !important;
}

.developed-by-appwt-llc-reviews-widget {
    z-index: 997 !important;
}

.developed-by-appwt-llc-mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.developed-by-appwt-llc-mobile-nav-menu li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    line-height: 1.2;
}

.developed-by-appwt-llc-mobile-nav-menu li:last-child {
    border-bottom: none;
}

.developed-by-appwt-llc-mobile-nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.developed-by-appwt-llc-mobile-nav-menu a:hover,
.developed-by-appwt-llc-mobile-nav-menu a.active {
    background: rgba(212, 175, 55, 0.15);
    color: #F4A261;
    transform: translateX(5px);
}

/* Mobile menu toggle */
@media (max-width: 768px) {
    .developed-by-appwt-llc-nav-menu {
        display: none;
    }
    
    .developed-by-appwt-llc-mobile-menu-toggle {
        display: block;
        background: #F4A261;
        border: none;
        padding: 8px 12px;
        border-radius: 5px;
        color: #1B4332;
        font-weight: bold;
        cursor: pointer;
    }
}

/* =====================================================
   HERO SECTION OPTIMIZATION
   ===================================================== */

.developed-by-appwt-llc-hero-section {
    padding: clamp(30px, 6vw, 60px) clamp(15px, 3vw, 30px);
    background: linear-gradient(135deg, #0D2818 0%, #1B4332 100%);
    color: #F8F9FA;
    text-align: center;
    min-height: clamp(400px, 60vh, 600px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.developed-by-appwt-llc-hero-title {
    font-size: clamp(28px, 6vw, 54px);
    font-weight: 700;
    color: #F4A261;
    margin-bottom: clamp(20px, 4vw, 30px);
    line-height: 1.1;
    max-width: 100%;
    word-wrap: break-word;
}

.developed-by-appwt-llc-hero-subtitle {
    font-size: clamp(16px, 3.5vw, 24px);
    color: #E6E6FA;
    margin-bottom: clamp(25px, 5vw, 40px);
    max-width: 600px;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
}

/* =====================================================
   BUTTON OPTIMIZATION
   ===================================================== */

.developed-by-appwt-llc-btn {
    background: linear-gradient(135deg, #F4A261, #FFD700);
    color: #1B4332;
    border: none;
    border-radius: 25px;
    padding: clamp(12px, 2.5vw, 18px) clamp(20px, 4vw, 32px);
    font-weight: 600;
    font-size: clamp(14px, 3vw, 18px);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px; /* Touch-friendly */
    min-width: 44px;
    text-align: center;
    box-sizing: border-box;
}

.developed-by-appwt-llc-btn:hover,
.developed-by-appwt-llc-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 162, 97, 0.4);
}

.developed-by-appwt-llc-btn-secondary {
    background: transparent;
    color: #F4A261;
    border: 2px solid #F4A261;
}

.developed-by-appwt-llc-btn-secondary:hover {
    background: #F4A261;
    color: #1B4332;
}

/* Button groups */
.developed-by-appwt-llc-btn-group {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
    margin: clamp(20px, 4vw, 30px) 0;
}

/* =====================================================
   FORM OPTIMIZATION
   ===================================================== */

.developed-by-appwt-llc-form {
    max-width: 100%;
    width: 100%;
    padding: clamp(20px, 4vw, 30px);
    background: rgba(20, 20, 20, 0.95);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.developed-by-appwt-llc-form-group {
    margin-bottom: clamp(15px, 3vw, 25px);
}

.developed-by-appwt-llc-form-label {
    display: block;
    color: #E6E6FA;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: clamp(14px, 2.5vw, 16px);
}

.developed-by-appwt-llc-form-input,
.developed-by-appwt-llc-form-select,
.developed-by-appwt-llc-form-textarea {
    width: 100%;
    padding: clamp(12px, 2.5vw, 16px);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: #F8F9FA;
    font-family: inherit;
    font-size: clamp(14px, 2.5vw, 16px);
    min-height: 44px; /* Touch-friendly */
    box-sizing: border-box;
}

.developed-by-appwt-llc-form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* =====================================================
   CARD COMPONENTS
   ===================================================== */

.developed-by-appwt-llc-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: clamp(20px, 4vw, 30px);
    margin-bottom: clamp(20px, 4vw, 30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.developed-by-appwt-llc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* =====================================================
   AWARDS BADGE POSITIONING
   ===================================================== */

.developed-by-appwt-llc-awards-badge {
    background: #F8F9FA;
    border-radius: 12px;
    padding: clamp(15px, 3vw, 25px);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin: clamp(15px, 3vw, 25px) 0;
    display: inline-block;
    max-width: 100%;
}

.developed-by-appwt-llc-awards-badge img {
    max-width: clamp(60px, 15vw, 100px);
    height: auto;
    margin-bottom: 10px;
}

.developed-by-appwt-llc-awards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: clamp(20px, 4vw, 40px) 0;
}

/* =====================================================
   LOADING & ANIMATION OPTIMIZATIONS
   ===================================================== */

.developed-by-appwt-llc-lazy-load {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.developed-by-appwt-llc-lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce animations on slower devices */
@media (prefers-reduced-motion: reduce) {
    .developed-by-appwt-llc-lazy-load,
    .developed-by-appwt-llc-floating-cta,
    .developed-by-appwt-llc-btn,
    .developed-by-appwt-llc-card {
        transition: none !important;
        animation: none !important;
    }
}

/* =====================================================
   SITE-WIDE BADGE DISPLAY ROW - 4 BADGES LAYOUT
   ===================================================== */

.developed-by-appwt-llc-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1000px;
    justify-items: center;
    align-items: stretch;
}

/* Tablet: 2x2 grid */
@media (max-width: 900px) {
    .developed-by-appwt-llc-badges-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        gap: 15px;
        padding: 15px;
    }
}

/* Mobile: 2x2 grid, smaller */
@media (max-width: 500px) {
    .developed-by-appwt-llc-badges-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 340px;
        gap: 10px;
        padding: 10px;
    }
}

.developed-by-appwt-llc-badge-item {
    background: white;
    border-radius: 12px;
    padding: 15px 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    min-height: 110px;
    max-height: 130px;
    width: 100%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.developed-by-appwt-llc-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Google Badge */
.developed-by-appwt-llc-google-badge {
    border: 1px solid #4285F4;
}

.developed-by-appwt-llc-google-badge .badge-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.developed-by-appwt-llc-google-badge .badge-logo .g1 { color: #4285F4; }
.developed-by-appwt-llc-google-badge .badge-logo .g2 { color: #EA4335; }
.developed-by-appwt-llc-google-badge .badge-logo .g3 { color: #FBBC04; }
.developed-by-appwt-llc-google-badge .badge-logo .g4 { color: #4285F4; }
.developed-by-appwt-llc-google-badge .badge-logo .g5 { color: #34A853; }
.developed-by-appwt-llc-google-badge .badge-logo .g6 { color: #EA4335; }

.developed-by-appwt-llc-google-badge .badge-stars {
    color: #FFD700;
    font-size: 18px;
    margin: 5px 0;
}

.developed-by-appwt-llc-google-badge .badge-rating {
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

/* DesignRush Badge */
.developed-by-appwt-llc-designrush-badge {
    border: 1px solid #FF6B35;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F5 100%);
}

.developed-by-appwt-llc-designrush-badge:hover {
    border-color: #E55A2B;
    background: linear-gradient(135deg, #FFF8F5 0%, #FFEDE5 100%);
}

.developed-by-appwt-llc-designrush-badge .badge-logo.designrush-logo {
    font-size: 16px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.developed-by-appwt-llc-designrush-badge .badge-stars {
    color: #FF6B35;
    font-size: 16px;
    margin: 5px 0;
}

.developed-by-appwt-llc-designrush-badge .badge-rating {
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

/* BBB Badge - Custom Design with Local Image */
.developed-by-appwt-llc-bbb-badge-custom {
    border: 1px solid #D4AF37;
    background: #FFFFFF;
    color: #1B4332;
}

.developed-by-appwt-llc-bbb-badge-custom:hover {
    background: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.bbb-custom-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding: 8px;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

.bbb-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 40%;
}

.bbb-flame-logo {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 2px;
}

.bbb-text {
    font-size: clamp(14px, 2.8vw, 18px);
    font-weight: bold;
    color: #000000;
    line-height: 1;
}

.bbb-accredited {
    font-size: clamp(8px, 1.5vw, 10px);
    color: #666666;
    text-align: center;
    line-height: 1.1;
    margin-top: 2px;
}

.bbb-seal-image {
    width: 60px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.bbb-rating-section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: right;
    align-items: flex-end;
    justify-content: center;
}

.bbb-rating-label {
    font-size: clamp(10px, 2vw, 12px);
    color: #333333;
    margin-bottom: 2px;
    font-weight: 500;
    text-align: right;
}

.bbb-rating-grade {
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: bold;
    color: #000000;
    margin-bottom: 4px;
    text-align: right;
}

.bbb-date-dynamic {
    font-size: clamp(8px, 1.8vw, 10px);
    color: #666666;
    margin-bottom: 4px;
    text-align: right;
}

.bbb-click-text {
    font-size: clamp(9px, 1.9vw, 11px);
    color: #0066CC;
    font-weight: 500;
    text-decoration: none;
    text-align: right;
}

.developed-by-appwt-llc-bbb-badge-custom:hover .bbb-profile-link {
    color: #004499;
}

.developed-by-appwt-llc-bbb-badge .badge-logo {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: bold;
    color: #F4A261;
    margin-bottom: 5px;
}

.developed-by-appwt-llc-bbb-badge .badge-rating {
    font-size: clamp(16px, 3vw, 20px);
    color: #F4A261;
    font-weight: bold;
    margin: 3px 0;
}

.developed-by-appwt-llc-bbb-badge .badge-text {
    font-size: clamp(10px, 2vw, 12px);
    color: #E6E6FA;
}

/* DesignRush Badge - White Background with Dark Text */
.developed-by-appwt-llc-designrush-badge-new {
    border: 2px solid #D4AF37;
    background: white;
    color: #1B4332;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.developed-by-appwt-llc-designrush-badge-new .badge-icon {
    font-size: clamp(18px, 3.5vw, 24px);
    /* Emoji icons display naturally - no color override needed */
    margin-bottom: 5px;
}

.developed-by-appwt-llc-designrush-badge-new .badge-title {
    font-size: clamp(13px, 2.5vw, 16px);
    color: #000000;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: center;
}

.developed-by-appwt-llc-designrush-badge-new .badge-subtitle {
    font-size: clamp(11px, 2vw, 14px);
    color: #4B5563;
    font-weight: 600;
    text-align: center;
}

/* Tablet Responsive (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .developed-by-appwt-llc-badges-row {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
        padding: 20px 15px !important;
        max-width: 900px !important;
    }

    .developed-by-appwt-llc-badge-item {
        min-height: 110px !important;
        max-height: 130px !important;
        padding: 12px 8px !important;
        font-size: 14px !important;
        max-width: 200px !important;
    }

    /* Tablet DesignRush badge text sizes */
    .developed-by-appwt-llc-designrush-badge-new .badge-icon {
        font-size: 28px !important;
        margin-bottom: 6px !important;
    }

    .developed-by-appwt-llc-designrush-badge-new .badge-title {
        font-size: 16px !important;
        margin-bottom: 3px !important;
    }

    .developed-by-appwt-llc-designrush-badge-new .badge-subtitle {
        font-size: 14px !important;
    }
}

/* =====================================================
   TRUST BADGES ROW - DESKTOP BASE STYLES
   ===================================================== */
.developed-by-appwt-llc-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    justify-items: center;
    align-items: stretch;
}

.developed-by-appwt-llc-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    width: 100%;
    box-sizing: border-box;
}

.developed-by-appwt-llc-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Google badge colors */
.developed-by-appwt-llc-google-badge .badge-logo .g1 { color: #4285F4; }
.developed-by-appwt-llc-google-badge .badge-logo .g2 { color: #EA4335; }
.developed-by-appwt-llc-google-badge .badge-logo .g3 { color: #FBBC05; }
.developed-by-appwt-llc-google-badge .badge-logo .g4 { color: #4285F4; }
.developed-by-appwt-llc-google-badge .badge-logo .g5 { color: #34A853; }
.developed-by-appwt-llc-google-badge .badge-logo .g6 { color: #EA4335; }

.developed-by-appwt-llc-google-badge .badge-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.developed-by-appwt-llc-google-badge .badge-stars {
    color: #FBBC05;
    font-size: 18px;
    margin-bottom: 5px;
}

.developed-by-appwt-llc-google-badge .badge-rating {
    font-size: 12px;
    color: #666;
}

/* DesignRush badge */
.developed-by-appwt-llc-designrush-badge .badge-logo {
    font-size: 16px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.developed-by-appwt-llc-designrush-badge .badge-stars {
    color: #FF6B35;
    font-size: 16px;
    margin-bottom: 5px;
}

.developed-by-appwt-llc-designrush-badge .badge-rating {
    font-size: 12px;
    color: #666;
}

/* BBB badge - adjust internal layout */
.developed-by-appwt-llc-bbb-badge-custom .bbb-seal-image {
    width: 50px;
    height: auto;
}

/* =====================================================
   TRUST BADGES ROW - MOBILE RESPONSIVE
   ===================================================== */

/* Mobile Responsive (768px and below) - UNIFORM ELEGANT BADGES */
@media (max-width: 768px) {
    .developed-by-appwt-llc-badges-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 12px !important;
        max-width: 400px !important;
        margin: 15px auto !important;
    }

    /* ALL badges same size - uniform elegant look with desktop-size fonts */
    .developed-by-appwt-llc-badge-item,
    .developed-by-appwt-llc-bbb-badge-custom,
    .developed-by-appwt-llc-google-badge,
    .developed-by-appwt-llc-designrush-badge,
    .developed-by-appwt-llc-designrush-badge-new,
    #rotatingAwardBadge,
    .developed-by-appwt-llc-rotating-award-badge {
        height: 130px !important;
        min-height: 130px !important;
        max-height: 140px !important;
        padding: 15px 10px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    /* Google badge - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-google-badge .badge-logo {
        font-size: 22px !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-stars {
        font-size: 18px !important;
        margin: 5px 0 !important;
        line-height: 1 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-rating {
        font-size: 12px !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;
    }

    /* DesignRush badge - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-designrush-badge .badge-logo,
    .developed-by-appwt-llc-designrush-badge-new .badge-icon {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-stars,
    .developed-by-appwt-llc-designrush-badge-new .badge-title {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        line-height: 1.1 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-rating,
    .developed-by-appwt-llc-designrush-badge-new .badge-subtitle {
        font-size: 12px !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
    }

    /* BBB Badge - clean uniform look */
    .developed-by-appwt-llc-bbb-badge-custom {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .bbb-custom-container,
    .bbb-center-row-1 {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
        padding: 0 !important;
    }

    .bbb-center-row-1 {
        flex-direction: row !important;
        gap: 6px !important;
    }

    .bbb-seal-image {
        width: 32px !important;
        height: auto !important;
        max-height: 40px !important;
    }

    .bbb-center-col-2 {
        text-align: left !important;
    }

    .bbb-center-rating-label {
        font-size: 9px !important;
        line-height: 1.1 !important;
    }

    .bbb-center-rating-grade {
        font-size: 16px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
    }

    .bbb-center-date-text {
        font-size: 7px !important;
        line-height: 1.1 !important;
    }

    .bbb-center-row-2,
    .bbb-center-click-text {
        font-size: 8px !important;
        margin-top: 2px !important;
    }

    /* Rotating Award Badge - SAME SIZE AS DESKTOP */
    #rotatingAwardBadge .badge-icon,
    .developed-by-appwt-llc-rotating-award-badge .badge-icon {
        font-size: 24px !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
    }

    #rotatingAwardBadge .badge-title,
    .developed-by-appwt-llc-rotating-award-badge .badge-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        font-weight: 600 !important;
    }

    #rotatingAwardBadge .badge-subtitle,
    .developed-by-appwt-llc-rotating-award-badge .badge-subtitle {
        font-size: 12px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        font-weight: 600 !important;
    }

    .bbb-custom-container {
        background: rgba(255,255,255,0.95) !important;
        border-radius: 8px !important;
    }
    
    .bbb-seal-image {
        width: 80px !important;
        max-height: 64px !important;
        min-width: 80px !important;
        min-height: 64px !important;
        flex-shrink: 0 !important;
    }
    
    /* MOBILE BBB BADGE - SMALLER TEXT SIZES */
    body .bbb-rating-text {
        font-size: 18px !important;
        margin: 0 !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        text-align: center !important;
        font-weight: 700 !important;
        color: #000000 !important;
        display: block !important;
    }
    
    body .bbb-rating-text strong {
        font-size: 20px !important;
        color: #000000 !important;
        font-weight: 700 !important;
        display: block !important;
        text-align: center !important;
        margin-top: 2px !important;
    }
    
    body .bbb-date-text {
        font-size: 14px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-align: left !important;
        color: #000000 !important;
        margin: 2px 0 !important;
        font-weight: 600 !important;
    }
    
    body .bbb-profile-link {
        font-size: 16px !important;
        margin: 4px 0 0 0 !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        text-align: center !important;
        color: #0066CC !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        cursor: pointer !important;
        background: rgba(255,255,255,0.9) !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
        border: none !important;
    }
    
    .bbb-top-section {
        gap: 6px !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 1 !important;
    }
    
    .bbb-info-section {
        min-width: 0 !important;
        flex: 1 !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: left !important;
    }
}

/* 480px - UNIFORM SQUARE-ISH ELEGANT BADGES */
@media (max-width: 480px) {
    .developed-by-appwt-llc-badges-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 10px !important;
        max-width: 100% !important;
        margin: 10px auto !important;
    }

    /* ALL badges SAME SIZE - uniform elegant squares with larger height for desktop-size fonts */
    .developed-by-appwt-llc-badge-item,
    .developed-by-appwt-llc-bbb-badge-custom,
    .developed-by-appwt-llc-google-badge,
    .developed-by-appwt-llc-designrush-badge,
    .developed-by-appwt-llc-designrush-badge-new,
    #rotatingAwardBadge,
    .developed-by-appwt-llc-rotating-award-badge {
        width: 100% !important;
        height: 120px !important;
        min-height: 120px !important;
        max-height: 130px !important;
        padding: 12px 8px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Google badge content - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-google-badge .badge-logo {
        font-size: 22px !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-stars {
        font-size: 18px !important;
        margin: 5px 0 !important;
        line-height: 1 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-rating {
        font-size: 12px !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;
    }

    /* DesignRush badge content - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-designrush-badge .badge-logo,
    .developed-by-appwt-llc-designrush-badge-new .badge-icon {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-stars,
    .developed-by-appwt-llc-designrush-badge-new .badge-title {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        line-height: 1.1 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-rating,
    .developed-by-appwt-llc-designrush-badge-new .badge-subtitle {
        font-size: 12px !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
    }

    /* Rotating award badge content - SAME SIZE AS DESKTOP */
    #rotatingAwardBadge .badge-icon,
    .developed-by-appwt-llc-rotating-award-badge .badge-icon {
        font-size: 24px !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
    }

    #rotatingAwardBadge .badge-title,
    .developed-by-appwt-llc-rotating-award-badge .badge-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        font-weight: 600 !important;
    }

    #rotatingAwardBadge .badge-subtitle,
    .developed-by-appwt-llc-rotating-award-badge .badge-subtitle {
        font-size: 12px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        font-weight: 600 !important;
    }

    /* BBB Badge content - compact for square */
    .bbb-custom-container,
    .bbb-center-row-1 {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1px !important;
        padding: 0 !important;
    }

    .bbb-center-row-1 {
        flex-direction: row !important;
        gap: 4px !important;
    }

    .bbb-seal-image {
        width: 28px !important;
        height: auto !important;
        max-height: 35px !important;
    }

    .bbb-center-rating-label {
        font-size: 8px !important;
        line-height: 1 !important;
    }

    .bbb-center-rating-grade {
        font-size: 14px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
    }

    .bbb-center-date-text {
        font-size: 6px !important;
        line-height: 1 !important;
    }

    .bbb-center-row-2,
    .bbb-center-click-text {
        font-size: 7px !important;
        margin-top: 1px !important;
    }

    body .bbb-rating-text {
        font-size: 14px !important;
    }

    body .bbb-rating-text strong {
        font-size: 16px !important;
    }

    body .bbb-date-text {
        font-size: 10px !important;
    }

    body .bbb-profile-link {
        font-size: 12px !important;
        padding: 2px 6px !important;
    }
}

/* 360px - TINY PHONES - UNIFORM BADGES WITH DESKTOP FONTS */
@media (max-width: 360px) {
    .developed-by-appwt-llc-badges-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 10px !important;
        max-width: 100% !important;
        margin: 10px auto !important;
    }

    /* ALL badges SAME SIZE - with desktop-size fonts */
    .developed-by-appwt-llc-badge-item,
    .developed-by-appwt-llc-bbb-badge-custom,
    .developed-by-appwt-llc-google-badge,
    .developed-by-appwt-llc-designrush-badge,
    .developed-by-appwt-llc-designrush-badge-new,
    #rotatingAwardBadge,
    .developed-by-appwt-llc-rotating-award-badge {
        width: 100% !important;
        height: 120px !important;
        min-height: 120px !important;
        max-height: 130px !important;
        padding: 12px 8px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Google badge content - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-google-badge .badge-logo {
        font-size: 22px !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-stars {
        font-size: 18px !important;
        margin: 5px 0 !important;
        line-height: 1 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-rating {
        font-size: 12px !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;
    }

    /* DesignRush badge content - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-designrush-badge .badge-logo,
    .developed-by-appwt-llc-designrush-badge-new .badge-icon {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-stars,
    .developed-by-appwt-llc-designrush-badge-new .badge-title {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        line-height: 1.1 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-rating,
    .developed-by-appwt-llc-designrush-badge-new .badge-subtitle {
        font-size: 12px !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
    }

    /* Rotating award badge content - SAME SIZE AS DESKTOP */
    #rotatingAwardBadge .badge-icon,
    .developed-by-appwt-llc-rotating-award-badge .badge-icon {
        font-size: 24px !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
    }

    #rotatingAwardBadge .badge-title,
    .developed-by-appwt-llc-rotating-award-badge .badge-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        font-weight: 600 !important;
    }

    #rotatingAwardBadge .badge-subtitle,
    .developed-by-appwt-llc-rotating-award-badge .badge-subtitle {
        font-size: 12px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        font-weight: 600 !important;
    }

    /* BBB Badge content - compact for tiny square */
    .bbb-custom-container,
    .bbb-center-row-1 {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    .bbb-center-row-1 {
        flex-direction: row !important;
        gap: 3px !important;
    }

    .bbb-seal-image {
        width: 22px !important;
        height: auto !important;
        max-height: 28px !important;
    }

    .bbb-center-rating-label {
        font-size: 7px !important;
        line-height: 1 !important;
    }

    .bbb-center-rating-grade {
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
    }

    .bbb-center-date-text {
        font-size: 5px !important;
        line-height: 1 !important;
        display: none !important;
    }

    .bbb-center-row-2,
    .bbb-center-click-text {
        font-size: 6px !important;
        margin-top: 0 !important;
    }

    body .bbb-rating-text {
        font-size: 12px !important;
    }

    body .bbb-rating-text strong {
        font-size: 14px !important;
    }

    body .bbb-date-text {
        font-size: 8px !important;
        display: none !important;
    }

    body .bbb-profile-link {
        font-size: 10px !important;
        padding: 2px 4px !important;
    }

    .bbb-top-section {
        gap: 3px !important;
    }

    .bbb-seal-image {
        width: 50px !important;
        max-height: 40px !important;
        min-width: 50px !important;
        min-height: 40px !important;
    }
}

/* =====================================================
   ROTATING AWARD BADGE - BASE STYLES
   ===================================================== */
.developed-by-appwt-llc-rotating-award-badge {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.developed-by-appwt-llc-rotating-award-badge .badge-icon {
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1;
}

.developed-by-appwt-llc-rotating-award-badge .badge-title {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
    text-align: center;
    line-height: 1.2;
}

.developed-by-appwt-llc-rotating-award-badge .badge-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #D4AF37;
    text-align: center;
    line-height: 1.2;
}

/* =====================================================
   TRUST BADGES ROW - PROPORTIONAL RESPONSIVE SCALING
   ===================================================== */

/* Tablet (900px - 1024px) - Keep 4 columns, slightly smaller */
@media (min-width: 769px) and (max-width: 1024px) {
    .developed-by-appwt-llc-badges-row {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
        padding: 15px !important;
        max-width: 900px !important;
    }

    .developed-by-appwt-llc-badge-item {
        min-height: 100px !important;
        padding: 12px 10px !important;
    }

    .bbb-seal-image {
        width: 45px !important;
        max-height: 60px !important;
    }

    .bbb-center-rating-grade {
        font-size: 20px !important;
    }

    .bbb-center-rating-label {
        font-size: 10px !important;
    }

    .bbb-center-date-text {
        font-size: 8px !important;
    }

    .bbb-center-click-text {
        font-size: 10px !important;
    }

    /* Badge fonts - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-google-badge .badge-logo {
        font-size: 22px !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-stars {
        font-size: 18px !important;
    }

    .developed-by-appwt-llc-google-badge .badge-rating {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-logo {
        font-size: 16px !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-stars {
        font-size: 16px !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-rating {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .developed-by-appwt-llc-rotating-award-badge .badge-icon {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }

    .developed-by-appwt-llc-rotating-award-badge .badge-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
        font-weight: 600 !important;
    }

    .developed-by-appwt-llc-rotating-award-badge .badge-subtitle {
        font-size: 12px !important;
        font-weight: 600 !important;
    }
}

/* Small Tablet (600px - 768px) - 2x2 grid with proportional sizing */
@media (min-width: 501px) and (max-width: 768px) {
    .developed-by-appwt-llc-badges-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 12px !important;
        max-width: 450px !important;
        margin: 15px auto !important;
    }

    .developed-by-appwt-llc-badge-item {
        min-height: 95px !important;
        padding: 10px 8px !important;
        border-radius: 10px !important;
    }

    .bbb-center-row-1 {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .bbb-seal-image {
        width: 42px !important;
        max-height: 55px !important;
    }

    .bbb-center-rating-grade {
        font-size: 18px !important;
        font-weight: 800 !important;
    }

    .bbb-center-rating-label {
        font-size: 9px !important;
    }

    .bbb-center-date-text {
        font-size: 7px !important;
    }

    .bbb-center-row-2 {
        margin-top: 3px !important;
    }

    .bbb-center-click-text {
        font-size: 9px !important;
    }

    /* Badge fonts - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-google-badge .badge-logo {
        font-size: 22px !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-stars {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }

    .developed-by-appwt-llc-google-badge .badge-rating {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-logo {
        font-size: 16px !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-stars {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-rating {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    #rotatingAwardBadge,
    .developed-by-appwt-llc-rotating-award-badge {
        min-width: unset !important;
        max-width: unset !important;
    }

    #rotatingAwardBadge .badge-icon,
    .developed-by-appwt-llc-rotating-award-badge .badge-icon {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }

    #rotatingAwardBadge .badge-title,
    .developed-by-appwt-llc-rotating-award-badge .badge-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
        font-weight: 600 !important;
    }

    #rotatingAwardBadge .badge-subtitle,
    .developed-by-appwt-llc-rotating-award-badge .badge-subtitle {
        font-size: 12px !important;
        font-weight: 600 !important;
    }
}

/* Mobile (500px and below) - with desktop-size fonts */
@media (max-width: 500px) {
    .developed-by-appwt-llc-badges-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 10px !important;
        max-width: 380px !important;
        margin: 10px auto !important;
    }

    .developed-by-appwt-llc-badge-item {
        min-height: 120px !important;
        padding: 12px 8px !important;
        border-radius: 12px !important;
    }

    .bbb-center-row-1 {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 5px !important;
    }

    .bbb-seal-image {
        width: 35px !important;
        max-height: 45px !important;
    }

    .bbb-center-col-2 {
        text-align: left !important;
    }

    .bbb-center-rating-grade {
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
    }

    .bbb-center-rating-label {
        font-size: 8px !important;
        line-height: 1.1 !important;
    }

    .bbb-center-date-text {
        font-size: 6px !important;
        line-height: 1.1 !important;
    }

    .bbb-center-row-2 {
        margin-top: 2px !important;
    }

    .bbb-center-click-text {
        font-size: 8px !important;
    }

    /* Badge fonts - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-google-badge .badge-logo {
        font-size: 22px !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-stars {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }

    .developed-by-appwt-llc-google-badge .badge-rating {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-logo {
        font-size: 16px !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-stars {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-rating {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    #rotatingAwardBadge,
    .developed-by-appwt-llc-rotating-award-badge {
        min-width: unset !important;
        max-width: unset !important;
    }

    #rotatingAwardBadge .badge-icon,
    .developed-by-appwt-llc-rotating-award-badge .badge-icon {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }

    #rotatingAwardBadge .badge-title,
    .developed-by-appwt-llc-rotating-award-badge .badge-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
        font-weight: 600 !important;
    }

    #rotatingAwardBadge .badge-subtitle,
    .developed-by-appwt-llc-rotating-award-badge .badge-subtitle {
        font-size: 12px !important;
        font-weight: 600 !important;
    }
}

/* Extra Small Mobile (360px and below) - with desktop-size fonts */
@media (max-width: 360px) {
    .developed-by-appwt-llc-badges-row {
        gap: 8px !important;
        padding: 8px !important;
        max-width: 340px !important;
    }

    .developed-by-appwt-llc-badge-item {
        min-height: 120px !important;
        padding: 12px 8px !important;
    }

    .bbb-seal-image {
        width: 28px !important;
        max-height: 38px !important;
    }

    .bbb-center-rating-grade {
        font-size: 13px !important;
    }

    /* Badge fonts - SAME SIZE AS DESKTOP */
    .developed-by-appwt-llc-google-badge .badge-logo {
        font-size: 22px !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-google-badge .badge-stars {
        font-size: 18px !important;
    }

    .developed-by-appwt-llc-google-badge .badge-rating {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-logo {
        font-size: 16px !important;
        font-weight: 700 !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-stars {
        font-size: 16px !important;
    }

    .developed-by-appwt-llc-designrush-badge .badge-rating {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    #rotatingAwardBadge .badge-icon,
    .developed-by-appwt-llc-rotating-award-badge .badge-icon {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }

    #rotatingAwardBadge .badge-title,
    .developed-by-appwt-llc-rotating-award-badge .badge-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
        font-weight: 600 !important;
    }

    #rotatingAwardBadge .badge-subtitle,
    .developed-by-appwt-llc-rotating-award-badge .badge-subtitle {
        font-size: 12px !important;
        font-weight: 600 !important;
    }
}

/* =====================================================
   FREE CONSULT BUTTON REDESIGN
   ===================================================== */

.developed-by-appwt-llc-floating-cta {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #B8941C 100%);
    color: #000000;
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 20px 8px;
    font-weight: bold;
    font-size: clamp(12px, 2.5vw, 16px);
    cursor: pointer;
    z-index: 998;
    box-shadow: -3px 0 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: initial !important;
    text-orientation: initial !important;
}

.developed-by-appwt-llc-floating-cta .cta-text {
    display: flex;
    gap: clamp(6px, 1.5vw, 10px);
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.developed-by-appwt-llc-floating-cta .cta-free {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: bold;
    letter-spacing: 1px;
    gap: clamp(1px, 0.3vw, 3px);
}

.developed-by-appwt-llc-floating-cta .cta-consult {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(12px, 2.8vw, 16px);
    font-weight: bold;
    letter-spacing: 1px;
    gap: clamp(1px, 0.3vw, 2px);
}

.developed-by-appwt-llc-floating-cta:hover,
.developed-by-appwt-llc-floating-cta:active {
    transform: translateY(-50%) translateX(-8px);
    box-shadow: -6px 0 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #B8941C 0%, #D4AF37 100%);
}

/* Button animation when slideout opens */
.developed-by-appwt-llc-floating-cta.open {
    transform: translateY(-50%) translateX(-380px) !important;
    border-radius: 25px 0 0 25px;
    transition: transform 0.3s ease;
}

/* Mobile adjustments for slideout interaction */
@media (max-width: 768px) {
    .developed-by-appwt-llc-floating-cta.open {
        transform: translateY(-50%) translateX(-100vw) !important;
    }
}

/* =====================================================
   CONSULTATION SLIDEOUT
   ===================================================== */

.consult-slideout {
    position: fixed !important;
    top: 0 !important;
    right: -400px !important;
    width: 380px !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #0D2818 0%, #1B4332 100%) !important;
    z-index: 999 !important;
    transition: right 0.4s ease !important;
    border-left: 2px solid rgba(212, 175, 55, 0.3) !important;
    overflow-y: auto !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5) !important;
}

.consult-slideout.open {
    right: 0 !important;
}

.consult-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 0, 0, 0.5) !important;
    color: #ff4444 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
}

.consult-close:hover {
    background: rgba(255, 0, 0, 0.4) !important;
    transform: scale(1.1) !important;
}

.consult-content {
    padding: 80px 30px 30px 30px !important;
    height: 100% !important;
    overflow-y: auto !important;
}

.consult-content h2 {
    color: #D4AF37 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.consult-content h3 {
    color: #00D4FF !important;
    margin-bottom: 20px !important;
    font-size: 1.2rem !important;
}

.consult-scheduler-wrapper {
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.consult-scheduler-frame {
    width: 100% !important;
    height: 600px !important;
    border: none !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    min-height: 500px !important;
}

/* Hide loading when iframe loads */
.consult-loading.hidden {
    display: none !important;
}

.consult-loading {
    text-align: center !important;
    padding: 40px !important;
    color: #00D4FF !important;
}

.consult-spinner {
    width: 40px !important;
    height: 40px !important;
    border: 3px solid rgba(212, 175, 55, 0.3) !important;
    border-top: 3px solid #D4AF37 !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin: 0 auto 20px auto !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile responsive consultation slideout */
@media (max-width: 768px) {
    .consult-slideout {
        width: 95% !important;
        right: -95% !important;
        height: 100vh !important;
        top: 0 !important;
        max-height: 100vh !important;
    }

    .consult-close {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 1001 !important;
        background: rgba(255, 0, 0, 0.8) !important;
        border: 2px solid #ff4444 !important;
        color: #ffffff !important;
        width: 45px !important;
        height: 45px !important;
        border-radius: 50% !important;
        font-size: 1.6rem !important;
        font-weight: bold !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .consult-content {
        padding: 80px 20px 20px 20px !important;
        height: 100% !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
    }

    .consult-scheduler-wrapper {
        padding: 20px !important;
    }

    .consult-scheduler-frame {
        height: 500px !important;
    }
}

@media (max-width: 480px) {
    .consult-slideout {
        width: 100% !important;
        right: -100% !important;
        height: 100vh !important;
        top: 0 !important;
        max-height: 100vh !important;
    }

    .consult-close {
        position: fixed !important;
        top: 15px !important;
        right: 15px !important;
        z-index: 1001 !important;
        background: rgba(255, 0, 0, 0.9) !important;
        border: 2px solid #ff4444 !important;
        color: #ffffff !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        font-size: 1.4rem !important;
        font-weight: bold !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .consult-content {
        padding: 70px 15px 15px 15px !important;
        height: 100% !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
    }

    .consult-scheduler-frame {
        height: 450px !important;
    }
}

/* =====================================================
   ACCESSIBILITY TOOL & BACK-TO-TOP POSITIONING
   ===================================================== */

/* Desktop and Mobile - Accessibility tool in bottom left */
.accessibility-tool {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
    top: auto !important;
    z-index: 1001 !important;
    max-width: calc(100vw - 40px) !important;
    width: 280px !important;
    transform: translateZ(0) !important;
    box-sizing: border-box !important;
    contain: layout style paint !important;
}

.accessibility-tool.open {
    transform: translateX(0) !important;
}

@media (max-width: 768px) {
    /* Mobile specific adjustments */
    .accessibility-tool {
        width: 260px !important;
        bottom: 70px !important;
        left: 15px !important;
    }

    .back-to-top,
    .developed-by-appwt-llc-back-to-top {
        bottom: 70px !important;
        right: 15px !important;
    }

    .developed-by-appwt-llc-ada-widget {
        bottom: 70px !important;
        left: 15px !important;
    }
}

/* =====================================================
   MOBILE SPECIFIC ADJUSTMENTS
   ===================================================== */

/* Hide additional badges and widgets on mobile since badges row is prominent */
@media (max-width: 768px) {
    /* Hide reviews alternator widget on mobile */
    .developed-by-appwt-llc-reviews-widget {
        display: none !important;
    }

    /* Hide standalone/floating Google badges on mobile - but NOT ones in badges row */
    body .developed-by-appwt-llc-google-review-badge:not(.developed-by-appwt-llc-badges-row .developed-by-appwt-llc-google-review-badge),
    body .developed-by-appwt-llc-reviews-widget,
    body .developed-by-appwt-llc-mobile-review-badge,
    body .google-reviews-badge:not(.developed-by-appwt-llc-badges-row .google-reviews-badge),
    body .google-badge-bottom,
    body .google-widget,
    body .google-review-widget,
    body #reviewsWidget,
    body #googleReviews,
    body #googleBadge {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* IMPORTANT: Ensure badges IN the badges row are ALWAYS visible */
    .developed-by-appwt-llc-badges-row .developed-by-appwt-llc-google-badge,
    .developed-by-appwt-llc-badges-row .developed-by-appwt-llc-designrush-badge,
    .developed-by-appwt-llc-badges-row .developed-by-appwt-llc-bbb-badge-custom,
    .developed-by-appwt-llc-badges-row .developed-by-appwt-llc-rotating-award-badge,
    .developed-by-appwt-llc-badges-row .developed-by-appwt-llc-badge-item {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 80px !important;
        overflow: visible !important;
        z-index: auto !important;
        pointer-events: auto !important;
        transform: none !important;
        max-width: 100% !important;
        max-height: none !important;
    }

    /* Hide standalone DesignRush badge container on mobile (but not the one in badges row) */
    .developed-by-appwt-llc-designrush-badge-container {
        display: none !important;
    }
}

@media (max-width: 480px) {
    /* Ultra-small screens */
    .developed-by-appwt-llc-weather-widget {
        padding: 10px;
        margin: 8px 0;
    }
    
    .developed-by-appwt-llc-floating-cta {
        font-size: 13px;
        padding: 15px 8px;
        right: 2px;
    }
    
    .developed-by-appwt-llc-reviews-widget {
        max-width: 140px;
        font-size: 10px;
        padding: 10px;
        bottom: 15px;
        left: 5px;
    }
    
    .developed-by-appwt-llc-hero-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .developed-by-appwt-llc-btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .developed-by-appwt-llc-btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Accessibility tool on very small screens */
    .accessibility-tool {
        width: 260px !important;
        left: 15px !important;
        bottom: 70px !important;
    }

    .back-to-top,
    .developed-by-appwt-llc-back-to-top {
        bottom: 70px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }

    .developed-by-appwt-llc-ada-widget {
        bottom: 70px !important;
        left: 15px !important;
    }
}

/* =====================================================
   EXTRA SMALL SCREEN PROTECTION (360px and below)
   ===================================================== */

@media (max-width: 360px) {
    .back-to-top,
    .developed-by-appwt-llc-back-to-top {
        bottom: 70px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .accessibility-tool {
        bottom: 70px !important;
        left: 15px !important;
        width: 240px !important;
    }

    .developed-by-appwt-llc-ada-widget {
        bottom: 70px !important;
        left: 15px !important;
    }

    .trust-container-modern {
        gap: 8px !important;
        padding: 8px !important;
    }

    .trust-item-modern {
        padding: 6px !important;
    }

    .trust-number {
        font-size: 16px !important;
    }

    .trust-label {
        font-size: 11px !important;
    }
}

/* =====================================================
   ACCESSIBILITY ENHANCEMENTS
   ===================================================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
    .developed-by-appwt-llc-weather-widget,
    .developed-by-appwt-llc-card {
        border: 2px solid #F4A261;
    }
    
    .developed-by-appwt-llc-btn {
        border: 2px solid currentColor;
    }
}

/* Focus indicators */
.developed-by-appwt-llc-btn:focus,
.developed-by-appwt-llc-form-input:focus,
.developed-by-appwt-llc-form-select:focus,
.developed-by-appwt-llc-form-textarea:focus,
.developed-by-appwt-llc-floating-cta:focus {
    outline: 3px solid #F4A261;
    outline-offset: 2px;
}

/* =====================================================
   PHONE NUMBER DISPLAY BAR
   ===================================================== */

.appwt-phone-display-bar {
    width: 100% !important;
    background: linear-gradient(135deg, #1B4332 0%, #0D2818 100%) !important;
    padding: 15px 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2) !important;
}

.appwt-phone-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 20px !important;
    flex-wrap: wrap !important;
}

/* Phone icon removed per user request */

.appwt-phone-number {
    color: #00D4FF !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.3rem !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
    padding: 8px 15px !important;
    background: rgba(0, 212, 255, 0.1) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
}

.appwt-phone-number:hover {
    background: rgba(0, 212, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3) !important;
}

.appwt-phone-availability {
    color: #95D5B2 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    background: rgba(149, 213, 178, 0.1) !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(149, 213, 178, 0.3) !important;
}

/* Mobile Responsive Phone Display */
@media (max-width: 768px) {
    .appwt-phone-content {
        flex-direction: row !important;
        gap: 10px !important;
        padding: 0 15px !important;
        text-align: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .appwt-phone-number {
        font-size: 1.1rem !important;
        padding: 8px 16px !important;
    }
    
    .appwt-phone-availability {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    .appwt-phone-display-bar {
        padding: 10px 0 !important;
    }
    
    .appwt-phone-content {
        gap: 6px !important;
        padding: 0 10px !important;
    }
    
    .appwt-phone-number {
        font-size: 1rem !important;
        padding: 6px 12px !important;
    }
    
    .appwt-phone-availability {
        font-size: 0.75rem !important;
        padding: 4px 8px !important;
    }
}

/* =====================================================
   MUSIC PLAYER SYSTEM
   ===================================================== */

/* Music Player Button */
.appwt-music-player-button {
    position: fixed !important;
    top: 50% !important; /* Align with FREE CONSULT button */
    left: 0px !important;
    transform: translateY(-50%) !important;
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941C 100%) !important;
    border-radius: 0 25px 25px 0 !important; /* Mirror FREE CONSULT button shape */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 999 !important;
    transition: all 0.3s ease !important;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
}

.appwt-music-player-button:hover {
    transform: translateY(-50%) translateX(8px) !important;
    box-shadow: 6px 0 20px rgba(212, 175, 55, 0.4) !important;
    background: linear-gradient(135deg, #B8941C 0%, #D4AF37 100%) !important;
}

.appwt-music-note {
    font-size: 1.5rem !important;
    color: #000000 !important;
    font-weight: bold !important;
}

/* Music Player Sidebar */
.appwt-music-player-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: -400px !important;
    width: 380px !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #0D2818 0%, #1B4332 100%) !important;
    z-index: 1001 !important;
    transition: left 0.4s ease !important;
    border-right: 2px solid rgba(0, 212, 255, 0.3) !important;
    overflow-y: auto !important;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5) !important;
}

.appwt-music-player-sidebar.active {
    left: 0 !important;
}

.appwt-music-player-header {
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2) !important;
}

.appwt-music-player-header h3 {
    color: #00D4FF !important;
    margin: 0 !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
}

.appwt-music-close-btn {
    background: rgba(255, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 0, 0, 0.5) !important;
    color: #ff4444 !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.appwt-music-close-btn:hover {
    background: rgba(255, 0, 0, 0.4) !important;
}

.appwt-music-controls {
    padding: 15px 20px !important;
    display: flex !important;
    gap: 10px !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1) !important;
}

.appwt-music-control-btn {
    background: rgba(0, 212, 255, 0.2) !important;
    border: 1px solid rgba(0, 212, 255, 0.4) !important;
    color: #00D4FF !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.appwt-music-control-btn:hover,
.appwt-music-control-btn.active {
    background: rgba(0, 212, 255, 0.4) !important;
}

.appwt-music-playlist {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 10px !important;
}

.appwt-music-playlist-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px !important;
    margin-bottom: 8px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 212, 255, 0.1) !important;
}

.appwt-music-playlist-item:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
}

.appwt-music-playlist-item.playing {
    background: rgba(0, 212, 255, 0.2) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
}

.appwt-music-item-image {
    width: 50px !important;
    height: 50px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
}

.appwt-music-item-details {
    flex: 1 !important;
}

.appwt-music-item-title {
    color: #00D4FF !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin-bottom: 4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.appwt-music-item-duration {
    color: #95D5B2 !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
}

.appwt-music-item-info-icon {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    background: rgba(0, 212, 255, 0.2) !important;
    border: 1px solid rgba(0, 212, 255, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 0.7rem !important;
    transition: all 0.3s ease !important;
}

.appwt-music-item-info-icon:hover {
    background: rgba(0, 212, 255, 0.4) !important;
    transform: scale(1.1) !important;
}

.appwt-music-item-controls {
    display: flex !important;
    gap: 8px !important;
}

.appwt-music-item-btn {
    background: rgba(0, 212, 255, 0.2) !important;
    border: 1px solid rgba(0, 212, 255, 0.4) !important;
    color: #00D4FF !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 0.8rem !important;
    transition: all 0.3s ease !important;
}

.appwt-music-item-btn:hover {
    background: rgba(0, 212, 255, 0.4) !important;
}

/* Current Player Section */
.appwt-music-current-player {
    background: rgba(0, 0, 0, 0.4) !important;
    border-top: 2px solid rgba(0, 212, 255, 0.3) !important;
    padding: 15px !important;
}

.appwt-music-current-info {
    display: flex !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
}

.appwt-music-current-image {
    width: 60px !important;
    height: 60px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    border: 2px solid rgba(0, 212, 255, 0.4) !important;
}

.appwt-music-current-details {
    flex: 1 !important;
}

.appwt-music-current-title-container {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
    flex-wrap: wrap !important;
}

.appwt-music-current-title {
    color: #00D4FF !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    flex: 1 !important;
}

.appwt-music-current-duration {
    color: #95D5B2 !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

.appwt-music-info-icon {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: rgba(0, 212, 255, 0.2) !important;
    border: 1px solid rgba(0, 212, 255, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 0.8rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.appwt-music-info-icon:hover {
    background: rgba(0, 212, 255, 0.4) !important;
    transform: scale(1.1) !important;
}

.appwt-music-current-controls {
    display: flex !important;
    gap: 10px !important;
}

.appwt-music-control-btn {
    background: rgba(0, 212, 255, 0.3) !important;
    border: 2px solid rgba(0, 212, 255, 0.5) !important;
    color: #00D4FF !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    min-width: 40px !important;
}

.appwt-music-control-btn:hover {
    background: rgba(0, 212, 255, 0.5) !important;
    transform: translateY(-1px) !important;
}

.appwt-music-control-btn:active {
    transform: translateY(0) !important;
}

/* Track Info Tooltip */
.appwt-music-info-tooltip {
    position: absolute !important;
    top: -350px !important;
    left: 20px !important;
    right: 20px !important;
    background: linear-gradient(135deg, #0D2818 0%, #1B4332 100%) !important;
    border: 2px solid rgba(0, 212, 255, 0.3) !important;
    border-radius: 12px !important;
    padding: 0 !important;
    z-index: 1002 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
    max-height: 320px !important;
    overflow-y: auto !important;
}

.appwt-music-info-content {
    padding: 20px !important;
}

.appwt-music-info-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2) !important;
}

.appwt-music-info-title {
    color: #00D4FF !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.appwt-music-info-close {
    color: #95D5B2 !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
    padding: 5px 10px !important;
    border-radius: 5px !important;
    background: rgba(0, 212, 255, 0.1) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.appwt-music-info-close:hover {
    background: rgba(0, 212, 255, 0.2) !important;
}

.appwt-music-info-body {
    color: #E6E6FA !important;
    line-height: 1.6 !important;
    font-size: 0.9rem !important;
}

.appwt-music-info-body h3 {
    color: #F4A261 !important;
    margin: 15px 0 8px 0 !important;
    font-size: 1rem !important;
}

.appwt-music-info-body p {
    margin: 8px 0 !important;
}

.appwt-music-progress-container {
    margin-top: 10px !important;
}

.appwt-music-progress-bar {
    width: 100% !important;
    height: 8px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    position: relative !important;
}

.appwt-music-progress-fill {
    height: 100% !important;
    background: linear-gradient(90deg, #00D4FF, #0AA8CC) !important;
    width: 0% !important;
    transition: width 0.1s ease !important;
    border-radius: 4px !important;
    position: relative !important;
}

.appwt-music-progress-handle {
    position: absolute !important;
    top: 50% !important;
    right: -8px !important;
    transform: translateY(-50%) !important;
    width: 16px !important;
    height: 16px !important;
    background: #00D4FF !important;
    border: 2px solid #FFFFFF !important;
    border-radius: 50% !important;
    cursor: grab !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
}

.appwt-music-progress-handle:hover {
    transform: translateY(-50%) scale(1.2) !important;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4) !important;
}

.appwt-music-progress-handle:active {
    cursor: grabbing !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.appwt-music-time-display {
    display: flex !important;
    justify-content: space-between !important;
    color: #95D5B2 !important;
    font-size: 0.8rem !important;
    margin-top: 5px !important;
}

/* Mobile Responsive Music Player */
@media (max-width: 768px) {
    .appwt-music-player-button {
        width: 60px !important;
        height: 60px !important;
        top: 50% !important;
        left: 0px !important;
        transform: translateY(-50%) !important;
    }
    
    .appwt-music-player-button:hover {
        transform: translateY(-50%) translateX(5px) !important;
    }
    
    .appwt-music-note {
        font-size: 1.2rem !important;
    }
    
    .appwt-music-player-sidebar {
        width: 90vw !important;
        left: -90vw !important;
    }
    
    .appwt-music-playlist-item {
        padding: 10px !important;
    }
    
    .appwt-music-item-image {
        width: 40px !important;
        height: 40px !important;
    }
    
    .appwt-music-current-image {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .appwt-music-player-sidebar {
        width: 95% !important;
        left: -95vw !important;
    }
    
    .appwt-music-player-header h3 {
        font-size: 1.1rem !important;
    }
    
    .appwt-music-item-title {
        font-size: 0.8rem !important;
    }
}

/* =====================================================
   SITE SEARCH BAR
   ===================================================== */

.developed-by-appwt-llc-search-container {
    width: 100% !important;
    background: linear-gradient(135deg, #0D2818 0%, #1B4332 100%) !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    position: relative !important;
}

.developed-by-appwt-llc-search-wrapper {
    max-width: 600px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative !important;
}

.developed-by-appwt-llc-search-form {
    display: flex !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 25px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.developed-by-appwt-llc-search-form:focus-within {
    border-color: #F4A261 !important;
    box-shadow: 0 0 20px rgba(244, 162, 97, 0.3) !important;
}

.developed-by-appwt-llc-search-input {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    padding: 15px 20px !important;
    color: #FFFFFF !important;
    font-size: 16px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    outline: none !important;
    min-height: 50px !important;
}

.developed-by-appwt-llc-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.developed-by-appwt-llc-search-btn {
    background: linear-gradient(135deg, #F4A261, #FFD700) !important;
    color: #1B4332 !important;
    border: none !important;
    padding: 15px 20px !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.developed-by-appwt-llc-search-btn:hover {
    background: linear-gradient(135deg, #FFD700, #F4A261) !important;
    transform: scale(1.05) !important;
}

.developed-by-appwt-llc-search-results {
    position: absolute !important;
    top: 100% !important;
    left: 20px !important;
    right: 20px !important;
    background: rgba(0, 0, 0, 0.95) !important;
    border: 1px solid #F4A261 !important;
    border-radius: 15px !important;
    margin-top: 5px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    z-index: 1000 !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.developed-by-appwt-llc-search-result-item {
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: #FFFFFF !important;
}

.developed-by-appwt-llc-search-result-item:hover {
    background: rgba(244, 162, 97, 0.1) !important;
}

.developed-by-appwt-llc-search-result-item:last-child {
    border-bottom: none !important;
}

.developed-by-appwt-llc-search-result-title {
    font-weight: bold !important;
    color: #F4A261 !important;
    margin-bottom: 5px !important;
}

.developed-by-appwt-llc-search-result-snippet {
    font-size: 14px !important;
    color: #CCCCCC !important;
    line-height: 1.4 !important;
}

.developed-by-appwt-llc-search-no-results {
    padding: 20px !important;
    text-align: center !important;
    color: #CCCCCC !important;
    font-style: italic !important;
}

/* Mobile Responsive Search */
@media (max-width: 768px) {
    .developed-by-appwt-llc-search-container {
        padding: 15px 0 !important;
    }
    
    .developed-by-appwt-llc-search-wrapper {
        padding: 0 15px !important;
    }
    
    .developed-by-appwt-llc-search-input {
        padding: 12px 15px !important;
        font-size: 16px !important;
        min-height: 44px !important;
    }
    
    .developed-by-appwt-llc-search-btn {
        padding: 12px 15px !important;
        font-size: 18px !important;
        min-height: 44px !important;
    }
    
    .developed-by-appwt-llc-search-results {
        left: 15px !important;
        right: 15px !important;
        max-height: 300px !important;
    }
}

@media (max-width: 480px) {
    .developed-by-appwt-llc-search-wrapper {
        padding: 0 10px !important;
    }
    
    .developed-by-appwt-llc-search-input {
        padding: 10px 12px !important;
        font-size: 16px !important;
    }
    
    .developed-by-appwt-llc-search-btn {
        padding: 10px 12px !important;
        font-size: 16px !important;
    }
}

/* =====================================================
   SCHEDULER MODAL FIXES
   ===================================================== */

/* Scheduler Modal - Full Height with X Close Button */
.developed-by-appwt-llc-scheduler-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(5px) !important;
}

.developed-by-appwt-llc-scheduler-content {
    position: relative !important;
    width: 90% !important;
    max-width: 800px !important;
    height: 90% !important;
    max-height: 100vh !important;
    background: #1B4332 !important;
    border-radius: 15px !important;
    padding: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid #F4A261 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.developed-by-appwt-llc-scheduler-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;
    background: #F4A261 !important;
    color: #1B4332 !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10001 !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
}

.developed-by-appwt-llc-scheduler-close:hover {
    background: #FFD700 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4) !important;
}

.developed-by-appwt-llc-scheduler-content h2 {
    color: #F4A261 !important;
    margin: 0 0 20px 0 !important;
    font-size: 1.8rem !important;
    text-align: center !important;
    padding-right: 60px !important;
}

.developed-by-appwt-llc-scheduler-quote {
    background: rgba(244, 162, 97, 0.1) !important;
    border: 1px solid #F4A261 !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
}

.developed-by-appwt-llc-scheduler-quote h4 {
    color: #F4A261 !important;
    margin: 0 0 10px 0 !important;
}

.developed-by-appwt-llc-scheduler-quote ul {
    color: #E6E6FA !important;
    margin: 0 !important;
    padding-left: 20px !important;
}

.developed-by-appwt-llc-scheduler-iframe {
    flex: 1 !important;
    width: 100% !important;
    border: none !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    min-height: 500px !important;
}

/* Mobile Responsive Scheduler */
@media (max-width: 768px) {
    .developed-by-appwt-llc-scheduler-content {
        width: 95% !important;
        height: 95% !important;
        padding: 15px !important;
        border-radius: 10px !important;
    }
    
    .developed-by-appwt-llc-scheduler-close {
        top: 10px !important;
        right: 10px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 20px !important;
    }
    
    .developed-by-appwt-llc-scheduler-content h2 {
        font-size: 1.4rem !important;
        padding-right: 50px !important;
        margin-bottom: 15px !important;
    }
    
    .developed-by-appwt-llc-scheduler-iframe {
        min-height: 400px !important;
    }
}

@media (max-width: 480px) {
    .developed-by-appwt-llc-scheduler-content {
        width: 98% !important;
        height: 98% !important;
        padding: 10px !important;
        border-radius: 8px !important;
    }

    .developed-by-appwt-llc-scheduler-content h2 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .trust-container-modern {
        gap: 10px !important;
        padding: 10px !important;
    }

    .trust-item-modern {
        padding: 8px !important;
    }

    .trust-number {
        font-size: 18px !important;
    }

    .trust-label {
        font-size: 12px !important;
    }
    
    .developed-by-appwt-llc-scheduler-iframe {
        min-height: 350px !important;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    .developed-by-appwt-llc-floating-cta,
    .developed-by-appwt-llc-reviews-widget,
    .developed-by-appwt-llc-scheduler-modal {
        display: none !important;
    }
    
    .developed-by-appwt-llc-weather-widget {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
}

/* ===============================================
   COMPREHENSIVE MOBILE NAVIGATION
   =============================================== */

/* Hide mobile nav by default */
.developed-by-appwt-llc-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.developed-by-appwt-llc-mobile-nav.active {
    display: block;
}

.developed-by-appwt-llc-mobile-nav-content {
    padding: 80px 20px 40px;
    max-width: 400px;
    margin: 0 auto;
}

.developed-by-appwt-llc-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.developed-by-appwt-llc-mobile-nav-list li {
    margin-bottom: 8px;
}

.developed-by-appwt-llc-mobile-nav-list a {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.developed-by-appwt-llc-mobile-nav-list a:hover,
.developed-by-appwt-llc-mobile-nav-list a.active {
    background: rgba(76, 175, 80, 0.2);
    border-left-color: #4CAF50;
    color: #4CAF50;
}

/* Section toggles */
.developed-by-appwt-llc-mobile-section-toggle {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.developed-by-appwt-llc-mobile-section-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.developed-by-appwt-llc-mobile-section-toggle .toggle-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.developed-by-appwt-llc-mobile-section-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

/* Subsections */
.developed-by-appwt-llc-mobile-subsection {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.developed-by-appwt-llc-mobile-subsection.active {
    max-height: 1000px;
}

.developed-by-appwt-llc-mobile-subsection li {
    margin-bottom: 4px;
}

.developed-by-appwt-llc-mobile-subsection a {
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.developed-by-appwt-llc-mobile-subsection a:hover {
    background: rgba(76, 175, 80, 0.15);
    border-left-color: #4CAF50;
    color: #4CAF50;
}

/* Action buttons */
.developed-by-appwt-llc-mobile-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.developed-by-appwt-llc-mobile-action-btn {
    display: block;
    padding: 16px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.developed-by-appwt-llc-mobile-action-btn.schedule {
    background: #4CAF50;
    color: white;
}

.developed-by-appwt-llc-mobile-action-btn.schedule:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.developed-by-appwt-llc-mobile-action-btn.quote {
    background: #FF9800;
    color: white;
}

.developed-by-appwt-llc-mobile-action-btn.quote:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
    .developed-by-appwt-llc-nav-menu {
        display: none;
    }

    .developed-by-appwt-llc-action-buttons {
        display: none;
    }

    .developed-by-appwt-llc-mobile-toggle {
        display: block;
    }
}

/* Show desktop nav on desktop */
@media (min-width: 1025px) {
    .developed-by-appwt-llc-mobile-nav {
        display: none !important;
    }
}

/* =====================================================
   DESKTOP LAYOUT - REVIEWS & CONSULTATION BUTTON
   ===================================================== */

@media (min-width: 1189px) {
    .appwt-reviews-display {
        flex: 1;
        display: flex;
        align-items: center;
        overflow: hidden;
        position: relative;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        margin: 75px 0px 10px 0px !important;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* fixed-consult-btn styles moved to end of file - UNIFIED 50PX CIRCLES section */

    .back-to-top,
    .developed-by-appwt-llc-back-to-top {
        position: fixed !important;
        bottom: 25px !important;
        right: 30px !important;
        left: auto !important;
        transform: translateZ(0) !important;
        width: 60px !important;
        height: 60px !important;
        background: var(--primary-color) !important;
        border: 2px solid #fff !important;
        color: #000 !important;
        border-radius: 50% !important;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1000;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 165, 0, 0.4) !important;
        box-sizing: border-box !important;
        contain: layout style paint !important;
        max-width: calc(100vw - 10px) !important;
    }

    .back-to-top.visible,
    .developed-by-appwt-llc-back-to-top.visible {
        opacity: 1 !important;
    }

    .back-to-top:hover,
    .developed-by-appwt-llc-back-to-top:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
    }
}

/* =====================================================
   MOBILE/TABLET ADJUSTMENTS
   ===================================================== */

@media (max-width: 1188px) {
    /* fixed-consult-btn styles moved to end of file - UNIFIED 50PX CIRCLES section */

    .back-to-top,
    .developed-by-appwt-llc-back-to-top {
        right: 30px !important;
        bottom: 25px !important;
        transform: translateZ(0) !important;
        width: 60px !important;
        height: 60px !important;
        background: var(--primary-color) !important;
        border: 2px solid #fff !important;
        color: #000 !important;
        box-sizing: border-box !important;
        contain: layout style paint !important;
        max-width: calc(100vw - 10px) !important;
    }

    .back-to-top.visible,
    .developed-by-appwt-llc-back-to-top.visible {
        opacity: 1 !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-bottom: 15px !important;
        gap: 1rem;
    }

    .footer-links {
        display: inline-block !important;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        width: 100% !important;
    }

    .trust-bar-modern {
        background: var(--white);
        padding: 15px;
        box-shadow: var(--shadow-md);
        position: relative;
        z-index: 1;
    }

    .trust-container-modern {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .trust-item-modern {
        padding: 5px;
        animation: fadeInUp 0.8s ease-out both;
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .trust-number {
        font-size: 20px;
        font-weight: 700;
        background: linear-gradient(135deg, var(--gold), var(--purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 8px;
    }
}

/* =====================================================
   SMALL MOBILE ADJUSTMENTS
   ===================================================== */

/* =====================================================
   HEIGHT-BASED FIXES FOR SHORT SCREENS
   ===================================================== */

/* Fix positioning and formatting for screens with max-height: 1188px */
@media (max-height: 1188px) {
    /* fixed-consult-btn styles moved to end of file - UNIFIED 50PX CIRCLES section */

    .fixed-consult-icon {
        width: 24px !important;
        height: 24px !important;
        fill: currentColor !important;
    }

    /* Back to Top Button - Fix position and format */
    .back-to-top,
    .developed-by-appwt-llc-back-to-top {
        position: fixed !important;
        bottom: 25px !important;
        right: 30px !important;
        left: auto !important;
        transform: translateZ(0) !important;
        width: 60px !important;
        height: 60px !important;
        background: var(--primary-color) !important;
        border: 2px solid #fff !important;
        color: #000 !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
        z-index: 1000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        font-weight: bold !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 165, 0, 0.4) !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        contain: layout style paint !important;
        max-width: calc(100vw - 10px) !important;
    }

    .back-to-top.visible,
    .developed-by-appwt-llc-back-to-top.visible {
        opacity: 1 !important;
    }

    .back-to-top:hover,
    .developed-by-appwt-llc-back-to-top:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    }
}
/* =====================================================
   TRUST STATS SECTION - MOBILE CONTRAST FIX
   ===================================================== */
@media (max-width: 768px) {
    .trust-container-modern {
        background: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 12px !important;
    }

    .trust-number {
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
        background: none !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    }

    .trust-number.glass-text-gold {
        color: #D4AF37 !important;
        -webkit-text-fill-color: #D4AF37 !important;
    }

    .trust-label {
        color: #E5E7EB !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
        font-weight: 600 !important;
    }
}

@media (max-width: 480px) {
    .trust-container-modern {
        background: rgba(0, 0, 0, 0.9) !important;
        padding: 12px 8px !important;
        gap: 6px !important;
    }

    .trust-item-modern {
        padding: 8px 4px !important;
    }

    .trust-number {
        font-size: 1.25rem !important;
        font-weight: 800 !important;
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
    }

    .trust-number.glass-text-gold {
        color: #F4D03F !important;
        -webkit-text-fill-color: #F4D03F !important;
    }

    .trust-label {
        font-size: 0.65rem !important;
        color: #F3F4F6 !important;
        letter-spacing: 0.5px !important;
    }
}

/* =====================================================
   CRITICAL MOBILE FIXES - JAN 2026
   ===================================================== */

/* ===== NAVIGATION FIXES ===== */
/* Hide desktop nav on mobile, show only hamburger */
@media (max-width: 992px) {
    /* Hide desktop navigation menu */
    .developed-by-appwt-llc-nav-menu {
        display: none !important;
    }

    /* Ensure hamburger is visible */
    .developed-by-appwt-llc-mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .developed-by-appwt-llc-mobile-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: #D4AF37;
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Hide action buttons on mobile header - move to mobile menu */
    .developed-by-appwt-llc-action-buttons {
        display: none !important;
    }
}

/* ===== LOGO SIZE FIX ===== */
@media (max-width: 768px) {
    .developed-by-appwt-llc-logo img {
        max-width: 120px !important;
        width: 120px !important;
        height: auto !important;
    }

    .developed-by-appwt-llc-logo-text {
        font-size: 0.65rem !important;
    }
}

@media (max-width: 480px) {
    .developed-by-appwt-llc-logo img {
        max-width: 100px !important;
        width: 100px !important;
    }
}

/* ===== HEADER STICKY BEHAVIOR ===== */
@media (max-width: 992px) {
    .developed-by-appwt-llc-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(13, 40, 24, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .developed-by-appwt-llc-header-container {
        padding: 10px 15px;
        max-width: 100%;
    }

    /* Prevent header overlap with content */
    .developed-by-appwt-llc-main-content {
        padding-top: 0 !important;
    }
}

/* ===== MOBILE NAVIGATION PANEL ===== */
@media (max-width: 992px) {
    .developed-by-appwt-llc-mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 40, 24, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        padding-top: 80px;
    }

    .developed-by-appwt-llc-mobile-nav.active {
        transform: translateX(0);
    }

    .developed-by-appwt-llc-mobile-nav-content {
        padding: 20px;
    }

    .developed-by-appwt-llc-mobile-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .developed-by-appwt-llc-mobile-nav-list > li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .developed-by-appwt-llc-mobile-nav-list > li > a {
        display: block;
        padding: 15px 0;
        color: #FFFFFF;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease;
    }

    .developed-by-appwt-llc-mobile-nav-list > li > a:hover,
    .developed-by-appwt-llc-mobile-nav-list > li > a.active {
        color: #D4AF37;
    }
}

/* ===== HIDE DUPLICATE CONTACT BARS ON MOBILE ===== */
@media (max-width: 768px) {
    /* Keep only the first contact bar, hide duplicates */
    .developed-by-appwt-llc-contact-bar + .developed-by-appwt-llc-contact-bar,
    .contact-bar + .contact-bar {
        display: none !important;
    }
}

/* ===== FLOATING BADGES - HIDE ON MOBILE ===== */
@media (max-width: 992px) {
    /* Hide floating badges on mobile - they're in the content already */
    .developed-by-appwt-llc-bbb-seal,
    .developed-by-appwt-llc-google-review-badge,
    .developed-by-appwt-llc-designrush-fixed {
        display: none !important;
    }
}

/* ===== HERO SECTION MOBILE ===== */
@media (max-width: 768px) {
    .hero-modern,
    .developed-by-appwt-llc-hero {
        min-height: 60vh !important;
        padding: 60px 15px 40px !important;
    }

    .hero-modern h1,
    .developed-by-appwt-llc-hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }

    .hero-modern p,
    .developed-by-appwt-llc-hero p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    /* Stack hero buttons vertically on small screens */
    .hero-buttons,
    .developed-by-appwt-llc-hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .hero-buttons > *,
    .developed-by-appwt-llc-hero-buttons > * {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .hero-modern,
    .developed-by-appwt-llc-hero {
        min-height: 50vh !important;
        padding: 50px 12px 30px !important;
    }

    .hero-modern h1,
    .developed-by-appwt-llc-hero h1 {
        font-size: 1.5rem !important;
    }
}

/* ===== PRICING CARDS MOBILE ===== */
@media (max-width: 768px) {
    .pricing-card-modern,
    .developed-by-appwt-llc-pricing-card {
        width: 90vw !important;
        max-width: 350px !important;
        margin: 0 auto 20px !important;
    }

    .pricing-cards-container {
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* ===== FOOTER MOBILE ===== */
@media (max-width: 768px) {
    .developed-by-appwt-llc-footer-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .developed-by-appwt-llc-footer-column,
    .footer-column {
        text-align: center !important;
    }

    /* Constrain map width */
    .footer-map iframe,
    .developed-by-appwt-llc-footer-map iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 200px !important;
    }
}

/* ===== FLOATING ELEMENTS CONSOLIDATION ===== */
@media (max-width: 768px) {
    /* Move floating CTA to bottom bar - NOT the fixed-consult-btn (that's in snowman stack) */
    .developed-by-appwt-llc-floating-cta {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        width: 100% !important;
        border-radius: 0 !important;
        padding: 15px !important;
        z-index: 998 !important;
    }

    /* Reposition back-to-top above bottom bar */
    .back-to-top,
    .developed-by-appwt-llc-back-to-top {
        bottom: 70px !important;
        right: 15px !important;
    }

    /* Reposition ADA widget above bottom bar to align with back-to-top */
    .developed-by-appwt-llc-ada-widget {
        bottom: 70px !important;
        left: 15px !important;
    }

    /* Cookie banner z-index fix */
    .cookie-consent,
    .cookie-banner {
        z-index: 99999 !important;
        pointer-events: auto !important;
    }
}

/* ===== TOUCH TARGETS - MINIMUM 44PX ===== */
@media (max-width: 768px) {
    button,
    a.btn,
    .developed-by-appwt-llc-btn,
    input[type="submit"],
    input[type="button"],
    .pricing-info-icon,
    .tooltip-trigger {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 16px !important;
    }

    /* Ensure adequate spacing between tappable elements */
    .developed-by-appwt-llc-mobile-nav-list > li > a,
    .mobile-menu a {
        padding: 16px 0 !important;
    }
}

/* ===== PREVENT HORIZONTAL SCROLL ===== */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    iframe {
        max-width: 100% !important;
    }

    pre, code {
        overflow-x: auto !important;
        max-width: 100% !important;
    }
}

/* ===== FORM FIXES MOBILE ===== */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important; /* Prevents iOS zoom */
        min-height: 44px !important;
    }

    select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 40px !important;
    }
}

/* =====================================================
   FLOATING BUTTONS - UNIFIED 50PX CIRCLES ALL DEVICES
   Master override section - must be at end of file
   ===================================================== */

/* Back-to-top: bottom-right corner - 50px circle */
.back-to-top,
.developed-by-appwt-llc-back-to-top {
    position: fixed !important;
    bottom: 25px !important;
    right: 15px !important;
    left: auto !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: var(--primary-color, #F4A261) !important;
    border: 2px solid #fff !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    z-index: 1000 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* Free Consult: 50px circle icon-only, 15px above back-to-top */
.fixed-consult-btn {
    position: fixed !important;
    bottom: 90px !important; /* 25px + 50px + 15px */
    right: 15px !important;
    left: auto !important; /* Override any left:0 from other rules */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: #4A90E2 !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    z-index: 1005 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* Hide the text in Free Consult button - icon only */
.fixed-consult-btn .fixed-consult-text {
    display: none !important;
}

.fixed-consult-btn .fixed-consult-icon,
.fixed-consult-btn svg {
    width: 24px !important;
    height: 24px !important;
    fill: currentColor !important;
}

.fixed-consult-btn:hover,
.back-to-top:hover,
.developed-by-appwt-llc-back-to-top:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

/* Mobile: Move buttons above floating bottom bar */
@media (max-width: 768px) {
    .back-to-top,
    .developed-by-appwt-llc-back-to-top {
        bottom: 70px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }

    .fixed-consult-btn {
        bottom: 135px !important; /* 70px + 50px + 15px */
        right: 15px !important;
        left: auto !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
    }

    /* Cart icon already handled in cart.php - bottom: 200px right: 15px */
}
