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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
}
.hero-title{
    color:white;
}
.div333{
        position: relative;
   padding-top: 45px !important;
}
.div4533{
          position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 8px !important;
    font-size: 12px !important;
    color: white;
    width: 253px;
    animation: unset !important;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Color Variables - Patrick's Branding */
:root {
    --patrick-blue: #1B76D8;
    --patrick-orange: #F47521;
    --patrick-dark-blue: #145A9F;
    --patrick-light-blue: #E6F3FF;
    --patrick-dark-gray: #475569;
    --patrick-light-gray: #F8FAFC;
    --patrick-green: #059669;
    --red-500: #EF4444;
    --red-100: #FEF2F2;
    --red-200: #FECACA;
    --green-100: #F0FDF4;
    --green-200: #BBF7D0;
    
    /* Aliases for consistency */
    --hvac-blue: var(--patrick-blue);
    --hvac-orange: var(--patrick-orange);
    --hvac-green: var(--patrick-green);
    --hvac-gray: var(--patrick-dark-gray);
    --hvac-light: var(--patrick-light-gray);
    --hvac-dark: #1F2937;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--hvac-dark);
}

.text-orange { color: var(--hvac-orange); }
.text-blue { color: var(--hvac-blue); }
.text-green { color: var(--hvac-green); }
.text-red { color: var(--red-500); }
.text-gray { color: var(--hvac-gray); }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Icons */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }

/* Buttons */
button {
    border: none;
    cursor: pointer;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--hvac-orange);
    color: white;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1);
}

.btn-primary:hover {
    background: #EA580C;
    transform: scale(1.05);
}

.btn-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.btn-primary.extra-large {
    padding: 2rem 4rem;
    font-size: 1.5rem;
}

.btn-orange {
    background: var(--hvac-orange);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
}

.btn-orange:hover {
    background: #EA580C;
}

.btn-blue {
    background: var(--hvac-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
}

.btn-blue:hover {
    background: #1D4ED8;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-pulse-slow {
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--hvac-blue) 0%, #1E3A8A 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-main {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-main {
        text-align: left;
    }
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    background: var(--hvac-orange);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-cta {
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    opacity: 0.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-visual {
        justify-content: flex-end;
    }
}

.savings-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
}

.savings-inner {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: var(--hvac-blue);
}
.div3222 .countdown-title{
    color:white;
}
.div3222 .countdown-grid{
    gap: 5px;
}
.div3222.countdown-timer{
        background: var(--hvac-orange);
    color: white;
    border-radius: 1rem;
    padding: 1.1rem 1.3rem;
    max-width: 28rem;
    margin: 0;
}
.savings-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.savings-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.savings-value {
    font-weight: 700;
    color: var(--hvac-green);
}

.offer-option {
    background: rgba(30, 64, 175, 0.05);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin: 0.5rem 0;
}

.savings-divider {
    text-align: center;
    font-weight: 700;
    color: var(--hvac-orange);
    margin: 0 0;
    font-size: 1.125rem;
}

.additional-benefits {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.benefits-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hvac-blue);
    margin-bottom: 0.75rem;
}

.savings-disclaimer {
    font-size: 0.75rem;
    margin-top: 1rem;
    color: var(--hvac-gray);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: var(--hvac-blue);
    margin-bottom: 1rem;
}

.section-title.large {
    font-size: 3rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-title.large {
        font-size: 3.75rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--hvac-gray);
    max-width: 48rem;
    margin: 0 auto;
}

/* Why Upgrade Section */
.why-upgrade-section {
    background: var(--hvac-light);
}

.comparison-grid {
    display: grid;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card {
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.card.red-theme {
    border: 1px solid var(--red-200);
    background: var(--red-100);
}

.card.green-theme {
    border: 1px solid var(--green-200);
    background: var(--green-100);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hvac-dark);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--hvac-gray);
}

/* Savings Package Section */
.savings-package-section {
    background: white;
}

.limited-badge {
    display: inline-flex;
    align-items: center;
    background: var(--hvac-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.countdown-timer {
    background: var(--hvac-orange);
    color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 28rem;
    margin: 0 auto 2rem;
}

.countdown-title {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.offers-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

@media (min-width: 1024px) {
    .offers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.offer-card {
    position: relative;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.offer-card.featured {
    border: 2px solid var(--hvac-orange);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--hvac-orange);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.offer-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
}

.offer-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hvac-blue);
    margin-bottom: 0.5rem;
}

.offer-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.offer-content {
    padding: 0 1.5rem 1.5rem;
}

.offer-description {
    color: var(--hvac-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--hvac-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.additional-savings {
    background: var(--hvac-light);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.additional-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--hvac-blue);
    margin-bottom: 1.5rem;
}

.additional-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .additional-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.additional-item {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.additional-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--hvac-blue);
    margin-bottom: 0.5rem;
}

.additional-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hvac-green);
    margin-bottom: 0.5rem;
}

.additional-desc {
    font-size: 0.875rem;
    color: var(--hvac-gray);
}

.total-savings {
    text-align: center;
}

.total-text {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--hvac-blue);
    margin-bottom: 0.5rem;
}

.total-amount {
    color: var(--hvac-green);
    margin-left: 0.5rem;
}

.disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--hvac-gray);
    margin-top: 1rem;
}

.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.final-cta-text {
    color: var(--hvac-gray);
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--hvac-light);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
}

.star.filled {
    color: #FCD34D;
    fill: currentColor;
}

.testimonial-text {
    color: var(--hvac-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--hvac-blue);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--hvac-gray);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Process Section */
.process-section {
    background: white;
}

.process-steps {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--hvac-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hvac-blue);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--hvac-gray);
    font-size: 0.875rem;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--hvac-light);
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hvac-blue);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--hvac-gray);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--hvac-blue) 0%, #1E3A8A 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: var(--hvac-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hvac-orange);
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: #D1D5DB;
    margin-bottom: 1rem;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info, .services-list, .areas-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D1D5DB;
}

.services-list, .areas-list {
    list-style: none;
}

.services-list li, .areas-list li {
    color: #D1D5DB;
    padding: 0.25rem 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
}

.footer-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-cta.hidden {
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.floating-content {
    background: var(--hvac-orange);
    color: white;
    border-radius: 1rem;
    padding: 1rem;
    width: 20rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.floating-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.floating-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.floating-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
}

.minimize-btn {
    background: transparent;
    color: white;
    padding: 0.25rem;
    border-radius: 0.25rem;
}

.minimize-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.floating-call-btn {
    background: white;
    color: var(--hvac-orange);
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.75rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.floating-call-btn:hover {
    background: #F3F4F6;
}

.floating-note {
    font-size: 0.75rem;
    text-align: center;
    opacity: 0.8;
}

.floating-minimized {
    width: 4rem;
    height: 4rem;
    background: var(--hvac-orange);
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.floating-minimized:hover {
    background: #EA580C;
}

.floating-minimized.hidden {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .floating-content {
        width: 16rem;
    }
    
    .floating-cta {
        right: 1rem;
        bottom: 1rem;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

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