/* ===============================================
   Snap Garage Door - Main Stylesheet
   Colors: Blue (#0A2E5C) & Orange (#FF8C00)
   =============================================== */

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2B2B2B;
    background-color: #ffffff;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==================== VARIABLES ==================== */
:root {
    --primary-red: #E63946;
    --primary-orange: #FF6B35;
    --bright-orange: #FF8C00;
    --yellow: #FFD700;
    --dark-red: #C41E3A;
    --dark-orange: #E67E00;
    --light-orange: #FFA533;
    --black: #1A1A1A;
    --dark-gray: #2B2B2B;
    --gray-dark: #2B2B2B;
    --gray-medium: #666666;
    --gray-light: #E5E5E5;
    --gray-bg: #F8F9FA;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --shadow-orange: rgba(255, 140, 0, 0.3);
    --shadow-red: rgba(230, 57, 70, 0.3);
}

/* ==================== CONTAINER & LAYOUT ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-medium);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bright-orange) 0%, var(--primary-orange) 100%);
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    border-color: var(--primary-red);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 46, 92, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn i {
    margin-right: 8px;
}

.btn-coupon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-coupon:hover {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.5);
}

.btn-print {
    background-color: var(--gray-light);
    color: var(--gray-dark);
    border: 2px solid var(--gray-light);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-print:hover {
    background-color: var(--gray-medium);
    color: var(--white);
}

/* ==================== HEADER & NAVIGATION ==================== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: block;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.nav-phone a {
    background: linear-gradient(135deg, var(--bright-orange) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 2px 8px var(--shadow-orange);
}

.nav-phone a:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 0;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-trucks.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--bright-orange) 100%);
    color: var(--black);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.8);
    }
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    font-weight: 800;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 35px auto;
    max-width: 600px;
}

.hero-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--yellow);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.7);
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
}

.btn-hero-secondary {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--bright-orange) 100%);
    color: var(--black);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-hero-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.7);
    background: linear-gradient(135deg, var(--bright-orange) 0%, var(--primary-orange) 100%);
    color: var(--white);
}

.hero-phone {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    margin-top: 5px;
    letter-spacing: 2px;
}

.hero-subtext {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 1px;
}

.hero-trust-badges {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.badge-individual {
    width: 120px;
    height: auto;
    animation: badges-float 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.8)) brightness(1.1);
    transition: transform 0.3s ease;
    display: block;
}

.badge-individual:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 12px 30px rgba(255, 140, 0, 1)) brightness(1.2);
}

.badge-pro {
    width: 120px;
    height: 120px;
    background-image: url('../images/badges-transparent.png');
    background-size: 480px auto;
    background-repeat: no-repeat;
    animation: badges-float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.6));
    transition: transform 0.3s ease;
}

.badge-pro:hover {
    transform: scale(1.1);
}

.badge-bonded-pro {
    background-position: -240px center;
}

.badge-satisfaction-pro {
    background-position: -360px center;
}

@keyframes badges-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
}

/* ==================== PROMO FLASH BANNER ==================== */
.promo-flash {
    background: linear-gradient(135deg, #FF0000 0%, #FF6B00 50%, #FFD700 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    animation: promo-pulse 3s ease-in-out infinite;
    border-top: 5px solid var(--yellow);
    border-bottom: 5px solid var(--yellow);
}

@keyframes promo-pulse {
    0%, 100% {
        box-shadow: inset 0 0 0 rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.8);
    }
}

.promo-flash::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: promo-stripes 20s linear infinite;
}

@keyframes promo-stripes {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--yellow);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border: 2px solid var(--yellow);
    animation: badge-blink 1.5s ease-in-out infinite;
}

@keyframes badge-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.promo-badge i {
    animation: bolt-spin 2s linear infinite;
}

@keyframes bolt-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.promo-flash h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 1);
    }
}

.promo-flash p {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.promo-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-promo-flash {
    background: var(--black);
    color: var(--yellow);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 900;
    border: 3px solid var(--yellow);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    animation: phone-bounce 1s ease-in-out infinite;
}

@keyframes phone-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-promo-flash:hover {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

.btn-promo-coupons {
    background: var(--white);
    color: var(--primary-red);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border: 3px solid var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-promo-coupons:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: scale(1.05);
}

/* ==================== COUPONS BANNER ==================== */
.coupons-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FF6347 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.coupons-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coupons-banner .container {
    position: relative;
    z-index: 1;
}

.coupons-banner .section-header h2,
.coupons-banner .section-header p {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.coupons-banner .section-header {
    position: relative;
}

.starburst {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--yellow);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    transform: rotate(-15deg);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: starburst-spin 4s linear infinite, starburst-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes starburst-spin {
    from { transform: rotate(-15deg); }
    to { transform: rotate(345deg); }
}

@keyframes starburst-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.coupons-banner .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    animation: bounce 2s ease-in-out infinite;
}

.savings-banner {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    background: rgba(255, 255, 255, 0.3);
    padding: 18px 35px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 15px;
    border: 4px solid var(--white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: banner-glow 2s ease-in-out infinite;
}

@keyframes banner-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.9);
    }
}

.urgency-text {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-top: 15px !important;
    color: var(--white) !important;
    animation: urgency-blink 1s ease-in-out infinite;
}

@keyframes urgency-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.coupon-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.coupon-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
    border-color: var(--primary-orange);
}

.coupon-card.featured {
    border: 3px solid var(--primary-orange);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
    box-shadow: 0 10px 35px rgba(255, 140, 0, 0.4);
}

.coupon-card.featured:hover {
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.6);
}

/* Coupon Card Images */
.coupon-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.coupon-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coupon-card:hover .coupon-card-image img {
    transform: scale(1.1);
}

/* Pulse animation for featured coupons */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 35px rgba(255, 140, 0, 0.4);
    }
    50% {
        box-shadow: 0 15px 45px rgba(255, 140, 0, 0.7);
        transform: scale(1.02);
    }
}

.coupon-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.coupon-header i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.coupon-badge {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
    animation: glow 2s ease-in-out infinite;
}

.coupon-badge.hot {
    background: linear-gradient(135deg, #FF4500 0%, #FF0000 100%);
    animation: glow-hot 1.5s ease-in-out infinite;
}

.coupon-badge.emergency {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
    }
    50% {
        box-shadow: 0 2px 15px rgba(255, 140, 0, 0.8);
    }
}

@keyframes glow-hot {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 69, 0, 0.5);
    }
    50% {
        box-shadow: 0 2px 20px rgba(255, 0, 0, 1);
        transform: scale(1.05);
    }
}

.coupon-card h3 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin: 15px 0;
}

.coupon-description {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.coupon-details p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.coupon-disclaimer {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-top: 15px;
}

.coupons-cta {
    text-align: center;
    margin-top: 50px;
}

.coupons-cta .btn {
    font-size: 1.2rem;
    padding: 18px 50px;
    background: var(--white);
    color: var(--primary-blue);
    border: 3px solid var(--white);
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.coupons-cta .btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--primary-blue);
    color: var(--white);
}

/* ==================== SERVICES GRID ==================== */
.services {
    background-color: var(--gray-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.3);
    border: 2px solid var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 50%, var(--primary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
    animation: service-icon-float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.7);
}

@keyframes service-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--dark-orange);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
    animation: feature-float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.7);
}

@keyframes feature-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-medium);
}

/* ==================== TRUST SHOWCASE ==================== */
.trust-showcase {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    padding: 60px 0;
    border-top: 5px solid var(--yellow);
    border-bottom: 5px solid var(--primary-orange);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge-item {
    text-align: center;
}



.trust-tagline {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--yellow) 100%);
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.5);
}

.trust-tagline h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.trust-tagline p {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ==================== SERVICE AREA ==================== */
.service-area {
    background-color: var(--gray-bg);
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-area-info h3 {
    margin-bottom: 20px;
}

.area-highlights {
    margin: 30px 0;
}

.area-item {
    display: flex;
    gap: 15px;
    align-items: start;
    margin-bottom: 20px;
}

.area-item i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 5px;
}

.area-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.area-item p {
    color: var(--gray-medium);
    margin: 0;
}

.service-area-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--yellow) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
    animation: gradient-shift 15s ease infinite;
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.map-placeholder i {
    font-size: 6rem;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    animation: map-pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes map-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.map-placeholder p {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background-color: var(--gray-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
    height: fit-content;
}

.contact-info-box h3 {
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    gap: 15px;
    align-items: start;
}

.contact-method i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-method h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-method a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-method a:hover {
    color: var(--primary-orange);
}

.contact-method p {
    color: var(--gray-medium);
    margin: 0;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

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

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

.form-message.info {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
    display: block;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-orange);
}

.contact-list i {
    margin-right: 10px;
    color: var(--primary-orange);
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    mix-blend-mode: lighten;
    filter: brightness(1.3) contrast(1.1);
    background: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, #FF0000 0%, var(--primary-red) 30%, var(--primary-orange) 70%, var(--yellow) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradient-shift 15s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    animation: bounce-in 0.8s ease-out;
}

@keyframes bounce-in {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.page-header p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

/* ==================== ABOUT PAGE ==================== */
.about-content {
    padding: 80px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro h2 {
    margin-bottom: 25px;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.mission-content h2 {
    margin-bottom: 25px;
}

.mission-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow);
}

.mission-image i {
    font-size: 6rem;
    color: var(--white);
    opacity: 0.8;
}

.about-values {
    margin: 80px 0;
    text-align: center;
}

.about-values h2 {
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.about-team {
    margin: 80px 0;
}

.about-team h2 {
    text-align: center;
    margin-bottom: 30px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-feature {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.3);
}

.team-feature i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 50%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
    animation: icon-shine 3s ease-in-out infinite;
}

@keyframes icon-shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.team-feature h4 {
    margin-bottom: 10px;
}

.about-approach {
    margin: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-approach h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-red);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.approach-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 50%, var(--primary-red) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    animation: step-pulse 2s ease-in-out infinite;
}

@keyframes step-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6); }
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--gray-medium);
    margin: 0;
}

.about-commitment {
    margin: 80px 0;
}

.commitment-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.commitment-box h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.commitment-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.commitment-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--yellow) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradient-shift 15s ease infinite;
    background-size: 200% 200%;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.cta-section p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 50px;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #1A1A1A 0%, #2b2b2b 100%);
    color: var(--white);
    border: 3px solid var(--white);
    font-size: 1.3rem;
    padding: 20px 50px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(255, 255, 255, 0.6); }
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

.cta-section .btn-secondary {
    background: linear-gradient(135deg, var(--white) 0%, #f5f5f5 100%);
    border: 3px solid var(--white);
    color: var(--primary-red);
    font-size: 1.3rem;
    padding: 20px 50px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.cta-section .btn-secondary:hover {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: var(--dark-red);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.6);
}

/* ==================== SERVICES PAGE ==================== */
.services-overview {
    padding: 60px 0;
}

.overview-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-intro h2 {
    margin-bottom: 25px;
}

.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background-color: var(--gray-bg);
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 50%, var(--primary-red) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: service-card-glow 3s ease-in-out infinite;
    position: relative;
}

.service-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

@keyframes service-card-glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(255, 140, 0, 0.15); }
    50% { box-shadow: 0 15px 50px rgba(255, 140, 0, 0.3); }
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 50%, var(--primary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6);
    animation: icon-pulse 2s ease-in-out infinite;
    position: relative;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 50%, var(--primary-red) 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(255, 140, 0, 0.8); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0; }
}

.service-icon-large i {
    font-size: 3.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.service-text h2 {
    margin-bottom: 25px;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-text h3 {
    margin: 40px 0 25px 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
}

.service-lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-list {
    margin: 25px auto;
    display: grid;
    gap: 12px;
    max-width: 600px;
    text-align: left;
}

.service-list li {
    display: flex;
    align-items: start;
    gap: 12px;
}

.service-list i {
    color: var(--primary-orange);
    margin-top: 4px;
    font-size: 1.1rem;
}

.service-steps {
    margin: 25px 0;
    counter-reset: step-counter;
}

.service-steps li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.service-warning,
.service-features {
    background-color: #FFF5E6;
    border-left: 4px solid var(--primary-orange);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.service-warning i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-right: 10px;
}

.service-warning p {
    margin: 0;
    display: flex;
    align-items: start;
    gap: 10px;
}

.service-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--white);
    border-radius: 5px;
}

.feature-badge i {
    color: var(--primary-orange);
}

.pricing-info {
    background-color: var(--gray-bg);
    padding: 80px 0;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.pricing-feature {
    text-align: center;
}

.pricing-feature i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.pricing-feature h3 {
    margin-bottom: 15px;
}

.pricing-info .btn {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

/* ==================== COUPONS PAGE ==================== */
.coupons-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
}

.coupons-page {
    padding: 80px 0;
}

.coupons-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.coupon-instructions {
    background-color: #E6F3FF;
    padding: 15px 20px;
    border-radius: 5px;
    border-left: 4px solid var(--primary-blue);
    margin-top: 20px;
}

.coupon-instructions i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.coupons-grid-page {
    display: grid;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.coupon-card-full {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 50%, var(--primary-red) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: card-glow 3s ease-in-out infinite;
}

@keyframes card-glow {
    0%, 100% { box-shadow: 0 8px 30px rgba(255, 140, 0, 0.2); }
    50% { box-shadow: 0 12px 40px rgba(255, 140, 0, 0.4); }
}

.coupon-card-full:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.5);
}

.coupon-badge-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.5);
    animation: badge-bounce 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.coupon-badge-corner.popular {
    background: linear-gradient(135deg, #FF0000 0%, var(--primary-orange) 50%, var(--yellow) 100%);
    animation: badge-pulse-hot 1.5s ease-in-out infinite;
}

@keyframes badge-pulse-hot {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 0, 0, 0.6); }
    50% { box-shadow: 0 8px 25px rgba(255, 140, 0, 0.8); transform: scale(1.08); }
}

.coupon-badge-corner.special {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 100%);
    animation: badge-shine 2s ease-in-out infinite;
}

@keyframes badge-shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.coupon-header-full {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--yellow) 100%);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    animation: gradient-shift 15s ease infinite;
    background-size: 200% 200%;
}

.coupon-header-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.coupon-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: icon-spin-float 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes icon-spin-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.coupon-icon-large i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coupon-title-section h3 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 900;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    animation: title-pulse 2s ease-in-out infinite;
}

@keyframes title-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coupon-subtitle {
    color: rgba(255, 255, 255, 1);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.coupon-body {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.coupon-description-full h4 {
    margin-bottom: 15px;
}

.coupon-details-list h5 {
    margin-bottom: 15px;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 800;
}

.coupon-details-list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coupon-details-list li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.coupon-details-list i {
    color: var(--primary-orange);
    margin-top: 4px;
}

.verification-note {
    margin-top: 15px;
    padding: 10px;
    background-color: var(--gray-bg);
    border-radius: 5px;
}

.coupon-footer {
    padding: 30px 40px;
    background-color: var(--gray-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-code {
    font-size: 1.1rem;
    color: var(--gray-medium);
}

.coupon-code strong {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-family: monospace;
}

.coupon-actions {
    display: flex;
    gap: 15px;
}

.coupon-terms {
    padding: 20px 40px;
    background-color: #FFF9F0;
    border-top: 1px solid var(--gray-light);
}

.coupon-terms p {
    margin: 0;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.redeem-section {
    background-color: var(--gray-bg);
    padding: 80px 0;
}

.redeem-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.redeem-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.redeem-step {
    text-align: center;
    flex: 1;
}

.redeem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.redeem-arrow {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.redeem-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.terms-section {
    padding: 80px 0;
}

.terms-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.terms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.terms-box {
    background-color: var(--gray-bg);
    padding: 40px;
    border-radius: 10px;
}

.terms-box h3 {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-box h3 i {
    color: var(--primary-orange);
}

.terms-box ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terms-box li {
    padding-left: 20px;
    position: relative;
}

.terms-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.terms-contact {
    text-align: center;
    font-size: 1.1rem;
}

.terms-contact a {
    color: var(--primary-blue);
    font-weight: 600;
}

.terms-contact a:hover {
    color: var(--primary-orange);
}

/* ==================== CONTACT PAGE ==================== */
.contact-options {
    padding: 60px 0;
    background-color: var(--gray-bg);
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-option-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px var(--shadow-lg);
}

.option-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    animation: option-icon-pulse 2s ease-in-out infinite;
}

@keyframes option-icon-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6); }
}

.option-icon.phone {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
}

.option-icon.email {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--yellow) 100%);
}

.option-icon.form {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 50%, var(--primary-red) 100%);
}

.option-icon i {
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.contact-option-card h3 {
    margin-bottom: 15px;
}

.option-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 20px 0;
}

.option-value:hover {
    color: var(--primary-orange);
}

.option-hours {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin: 0;
}

.contact-info-section {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.hours-list {
    margin: 25px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid var(--gray-light);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: var(--primary-blue);
}

.time {
    color: var(--gray-medium);
}

.emergency-note {
    background-color: #FFF5E6;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.emergency-note i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.service-area-intro {
    margin-bottom: 25px;
}

.service-areas-list h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-areas-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-areas-list li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.service-areas-list i {
    color: var(--primary-orange);
    margin-top: 4px;
}

.area-question {
    margin-top: 25px;
    font-style: italic;
}

.area-question a {
    color: var(--primary-blue);
    font-weight: 600;
}

.area-question a:hover {
    color: var(--primary-orange);
}

.contact-form-section {
    background-color: var(--gray-bg);
    padding: 80px 0;
}

.form-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-page {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-submit {
    margin-top: 30px;
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray-medium);
    text-align: center;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
}

.sidebar-box h3 {
    margin-bottom: 20px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.benefits-list i {
    color: var(--primary-orange);
    margin-top: 4px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
}

.cta-box h3 {
    color: var(--white);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--gray-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.faq-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: start;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-orange);
    margin-top: 2px;
}

.faq-item p {
    margin: 0;
    color: var(--gray-medium);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .service-area-content,
    .about-mission,
    .info-grid,
    .terms-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .coupon-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }
    
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .page-header h1 { font-size: 2.2rem; }
    
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px var(--shadow);
        display: none;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-phone {
        width: 100%;
    }
    
    .nav-phone a {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    .hero {
        min-height: 600px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .hero-feature {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .hero-phone {
        font-size: 1.6rem;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
    
    .badge-individual {
        width: 100px;
    }
    
    .badge-pro {
        width: 100px;
        height: 100px;
        background-size: 400px auto;
    }
    
    .badge-pro.badge-bonded-pro {
        background-position: -200px center;
    }
    
    .badge-pro.badge-satisfaction-pro {
        background-position: -300px center;
    }
    

    
    .promo-flash h2 {
        font-size: 2rem;
    }
    
    .promo-flash p {
        font-size: 1.1rem;
    }
    
    .btn-promo-flash {
        padding: 15px 30px;
        font-size: 1.3rem;
    }
    
    .btn-promo-coupons {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .starburst {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        top: -10px;
        right: 10px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .services-grid,
    .features-grid,
    .coupons-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .redeem-steps {
        flex-direction: column;
    }
    
    .redeem-arrow {
        transform: rotate(90deg);
    }
    
    .service-areas-list ul {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-phone {
        font-size: 1.4rem;
    }
    
    .hero-subtext {
        font-size: 0.85rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .badge-individual {
        width: 85px;
    }
    
    .badge-pro {
        width: 85px;
        height: 85px;
        background-size: 340px auto;
    }
    
    .badge-pro.badge-bonded-pro {
        background-position: -170px center;
    }
    
    .badge-pro.badge-satisfaction-pro {
        background-position: -255px center;
    }
    
    .hero-trust-badges {
        gap: 15px;
    }
    

    
    .promo-flash h2 {
        font-size: 1.6rem;
    }
    
    .promo-flash p {
        font-size: 1rem;
    }
    
    .btn-promo-flash {
        padding: 14px 25px;
        font-size: 1.2rem;
    }
    
    .btn-promo-coupons {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .promo-cta {
        flex-direction: column;
    }
    
    .btn-promo-flash,
    .btn-promo-coupons {
        width: 100%;
    }
    
    .starburst {
        width: 50px;
        height: 50px;
        font-size: 0.85rem;
        top: 0;
        right: 5px;
    }
    
    .trust-tagline h2 {
        font-size: 1.6rem;
    }
    
    .trust-tagline p {
        font-size: 1rem;
    }
    
    .contact-form,
    .contact-form-page {
        padding: 30px 20px;
    }
    
    .coupon-card {
        padding: 20px;
    }
    
    .coupon-header-full {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    
    .coupon-body {
        padding: 30px 20px;
    }
    
    .coupon-footer {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .coupon-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .coupon-actions .btn {
        width: 100%;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .site-header,
    .site-footer,
    .cta-section,
    .nav-toggle {
        display: none;
    }
    
    .coupon-card-full {
        page-break-inside: avoid;
        border: 2px solid #000;
        margin-bottom: 20px;
    }
    
    body {
        font-size: 12pt;
    }
}
