/**
 * Republic Window Landing Page Styles
 *
 * TABLE OF CONTENTS
 * -----------------
 * 1.  VARIABLES & RESET
 * 2.  GENERAL & UTILITY CLASSES
 * 3.  BUTTON STYLES
 *     - Primary, Accent, Call
 *     - Custom Gradients (Orange, Blue, Green)
 *     - Back Button
 * 4.  HERO SECTION & BACKGROUND SLIDER
 * 5.  LEAD FORM & MULTI-STEP PROGRESS
 *     - Form Container
 *     - Progress Bar
 *     - Steps
 *     - Form Controls
 *     - Validation (Error/Success)
 * 6.  FORM ELEMENTS & OPTIONS
 *     - Project Options
 *     - Window Count Options
 *     - Ownership Options
 *     - Membership Options
 * 7.  LOADING PROMPT & QUESTIONS
 * 8.  PAGE SECTIONS
 *     - Value Proposition
 *     - Special Offer & Countdown
 *     - Testimonials & Financing
 * 9.  FOOTER
 * 10. GOOGLE PLACES AUTOCOMPLETE
 * 11. ANIMATIONS & HELPERS
 * 12. MEDIA QUERIES (RESPONSIVE STYLES)
 *     - 1200px and up (Large Desktop)
 *     - 992px and up (Desktop)
 *     - 768px and up (Tablet)
 *     - 576px and up (Small Tablet)
 *     - 480px and up (Large Mobile)
 *     - 375px and up (Standard Mobile)
 *     - Max 767px (Touch Optimizations)
 *     - Max 620px (Small Mobile Font Fix)
 *     - Max 480px (Question Responsiveness)
 *     - Max 389px (Extra Small Mobile)
 *     - Max 375px (iPhone SE)
 */
 
 
 @import url('value-prop.css');
 @import url('financing.css');
 
 @import url('portfolio-gallery.css');
 
 @import url('service-area.css');
 

 


/* --------------------------------------------------- */
/* 1. VARIABLES & RESET
/* --------------------------------------------------- */
:root {

    --bs-body-font-size: 1.2rem;
    --primary-color: #cc6d00;
    --secondary-color: #fff535;
    --accent-color: #00d4aa;
    --dark-color: #1a1a1a;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --white: #ffffff;
    --bs-heading-color: #3f5072;
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    --gradient-accent: linear-gradient(135deg, #159444 0%, #13a030 100%);
    --gradient-secondary: linear-gradient(135deg, #ec8d41 0%, #fb6800 100%); 
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', sans-serif;
}
.row {
    --bs-gutter-x: 2.0rem;
    --bs-gutter-y: 0;
 
}
.nowrap{
    white-space: nowrap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    padding-top: 60px;
}
.py-6{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}
/* --------------------------------------------------- */
/* 2. GENERAL & UTILITY CLASSES
/* --------------------------------------------------- */
.no-margin {
    margin: 0 !important;
}
.ni-padding{
    padding: 0px !important;
}
.no-wrap {
    white-space: nowrap;
}
.hero-left{
    padding-left: 25px;
    padding-right: 55px;
}
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #fff !important;
}
section.hero .row{
    --bs-gutter-x: 2rem;
 
 
}
section.hero.hero-estimate-page .row{
    --bs-gutter-x: 3rem;
 
 
}
.hero.hero-estimate-page {
    /* min-height: fit-content !important; */
    margin-top: 0px;
   
}
.navbar.estimate-page{
background: #ffffff !important;
}
.navbar.estimate-page  .btn-orange {
    padding: 12px 24px;
    width: 100%;
    text-align: center;
}
.cta-button {
    max-width: 350px;
}
.header-logo{
    float: left;
    width: 100px;
    max-height: 50px;
    margin: -10px 0px -10px 0px;
}
.get-estimate-form h2{
    font-weight: 800;
    color: #336592 !important;
    font-size: 28px;
}
.footer h6, .footer h5{
    font-weight: 800;
    color: #55c3f2 !important;
     
}
/* --------------------------------------------------- */
/* 3. BUTTON STYLES
/* --------------------------------------------------- */
.btn-primary,
.btn-accent,
.btn-call {
    border: none;
    border-radius: var(--border-radius);
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    color: white;
}

.btn-primary:hover,
.btn-accent:hover,
.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    filter: brightness(1.1);
    color: white;
}
.florida-state-icon{
    max-width: 160px;
}
.btn-primary {
    background: var(--gradient-primary);
}

.btn-accent {
    background: var(--gradient-accent);
}

.btn-call {
    background: var(--gradient-secondary);
    padding: 16px 24px;
    font-size: 1.1rem;
    width: 100%;
}
.review-badge-container {
    text-align: center;
    margin: 0px auto -10px auto;
}

/* Custom Gradient Buttons */
.btn-orange,
.btn-blue,
.btn-gradient-accent {
    border: none;
    border-radius: 0;
    padding: 18px 36px;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-orange:hover,
.btn-blue:hover,
.btn-gradient-accent:hover {
    /* transform: translateY(-3px); */
    color: white;
}

.btn-orange:active,
.btn-blue:active,
.btn-gradient-accent:active {
    transform: translateY(-1px);
}

.btn-orange {
    background: linear-gradient(135deg, #248c1d 0%, #199236 100%);
    box-shadow: 1px 0px 2px rgb(11 39 15 / 82%);
}

.btn-orange:hover {
    background: linear-gradient(135deg, #2f8729 0%, #379427 100%);
    box-shadow: 1px 0px 2px rgb(11 39 15 / 82%);
}

.btn-blue {
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

.btn-blue:hover {
    box-shadow: 0 10px 35px rgba(0, 102, 255, 0.6);
    background: linear-gradient(135deg, #0077ff 0%, #0055dd 100%);
}

.btn-gradient-accent {
    background: linear-gradient(-45deg, #30c21d, #117b27, #17861b, #369518);
    box-shadow: #03851d66;
    position: relative;
    overflow: hidden;
}

.form-step[data-step="1"] .btn-gradient-accent {
    background: linear-gradient(135deg, #159444, #13a030);
    background-size: 100% 100%;
    animation: modernPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(19, 160, 48, 0.3);
}

.form-step[data-step="1"] .btn-gradient-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #a5b5a500, rgb(255 255 255 / 16%), transparent);
    animation: shimmer 2s linear infinite;
    z-index: 1;
}

.form-step[data-step="1"] .btn-gradient-accent > * {
    position: relative;
    z-index: 2;
}

.form-step:not([data-step="1"]) .btn-gradient-accent {
    background: #159f32;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes modernPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(19, 160, 48, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(19, 160, 48, 0.5);
    }
}

.btn-gradient-accent:hover {
    /* Removed shadow animation */
}

/* Pulse Animations - Removed shadow effects */
.btn-orange.pulse {
    /* Removed pulse animation with shadows */
}

.btn-blue.pulse {
    /* Removed pulse animation with shadows */
}

.btn-gradient-accent.pulse {
    /* Removed pulse animation with shadows */
}

/* Back Button */
.btn-back {
    background: #ececec;
    border: 1px solid #e5e7eb;
    color: #888888;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.btn-back:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
    transform: translateX(-2px);
}

.btn-back:active {
    transform: translateX(0);
}

.btn-back i {
    font-size: 0.8rem;
}

/* --------------------------------------------------- */
/* 4. HERO SECTION & BACKGROUND SLIDER
/* --------------------------------------------------- */
.hero {
    background: #283240;
    
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #11131485;
    z-index: 2;
 
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.02)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-content,
.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    padding: 0px 15px;
    font-weight: 500;
}

.hero-title-top svg {
    max-width: 100px;
}

.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

.hero .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.first-fold-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0px 10px;
    flex-wrap: nowrap;
}

.first-fold-logos img {
    height: auto;
    flex: 1;
    max-width: 33.333%;
    object-fit: contain;
}

/* --------------------------------------------------- */
/* 5. LEAD FORM & MULTI-STEP PROGRESS
/* --------------------------------------------------- */
.lead-form {
    background: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.form-header-controls {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Progress Bar */
.form-progress {
    flex: 1;
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #21c057 0%, #24b346 100%);
    transition: width 0.3s ease;
    width: 14%;
}

.progress-text {
    text-align: right;
    margin-top: 2px;
    font-weight: 400;
    color: var(--medium-gray);
    font-size: 13px;
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.form-step h3 {
    font-size: 1.5rem  ;
    max-width: 540px;
    color: #2e4d75;
    margin: 0 auto 1rem auto;
}

.form-step p {
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 1rem;
    text-align: left;
    color: #326592;
}

.step-info {
    background: #f1fbff;
    padding: 1rem;
    line-height: 120%;
    border-radius: 15px;
    border-left: 4px solid #7bc1fa;
    margin-bottom: 1rem;
}

.step-info p {
    font-size: 18px;
    text-align: left;
    margin-bottom: 0px;
}

.form-step .step-infox {
    font-size: 18px;
    line-height: 135%;
    text-align: left;
    padding: 10px;
    margin-bottom: 1rem;
}

/* Modern Form Controls */
.form-control {
    border: 1px solid #5b7b98;
    border-radius: 0;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 400;
    background: #f2fbfe;
    color: #374151;
    transition: all 0.2s ease;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
    opacity: 1;
}

.form-control:hover {
    border-color: #d1d5db;
}

.form-control-lg {
    padding: 18px 24px;
    font-size: 18px;
    border-radius: 0;
}

.form-control-sm {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 0;
}

/* Select Dropdown Styling */
.form-select,
select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 40px;
    cursor: pointer;
}

.form-select:focus,
select.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Form Validation Styles */
.form-error,
.form-success {
    border: 1px solid;
    border-left-width: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    animation: slideInError 0.3s ease;
}

.form-error i,
.form-success i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.form-error {
    background: #fef2f2;
    border-color: #fecaca;
    border-left-color: #ef4444;
    color: #dc2626;
}

.form-error i {
    color: #ef4444;
}

.form-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    border-left-color: #22c55e;
    color: #0c5627;
}

.form-success i {
    color: #22c55e;
}

.form-error.field-error,
.form-success.field-success {
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding: 0.5rem 0.75rem;
    font-size: 1rem !important;
    border-left-width: 3px;
}

.form-control.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* --------------------------------------------------- */
/* 6. FORM ELEMENTS & OPTIONS
/* --------------------------------------------------- */
.project-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.project-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    background: #fbfdff;
    border: 1px solid #7093b5;
}

.project-option:hover,
.project-option.selected {
    border-color: #95cd95;
    background: rgb(204 252 217 / 29%);
}

.project-option .option-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.project-option h5 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

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

/* Window Count Options */
.window-count-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.window-count-btn {
    min-width: 288px;
    max-width: 300px;
    margin: auto;
    padding: 1rem 1.5rem;
    background: #fbfdff;
    border: 1px solid #7093b5;
    border-radius: 0;
 
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.window-count-btn:hover,
.window-count-btn.selected {
    border-color: #95cd95;
    background: rgb(204 252 217 / 29%);
}

.window-count-btn.selected {
    color: #1d6738;
}

/* Ownership Options */
.ownership-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ownership-option {
    text-align: center;
    padding: 2rem 1rem;
    background: #fbfdff;
    border: 1px solid #7093b5;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
 
}

.ownership-option:hover,
.ownership-option.selected {
    border-color: #1d6738;
    background: rgb(204 252 217 / 29%);
}

.ownership-option .option-icon {
    margin-bottom: 1rem;
}

.ownership-option h5 {
    font-size: 20px;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

/* Membership Options */
.membership-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.membership-option {
    display: flex;
    align-items: center;
    padding: 0 !important;
    border: 1px solid #d1d5db;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    background: #ffffff;
    position: relative;
}

.membership-option:hover {
    border-color: #9ca3af;
}

.membership-option.selected {
    border-color: #1d6738;
    background: rgb(204 252 217 / 29%);
}

.membership-logo {
    margin-right: 1rem;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    transition: var(--transition);
}

.membership-logo .logo-placeholder img {
    overflow: auto;
}

.membership-info {
    flex: 1;
    margin-right: 1rem;
    padding: 1rem 0;
}

.membership-info h5 {
    margin-bottom: 0.25rem;
    color: #374151;
    font-weight: 500;
}

.membership-info p {
    margin: 0;
    color: #222222;
    font-size: 0.9rem;
}

.membership-check {
    opacity: 0;
    color: #22c55e;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
    padding: 1rem;
}

.membership-option.selected .membership-check {
    opacity: 1;
    transform: scale(1);
}

.membership-option.selected .membership-info h5 {
    color: #1d6738;
    font-weight: 500;
}

/* --------------------------------------------------- */
/* 7. LOADING PROMPT & QUESTIONS
/* --------------------------------------------------- */
.loading-overlay {
    /* Was an overlay, now an inline block */
    display: none;
    padding: 2rem 0;
}

.loading-content {
    text-align: center;
    padding: 0;
    max-width: 400px;
    margin: auto;
}

.loading-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.loading-content p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.loading-overlay .spinner-border {
    color: var(--accent-color) !important;
    border-color: currentColor;
    border-right-color: transparent;
}

.loading-content p:last-child::after {
    content: '.';
    animation: loadingDots 1.5s infinite;
}

.loading-question {
    margin-top: 1.5rem;
    animation: fadeInUp 0.5s ease-out;
}

.question-box {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.question-box h5 {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.question-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.question-btn {
    flex: 1;
    max-width: 150px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    background: white;
    border-radius: 0;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.question-btn:hover:not(:disabled) {
    border-color: #17a146;
    background: rgb(0 255 255 / 5%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.question-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.question-btn.btn-primary {
    border-color: #1d6738;
    background: rgb(204 252 217 / 29%);
    color: #113e02;
}

.question-btn.btn-primary:hover:not(:disabled) {
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.15);
}

.question-btn i {
    font-size: 1rem;
}

.loading-question.question-answered {
    opacity: 0.7;
}

.loading-question.question-answered .question-box {
    background: #f1f3f5;
}

.loading-status {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    margin-top: 1.5rem !important;
}

.loading-status i {
    color: var(--accent-color);
}

/* --------------------------------------------------- */
/* 8. PAGE SECTIONS
/* --------------------------------------------------- */
.card-modern {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.value-prop,
.financing {
    background: linear-gradient(36deg, #6499ca52, #303b5900, #6499ca40);
    padding: 5rem 0;
}
.value-prop .row.g-4{
    --bs-gutter-y: 1rem;
}
.value-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.value-item i {
    font-size: 3rem;
    color:  #395881;
    margin-bottom: 1rem;
}

.special-offer {
    background: linear-gradient(45deg, #17ac4a, #2d7211, #028b14);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.special-offer h2 {
    font-size: 1.7rem;
    color: #effbff;
    text-shadow: 0px -1px #51559c;
}

.special-offer h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0px -1px #723000;
}

/* Primary dot pattern */
.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
    z-index: 1;
}

/* Secondary larger dot pattern */
.special-offer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: floatReverse 25s infinite linear;
    z-index: 1;
}

/* Additional dot layers */
.special-offer .dot-layer-1,
.special-offer .dot-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.special-offer .dot-layer-1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.15)"/></svg>');
    animation: floatDiagonal 30s infinite linear;
    z-index: 1;
}

.special-offer .dot-layer-2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.07)"/></svg>');
    animation: floatDiagonalReverse 35s infinite linear;
    z-index: 1;
}

.offer-content {
    position: relative;
    z-index: 2;
}

/* Animation keyframes */
@keyframes float {
    0% {
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

@keyframes floatReverse {
    0% {
        transform: translateX(100px) translateY(100px) rotate(0deg);
    }
    100% {
        transform: translateX(-100px) translateY(-100px) rotate(360deg);
    }
}

@keyframes floatDiagonal {
    0% {
        transform: translate(-100px, -100px) rotate(-45deg);
    }
    100% {
        transform: translate(100px, 100px) rotate(45deg);
    }
}

@keyframes floatDiagonalReverse {
    0% {
        transform: translate(100px, -100px) rotate(45deg);
    }
    100% {
        transform: translate(-100px, 100px) rotate(-45deg);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin: 1rem;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}
.hurricane-protection h2{
 
    font-weight: 600;
    color:  #FEC106;
    
}
/* --------------------------------------------------- */
/* 9. FOOTER
/* --------------------------------------------------- */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
}

/* --------------------------------------------------- */
/* 10. GOOGLE PLACES AUTOCOMPLETE
/* --------------------------------------------------- */
.pac-container {
    font-family: var(--font-family);
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 9999 !important;
}

.pac-container:empty,
.pac-container.pac-hidden {
    display: none !important;
}

.pac-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pac-item:hover {
    background-color: #f8f9fa;
}

.pac-item-selected,
.pac-item-selected:hover {
    background-color: rgba(232, 83, 0, 0.1);
}

.pac-icon {
    display: none;
}

.pac-item-query {
    font-weight: 600;
    color: var(--dark-color);
}

.pac-matched {
    font-weight: 700;
    color: #000;
}

.api-key-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    display: none;
}

.api-key-notice i {
    margin-right: 0.5rem;
}

/* Browser Autocomplete Suppression */
#propertyAddress::-webkit-contacts-auto-fill-button,
#propertyAddress::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    height: 0;
    width: 0;
    margin: 0;
}

input#propertyAddress:-webkit-autofill,
input#propertyAddress:-webkit-autofill:hover,
input#propertyAddress:-webkit-autofill:focus,
input#propertyAddress:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #374151 !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* --------------------------------------------------- */
/* 11. ANIMATIONS & HELPERS
/* --------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    /* Removed pulse animation with shadows */
}

@keyframes pulse {
    /* Removed shadow animation keyframes */
}

@keyframes orangePulse {
    /* Removed shadow animation keyframes */
}

@keyframes bluePulse {
    /* Removed shadow animation keyframes */
}

@keyframes gradientAccentPulse {
    /* Removed shadow animation keyframes */
}

@keyframes float {
    0% {
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateYee32233wwwcç(0);
    }
}

@keyframes loadingDots {
    0% {
        content: '.';
    }
    33% {
        content: '..';
    }
    66% {
        content: '...';
    }
    100% {
        content: '.';
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------- */
/* 12. MEDIA QUERIES (RESPONSIVE STYLES)
/* --------------------------------------------------- */
/* ... All media queries will be moved here ... */

/* 1200px and up (Large Desktop) */
@media (min-width: 1200px) {
    .container {
        max-width: 1450px;
    }
}

/* 992px and up (Desktop) */
@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1450px;
    }
    .value-prop,
    .financing {
        padding: 5rem 0;
    }
    .special-offer {
        padding: 4rem 0;
    }
}

/* 768px and up (Tablet) */
@media (min-width: 768px) {
    .hero {
        /* min-height: 100vh; */
        padding: 0;
    }
    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: 1.5rem;
    }
    .hero .lead {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        margin-bottom: 2rem;
    }
    .btn-orange,
    .btn-blue,
    .btn-gradient-accent {
        width: auto;
    }
    .lead-form {
        margin-top: 0;
    }
    .value-prop,
    .financing {
        padding: 4rem 0;
    }
    .special-offer {
        padding: 3rem 0;
    }
}

/* 576px and up (Small Tablet) */
@media (min-width: 576px) {
 
    .hero {
        padding: 7rem 0px 100px 0px;
    }
    .hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1.25rem;
    }
    .hero .lead {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        margin-bottom: 1.75rem;
    }
    .project-option {
        flex-direction: row;
        text-align: left;
        padding: 0.5rem;
    }
    .project-option .option-icon {
        margin-right: 0;
        margin-bottom: 0;
    }
    .membership-option {
        flex-direction: row;
        text-align: left;
    }
    .membership-logo {
        margin-right: 1rem;
        margin-bottom: 0;
    }
    .membership-info {
        margin-right: 1rem;
        margin-bottom: 0;
        padding: 1rem 0;
    }
    .membership-check {
        padding: 1rem;
    }
    .ownership-options {
        grid-template-columns: 1fr 1fr;
    }
    .countdown {
        gap: 0.75rem;
    }
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    .countdown-number {
        font-size: 2rem;
    }
    .countdown-label {
        font-size: 0.8rem;
    }
}

/* 480px and up (Large Mobile) */
@media (min-width: 480px) {
    .btn-orange,
    .btn-blue,
    .btn-gradient-accent {
        padding: 22px 28px;
        font-size: 1.1rem;
    }
    .lead-form {
        padding: 2rem;
    }
    .step-info p {
        font-size: 16px;
     
    }
    .project-option,
    .ownership-option {
        padding: 1.25rem;
    }
    .membership-info,
    .membership-check {
        padding: 0.75rem 0;
    }
    .logo-placeholder {
        width: 80px;
        height: 80px;
    }
    .countdown-item {
        min-width: 75px;
        padding: 0.875rem 0.75rvem;
    }
    .countdown-number {
        font-size: 1.75rem;
    }
}

/* 375px and up (Standard Mobile) */
@media (min-width: 375px) {
     
    .hero .lead {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 1.5rem;
        font-weight: 500;
        line-height: 140%;
    }
    .btn-orange,
    .btn-blue,
    .btn-gradient-accent {
        padding: 22px 24px;
        font-size: 1rem;
        font-weight: 600;
        width: 100%;
        text-align: center;
    }
    .lead-form {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    .form-control-lg {
        padding: 22px 20px;
        font-size: 16px;
    }
    .project-option {
        padding: 1rem;
        flex-direction: row;
        text-align: center;
    }
    .project-option .option-icon {
        margin-right: 0;
        margin-bottom: 0;
    }
    .project-option h5 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        text-align: left;
        margin-left: 10px;
        width: 200px;
    }
    .project-option p {
        font-size: 0.85rem;
    }
    .ownership-option {
        padding: 1.5rem 1rem;
    }
    .membership-option {
        flex-direction: row;
        text-align: left;
    }
    .membership-logo {
        margin-right: 1rem;
    }
    .membership-info {
        padding: 0.5rem 0;
        margin-right: 0.5rem;
        margin-left: 10px;
    }
    .membership-check {
        padding: 0.5rem;
    }
    .logo-placeholder {
        width: 80px;
        height: 80px;
    }
    .membership-info h5 {
        font-size: 1rem;
    }
    .membership-info p {
        font-size: 0.85rem;
    }
    .countdown {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .countdown-item {
        min-width: 70px;
        padding: 0.75rem 0.5rem;
    }
    .countdown-number {
        font-size: 1.5rem;
    }
    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Max 767px (Touch Optimizations & General Mobile) */
@media (max-width: 767px) {
    .hero-left{
        padding-left: 0px;
        padding-right: 0px;
    }
    section,
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .btn,
    .project-option,
    .window-count-btn,
    .ownership-option,
    .membership-option {
        min-height: auto;
        touch-action: manipulation;
    }
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    .hero-content {
        text-align: center;
    }
    .hero .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .form-step h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    .project-options .project-option {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0;
    }
    .window-count-btn {
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
    }
    .value-item,
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    .nav-pills {
        flex-direction: column;
    }
    .nav-pills .nav-link {
        margin-bottom: 0.25rem;
        text-align: center;
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    .badge {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-md-6 {
        margin-bottom: 2rem;
    }
    .modal-dialog {
        margin: 1rem;
    }
    .modal-content {
        border-radius: 0;
    }
    .btn-back {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    .btn-back i {
        font-size: 0.75rem;
    }
    .display-4 {
        font-size: 2rem;
    }
    .display-5 {
        font-size: 1.75rem;
    }
    .display-6 {
        font-size: 1.5rem;
    }
    .membership-logo {
        margin: 0;
    }
    .membership-logo .logo-placeholder img {
        height: auto;
    }
    .membership-option > div:first-child {
        width: 75px;
    }
    .logo-placeholder {
        height: auto;
    }
    .membership-check {
        display: none;
    }
    .membership-option.selected::before {
        content: '\f00c';
        font-family: 'FontAwesome';
        position: absolute;
        top: 0px;
        right: 0px;
        background: #04af43;
        padding: 2px;
        color: #ffffff;
        font-size: 12px;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .first-fold-logos {
        gap: 0.75rem;
    }
    .form-step .row {
        --bs-gutter-x: 0rem  !important;
        padding: 0px !important;
    }
    .first-fold-logos img {
        max-width: 30%;
    }
}

/* Max 620px (Small Mobile Font Fix) */
@media (max-width: 620px) {
    .florida-state-icon{
        max-width: 60px;
    }
    .hero-slider {
         
        height: 450px;
    }
    .form-step .step-infox {
        font-size: 16px !important;
        line-height: 135% !important;
        text-align: center !important;
    }
    .form-error,
    .form-error i,
    .form-error.field-error,
    .form-success,
    .form-success,
    .form-success.field-success {
        font-size: 15px !important;
        line-height: 1.2 !important;
    }
}

/* Max 480px (Question Responsiveness) */
@media (max-width: 480px) {
 
    .hero-title-top svg {
        max-width: 105px;
        width: 100%;
        height: 110px;
    }

    .question-buttons {
        flex-direction: row;
        gap: 0.5rem;
    }
    .question-btn {
        max-width: none;
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .question-btn i {
        display: none;
    }
    .question-box {
        padding: 1.25rem;
    }
    .question-box h5 {
        font-size: 1rem;
    }
    .loading-content {
        /* padding: 1.5rem; */
    }
    .step-info p {
        font-size: 16px;
        
    }

}

/* Max 389px (Extra Small Mobile) */
@media (max-width: 389px) {
    .membership-option > div:first-child {
        width: 60px;
    }
}

/* Max 375px (iPhone SE) */
@media (max-width: 375px) {
    .countdown {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        justify-content: center;
        max-width: 280px;
        margin: 2rem auto 0;
    }
    .countdown-item {
        padding: 0.75rem 0.5rem;
        min-width: auto;
        width: 100%;
    }
    .countdown-number {
        font-size: 1.5rem;
    }
    .countdown-label {
        font-size: 0.7rem;
    }
}

/* CTA Button Clean Styles */
.cta-button {
    text-decoration: none;
}

.cta-button:hover {
    text-decoration: none;
}

/* General Styles */
html {
    /* scroll-behavior removed to prevent conflicts with JavaScript smooth scroll */
}

/* Trust Indicators Section */
.hero .trust-item {
    background: #1f314b66;
    backdrop-filter: blur(10px);
    border: 1px #dddddd36 solid;
    text-align: center;
    padding: 2rem 1rem;
    margin: 0 1rem;
    height: 100%;
}

.hero .trust-icon {
    margin-bottom: 1.5rem;
}

.hero .trust-icon img {
    max-width: 80px;
    height: auto;
}

.hero .trust-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero .trust-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #ebebeb;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Trust Indicators Mobile Carousel */
#trustCarousel {
    position: relative;
}

#trustCarousel .carousel-inner {
    padding-bottom: 4rem;
}

#trustCarousel .carousel-item {
    /* padding: 0 1rem; */
    padding: 0 0rem !important;
}

.trust-indicators-dots {
    position: absolute !important;
    bottom: 1rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex !important;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    width: auto !important;
    height: auto !important;
}

.trust-indicators-dots button {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    border: none !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    outline: none;
    text-indent: -9999px !important;
    flex-shrink: 0;
}

.trust-indicators-dots button:hover {
    background-color: rgba(255, 255, 255, 0.7) !important;
    transform: scale(1.1);
}

.trust-indicators-dots button.active {
    background-color: white !important;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.trust-indicators-dots button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Add subtle animation on dot change */
.trust-indicators-dots button::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.trust-indicators-dots button.active::after {
    opacity: 1;
    transform: scale(1);
}

/* Ensure mobile responsiveness */
@media (max-width: 576px) {
    .trust-indicators-dots {
        bottom: 0.5rem !important;
    }
    
    .trust-indicators-dots button {
        width: 14px !important;
        height: 14px !important;
    }
    
    #trustCarousel .carousel-inner {
        padding-bottom: 3.5rem;
    }
}

/* Value Proposition Section */
.value-prop .row.g-4{
    --bs-gutter-y: 1rem;
}

.value-item {
    display: flex;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.value-item i {
    font-size: 3rem;
    color: #149e34;
    margin-bottom: 0rem;
    width: fit-content;
    padding: 0px 5px 0px 0px;
}
 

.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

.offer-content {
    position: relative;
    z-index: 2;
}

.countdown {
    display: flex ;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
        flex-wrap: nowrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin: 1rem;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.sticky-logo {
    /* display: flex;
    align-items: start;
    gap: 0.75rem; */
}

.sticky-logo .logo-svg {
    height: 35px;
    width: auto;
    flex-shrink: 0;
}

.sticky-logo .brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    white-space: nowrap;
}

.btn-header-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header-cta:hover {
    background: linear-gradient(135deg, #e55a2e 0%, #e8851a 100%);
    color: white;
}

.btn-header-cta i {
    font-size: 0.85rem;
}

/* Adjust body padding to account for sticky header */
body {
    padding-top: 60px;
}

/* Hide on very small screens */
@media (max-width: 575px) {
    .sticky-logo .brand-text {
        font-size: 1rem;
    }
    
    .btn-header-cta {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .btn-header-cta .me-2 {
        margin-right: 0.25rem !important;
    }
}

/* Smooth scroll behavior */
/* html scroll-behavior removed to prevent conflicts with JavaScript smooth scroll */

/* Trust Badge in Form Step 1 */
.trust-badge-section {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Removed duplicate CSS - now handled in the new desktop trust section */

/* Desktop Trust Section Layout */
.desktop-trust-flex {
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.trust-badge-flex {
    gap: 15px;
    margin: 0 auto;
}

.trust-seal-icon {
    width: 60px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.trust-seal-icon:hover {
    opacity: 1;
}

.trust-paragraph {

}

.trust-paragraph p {
    margin: 0;
}

.trust-paragraph .fas.fa-shield-alt {
    font-size: 1rem;
    color: #28a745 !important;
}

@media (max-width: 576px) {
    .desktop-trust-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-badge-container {
        margin: 15px auto 15px auto;
    }
    
    .trust-badge-flex {
        flex-direction: row;
        text-align: center;
        gap: 10px;
    }
    
    .trust-seal-container {
        margin-right: 0 !important;
    }
    
    .trust-paragraph {
        text-align: center !important;
    }
    
    .trust-seal-icon {
        width: 50px;
    }
    
    .trust-paragraph p {
        font-size: 12px !important;
        max-width: 280px;
        margin: 0 auto;
    }
    .value-item {
        display: flex ;
        text-align: center;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        align-content: center;
    }
    .value-title {
        width: fit-content;
        font-size: 1.25rem;
        margin: 9px 0 0 0;
    }
    .value-item i {
        
        margin-bottom: 0px;
        width: fit-content;
    }
    .value-description {
        display: block;
        font-size: 16px;
        line-height: 120%;
        text-align: left;
        padding: 5px 0px 0px 0px;
    }
}

/* Video Carousel Section - Overlapping Effect */
.video-carousel-section {
    background: linear-gradient(310deg, #405877, #212540, #405877);
    margin-top: -5vh;
    position: relative;
    z-index: 10;
    padding: 70px 0 70px 0;
}
.carousel-header{
    max-width: 1350px;
    margin: 0 auto;
   
}
.carousel-header .guarantee-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
   
}
.video-carousel-section h2 {
    color: #fff;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0rem;
  
}
.video-carousel-section p{
    color: #fff;
    text-align: center;
     
    font-weight: 400;
    max-width: 100%;
    padding: 0 15px;
   margin: 0 auto 4rem auto;
}
.premium-quality-guarantee,
.satisfied-guarantee {
    margin-top: -130px;
    max-width: 15%;
    height: 100%;
    width: 100%;
  
}
.satisfied-guarantee {
 
}
.premium-quality-guarantee {
    max-width: 17%;
}
.video-carousel-section .carousel-container {
 

    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    perspective: 1200px;
    overflow-x: clip;
 
 
 
}

.carousel-container {
    position: relative;
    width: auto;
    perspective: 1200px;
    overflow-x: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.carousel-track {
    position: relative;
  width: 360px;
        height: 45vh;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 1100px) {
    .carousel-header .guarantee-container {
 
        gap: 1rem;
        margin: 130px 10px -90px;
    }
    .premium-quality-guarantee {
        max-width: 25%;
    margin-top: -140px;
    z-index: 2;
        }
        .satisfied-guarantee {
            margin-top: -130px;
            max-width: 22%;
            z-index: 2;
        }

         
}
@media (min-width: 768px) and (max-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
 
    }
}
@media (max-width: 580px) {
  
        
    .video-carousel-section p {
       
        padding: 20px 15px 0;
        margin: 0px auto 4rem auto;
    }
    .carousel-header .guarantee-container {
    
        gap: 1rem;
        margin: 120px 10px -90px;
        position: relative;
        z-index: 3;
    }
}
/* Desktop 3D Carousel Styles (> 767px) */
@media (min-width: 768px) {
    .carousel-track {
        width: 360px;
        height: 45vh;
        padding-bottom: 0;
}

.video-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
        transform-origin: center center;
    }

    .video-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Video Info Overlay */
    .video-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
        color: white;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .video-slide:hover .video-info {
        opacity: 1;
        transform: translateY(0);
    }

    .video-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .video-description {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.9);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    /* Play Button Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
        background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
        transition: all 0.3s ease;
}

.video-slide:hover .video-overlay {
    opacity: 1;
}

.play-button {
        width: 60px;
        height: 60px;
        background: white;
    border-radius: 50%;
        display: flex !important;
    align-items: center;
    justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        opacity: 1;
        transform: scale(1);
        border: none;
        cursor: pointer;
    }

    .play-button svg {
        width: 28px;
        height: 28px;
    transition: transform 0.3s ease;
    }

    .play-button:active {
        transform: scale(0.95);
        background-color: rgba(255,255,255,0.9);
    }

    .play-button:active svg {
        transform: scale(0.95);
    }

    /* Update desktop play button */
    @media (min-width: 768px) {

        .hero h1 {
            font-size: clamp(1.8rem, 6vw, 2.5rem);
            line-height: 1.2;
            margin-bottom: 10%  ;
            padding-top: 25px;
        }
        
        .play-button {
            transform: scale(0.8);
            opacity: 0;
        }

        .video-slide:hover .play-button {
            opacity: 1;
            transform: scale(1);
}

.play-button:hover {
    transform: scale(1.1);
                box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            }

        .play-button:hover svg {
            transform: scale(1.1);
        }
    }

    /* Larger screens */
    @media (min-width: 1200px) {
        .play-button {
            width: 70px;
            height: 70px;
        }

        .play-button svg {
            width: 32px;
            height: 32px;
        }
    }

    /* Extra large screens */
    @media (min-width: 1600px) {
        .play-button {
            width: 80px;
            height: 80px;
        }

        .play-button svg {
            width: 36px;
            height: 36px;
        }
    }
 
 
    /* Small mobile screens */
    @media (max-width: 375px) {
        .play-button {
            width: 50px;
            height: 50px;
        }

        .play-button svg {
            width: 24px;
            height: 24px;
        }
    }

.video-slide.active {
    transform: translateX(0) translateZ(150px) rotateY(0deg) scale(1.15) !important;
    z-index: 10;
}

.video-slide.prev {
    transform: translateX(-370px) translateZ(-100px) rotateY(35deg) scale(0.8) !important;
    z-index: 5;
}

.video-slide.next {
    transform: translateX(370px) translateZ(-100px) rotateY(-35deg) scale(0.8) !important;
    z-index: 5;
}

.video-slide.far-left {
    transform: translateX(-550px) translateZ(-250px) rotateY(55deg) scale(0.65) !important;
    z-index: 1;
}

.video-slide.far-right {
    transform: translateX(550px) translateZ(-250px) rotateY(-55deg) scale(0.65) !important;
    z-index: 1;
}

    .carousel-wrapper {
        margin-bottom: 50px; /* Space for dots */
    }

.carousel-dots {
        position: relative;
        bottom: -10px;
        left: 0;
        right: 0;
    display: flex;
        justify-content: center;
        align-items: center;
    gap: 12px;
        padding: 15px 0;
    z-index: 100;
}

.dot {
   
    width: 16px;
    height: 16px;
    background:rgba(255, 255, 255, 0.4) !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
        margin: 0 4px;
}

.dot:hover {
        background: rgba(57, 87, 128, 0.5);
        transform: scale(1.1);
}

.dot.active {
    background-color: white !important;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
    border-radius: 50%;
        background: rgba(57, 87, 128, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot.active::after {
    opacity: 1;
}
}

/* Larger screens */
@media (min-width: 1200px) {
    .carousel-track {
        width: 395px;
        height: 50vw;
    }

    .play-button {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .video-title {
        font-size: 1.2rem;
    }

    .video-description {
        font-size: 1rem;
    }

    .carousel-wrapper {
        margin-bottom: 60px; /* More space for dots on larger screens */
    }

    .dot {
        width: 14px;
        height: 14px;
    }

    .dot::after {
        width: 28px;
        height: 28px;
    }
}

/* Extra large screens */
@media (min-width: 1600px) {
    .carousel-track {
        display: block;
        width: 410px;
        height: 53vh;
    }

    .play-button {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .carousel-wrapper {
        margin-bottom: 70px; /* Even more space for dots on extra large screens */
    }

    .dot {
        width: 16px;
        height: 16px;
    }

    .dot::after {
        width: 32px;
        height: 32px;
    }
}

/* Mobile Regular Carousel Styles (≤ 767px) */
@media (max-width: 767px) {
    .video-carousel-section {
        margin-top: -3vh;
        padding: 30px 0 40px 0;
        overflow: hidden;
        position: relative;
    }

    .video-carousel-section .carousel-container {
        perspective: none;
        margin: 0;
        transform: none;
        width: 100%;
    }
    .hero h1 {
        
        margin-bottom: 70%;
        padding-top: 25px;
    }
    .carousel-wrapper {
        overflow: hidden;
        width: 100%;
        margin-bottom: 25px; /* Add space for dots */
    }

    .carousel-track {
        display: flex;
        width: 98%;
        height: 80vh;
        transform-style: flat;
        transform: translateX(0);
        transition: transform 0.5s ease;
    }

    .video-slide {
        position: relative;
        min-width: 90%;
        height: 80vh;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin: 0 5%;
        transform: none !important;
        transition: none;
    }

    .video-slide.active,
    .video-slide.prev,
    .video-slide.next,
    .video-slide.far-left,
    .video-slide.far-right {
        transform: none !important;
        z-index: 1;
        opacity: 1;
    }

    .video-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-info {
        position: absolute;
        bottom: 0;
        padding: 15px;
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        width: 100%;
    }

    .video-title {
        font-size: 18px;
        margin-bottom: 4px;
        color: white;
    }

    .video-description {
        font-size: 14px;
        opacity: 0.9;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Hide navigation arrows on mobile */
    .carousel-nav {
        display: none !important;
    }

    /* Enhanced mobile dots navigation */
    .carousel-dots {
        position: relative; /* Changed from absolute to relative */
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 15px 0;
        z-index: 100;
        background: transparent;
        margin-top: 15px; /* Space between videos and dots */
    }

    .dot {
        width: 16px;
        height: 16px;
        background:rgba(255, 255, 255, 0.4) !important;
        
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        margin: 0 4px;
    }

    .dot:hover {
        background: rgba(57, 87, 128, 0.5);
    }

    .dot.active {
        background-color: white !important;
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    }

    .dot::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(57, 87, 128, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .dot.active::after {
        opacity: 1;
    }

    /* Add touch hint animation */
    @keyframes touchHint {
        0% { transform: translateX(0); }
        25% { transform: translateX(-10px); }
        75% { transform: translateX(10px); }
        100% { transform: translateX(0); }
    }

    .video-slide:first-child {
        animation: touchHint 1.5s ease-in-out;
        animation-delay: 2s;
        animation-iteration-count: 2;
    }

    /* Video Overlay and Play Button */
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
         
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1; /* Always visible on mobile */
        transition: all 0.3s ease;
        pointer-events: none; /* Allow clicks to pass through to video */
    }

    .play-button {
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        opacity: 1;
        transform: scale(1);
        border: none;
        cursor: pointer;
        pointer-events: auto; /* Re-enable clicks on button */
    }

    /* Hide play button when video is playing */
    .video-slide.playing .play-button {
        display: none !important;
        opacity: 0;
        visibility: hidden;
    }

    .play-button svg {
        width: 28px;
        height: 28px;
        transition: transform 0.3s ease;
    }

    /* ... rest of mobile styles ... */
}

/* Small mobile screens */
@media (max-width: 375px) {
    .carousel-dots {
        padding: 10px 0;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot::after {
        width: 20px;
        height: 20px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .video-title {
        font-size: 16px;
    }

    .video-description {
        font-size: 13px;
    }
}

/* --------------------------------------------------- */
/* WHAT'S NEXT SECTION STYLES
/* --------------------------------------------------- */
/* What's Next Section Styles */
.whats-next-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.whats-next-section h5 {
    color: #326592;
    font-weight: 600;
    margin-bottom: 15px;
}

.whats-next-list {
    margin: 0;
    padding-left: 20px;
    color: #495057;
}

.whats-next-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.whats-next-list li:last-child {
    margin-bottom: 0;
}

/* Portfolio Gallery Section */
.portfolio-gallery-section {
    padding: 80px 0;
    background-color: #283240;
}

.portfolio-title {
    color: #ffffff;
}

.portfolio-subtitle {
    color: #ffffff !important;
}

.portfolio-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid #06aa2c;
    border-radius: 30px;
    background: transparent;
    color: #4b5e84;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #149e34;
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.grid-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

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

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay i {
    color: white;
    font-size: 24px;
}

.grid-item.hidden {
    display: none;
}

/* GLightbox customization */
.glightbox-container {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
}

.gslide-description {
    background: rgba(0, 0, 0, 0.7);
}

.gslide-title {
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.gslide-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
}
@media (max-width: 580px) {
.video-carousel-section {

    overflow-x: unset;
    overflow-y: visible !important;
     
}
}
@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 5px 12px;
        font-size: 13px;
    }
}
@media (max-width: 380px) {
 .estimate-page .fas.fa-phone.me-1{
   display: none;
 }
}
 

/* Hide sticky header on mobile */
@media (max-width: 767px) {
    

    /* Sticky Footer */
    .sticky-footer {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fefefeb3;
        backdrop-filter: blur(14px);
        padding: 15px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        display: none;
    }

    .sticky-footer.visible {
        transform: translateY(0);
        display: block;
    }

    .sticky-footer .btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 5px;
    }
}

/* Show sticky header on desktop */
@media (min-width: 768px) {
 .sticky-footer{
    display: none;
 }
}

/* Mobile styles for sticky header and body padding */
@media (max-width: 767px) {
    body {
        padding-top: 0;
        transition: padding-top 0.3s ease;
    }

    body.has-sticky-header {
        padding-top: 60px;
    }

    .sticky-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: white;
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .sticky-header.visible {
        transform: translateY(0);
    }
}

/* Desktop styles */
@media (min-width: 768px) {
    body {
        padding-top: 0 !important; /* Override any mobile styles */
    }

    .sticky-header {
        display: block; /* Show on desktop */
    }
}

/* --------------------------------------------------- */
/* 13. MOBILE COUNTY ACCORDION (Service Area Section)
/* --------------------------------------------------- */

.mobile-county-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.mobile-county-item {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-county-item:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.mobile-county-item.active {
    border-color: #0066cc;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.2);
}

.mobile-county-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-county-item.active .mobile-county-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #ffffff;
}

.mobile-county-btn:hover {
    background: #f8f9fa;
}

.mobile-county-item.active .mobile-county-btn:hover {
    background: linear-gradient(135deg, #004499 0%, #003366 100%);
}

.county-btn-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.chevron-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-county-item.active .chevron-icon {
    transform: rotate(180deg);
}

.county-cities-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 0 16px;
}

.mobile-county-item.active .county-cities-content {
    max-height: 600px;
    padding: 16px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.city-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: #495057;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.city-item:hover {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-color: #0066cc;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    cursor: pointer;
}

.city-item i {
    font-size: 11px;
    margin-right: 8px;
    color: #6c757d;
}

.city-item:hover i {
    color: #0066cc;
}

.mobile-county-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.mobile-county-btn:active {
    transform: scale(0.98);
}

/* Responsive adjustments for mobile accordion */
@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .county-cities-content {
        padding: 0 12px;
    }
    
    .mobile-county-item.active .county-cities-content {
        padding: 12px;
    }
    
    .city-item {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .mobile-county-btn {
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .mobile-county-btn {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .city-item {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .city-item i {
        font-size: 10px;
        margin-right: 6px;
    }
    
    .chevron-icon {
        font-size: 12px;
    }
}

/* Phone validation styles */
.form-control.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.79.79 3.09-3.09-.79-.79L2.3 6.73z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-success.field-success {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #28a745;
}

.form-warning.field-warning {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #ffc107;
}

.validation-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.validation-feedback.text-success {
    color: #28a745 !important;
}

.validation-feedback.text-danger {
    color: #dc3545 !important;
}

.validation-feedback.text-warning {
    color: #ffc107 !important;
}

/* Loading state for validation */
.form-control:disabled {
    background-color: #f8f9fa;
    opacity: 0.65;
}

button:disabled .fa-spinner {
    animation: fa-spin 1s infinite linear;
}

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

/* Auto-proceed success states */
.btn .fa-check {
    color: #28a745;
}

.form-success.field-success {
    animation: fadeInSuccess 0.5s ease-in;
}

@keyframes fadeInSuccess {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Enhanced thank you message styles */
.form-success div[style*="gradient"] {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    animation: slideInSuccess 0.8s ease-out;
}

.form-success .fas.fa-check-circle {
    animation: checkBounce 0.6s ease-out 0.2s both;
}

@keyframes slideInSuccess {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes checkBounce {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Form validation styles */
.form-error, .form-error.field-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 8px;
    color: #dc3545;
    font-size: 14px;
    display: flex;
    align-items: center;
    animation: shake 0.5s ease-in-out;
}

.form-success, .form-success.field-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 8px;
    color: #28a745;
    font-size: 14px;
    display: flex;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
    justify-content: center;
    flex-wrap: nowrap;
}

.form-warning, .form-warning.field-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 8px;
    color: #856404;
    font-size: 14px;
    display: flex;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
}

/* Pulse button animation for urgency */
.pulse-btn {
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 0 0 rgba(50, 101, 146, 0.7);
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(50, 101, 146, 0.7);
    }
    
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(50, 101, 146, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(50, 101, 146, 0);
    }
}

/* Voucher info section styling */
.voucher-info-section ul {
    max-width: 300px;
    margin: 0 auto;
}

.voucher-info-section .list-unstyled li {
    padding: 2px 0;
    font-size: 0.9rem;
}

/* Call to Action Section for Voucher */
.cta-section {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #326592, #4a7ba7);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(50, 101, 146, 0.2);
}

.cta-section .cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 18px 40px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.cta-section .cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    color: white;
}

.cta-section .cta-button:active {
    transform: translateY(0px);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .cta-section {
        margin: 20px 0;
        padding: 20px 15px;
    }
    
    .cta-section .cta-button {
        padding: 16px 30px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cta-section .cta-button {
        padding: 14px 25px;
        font-size: 18px;
        letter-spacing: 0.5px;
    }
}