.ix-system-link {
    display: none !important
}

.ix-powered-by {
    display: none !important
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
}

.container-fluid {
    width: 100%;
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-right: auto;
    margin-left: auto
}

/* ========================= */
/* HERO JUMBOTRON */
/* ========================= */
.hero-jumbotron {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-jumbotron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(92, 26, 51, 0.88) 0%,
            rgba(42, 8, 69, 0.85) 50%,
            rgba(0, 31, 46, 0.82) 100%);
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    height: 70px;
    width: auto;
    z-index: 10;
    animation: fadeInDown 1s ease-out;
}

.dealer-name {
    position: absolute;
    top: 30px;
    left: 140px;
    z-index: 10;
    animation: fadeInDown 1s ease-out;
    padding-left: 40px;
    border-left: 3px solid rgba(0, 163, 224, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70px;
    min-width: 300px;
}

.dealer-name h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.dealer-name p {
    font-size: 1rem;
    margin: 8px 0 0 0;
    opacity: 0.95;
    letter-spacing: 2px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 20px 10px 20px 85px;
    max-width: 900px;
}

.main-title {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out;
}

.sub-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.event-subtitle {
    font-size: 1.1rem;
    margin-top: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.tagline-block {
    background: linear-gradient(135deg, #00A3E0 0%, #0077b6 100%);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tagline-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"></circle></svg>');
    opacity: 0.3;
}

.tagline-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tagline-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 20px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 3px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.cta-primary {
    background: #00A3E0;
    border-color: #00A3E0;
    color: #fff;
}

.cta-primary:hover {
    background: #0088be;
    border-color: #0088be;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 163, 224, 0.4);
    text-decoration: none;
}

.cta-secondary {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.cta-secondary:hover {
    background: #fff;
    border-color: #fff;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}


/* ========================= */
/* BANNER 2 SECTION */
/* ========================= */
.banner-2 {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003B5C 0%, #00547a 100%);
    overflow: hidden;
}

.banner-2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-2::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 84, 122, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, transparent 2px, transparent 4px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, transparent 2px, transparent 4px);
    pointer-events: none;
    z-index: 2;
}

.banner-2-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 50px 0;
}

.banner-2-geometric {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 163, 224, 0.2);
    border-radius: 10px;
    transform: rotate(45deg);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.banner-2-geometric-2 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 163, 224, 0.15);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 6s ease-in-out infinite;
}

.banner-2-line {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 163, 224, 0.2) 50%, transparent 100%);
    transform: rotate(-15deg);
    z-index: 1;
}

.banner-2-line-2 {
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 163, 224, 0.15) 50%, transparent 100%);
    transform: rotate(-10deg);
    z-index: 1;
}

.banner-2-text-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-2-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.banner-2-headline {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
}

.banner-2-headline-word {
    display: block;
    letter-spacing: 3px;
}

.banner-2-subheadline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.banner-2-divider {
    width: 100px;
    height: 2px;
    background: #00A3E0;
    margin: 40px auto;
}

.banner-2-cta {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.8;
}

/* ========================= */
/* FEATURES SECTION */
/* ========================= */
.features-section {
    padding: 50px 0;
    background: #f5f5f5;
    color: #333;
}

.features-section .section-title {
    color: #003B5C;
}

.features-section .section-subtitle {
    color: #555;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Main Feature Card */
.clean-features .feature-card {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border: 1px solid #e3e3e3;
    border-radius: 14px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.clean-features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* Large Feature Cards - More Padding */
.clean-features .large-feature {
    padding: 45px 35px;
}

/* Feature Icons */
.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #00A3E0, #47d7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Feature Titles */
.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e1e1e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Descriptions */
.feature-description {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.subtitle {
    color: #555;
    font-size: 1.05rem;
    margin-top: -5px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Mini Features - Nested Cards */
.mini-feature {
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    border: 1px solid #ececec;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.mini-feature:hover {
    background: rgba(0, 163, 224, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mini-feature i {
    color: grey;
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: block;
}

.mini-feature p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

/* Mini Lines - For Performance Section */
.mini-line {
    font-size: 1rem;
    color: #444;
    margin: 0;
    padding: 12px 0;
}

.mini-line i {
    color: #00A3E0;
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Grid Spacing */
.clean-features .mb-4 {
    margin-bottom: 30px !important;
}

/* ========================= */
/* STATS SECTION */
/* ========================= */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00547a 0%, #00A3E0 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.5;
}

.stats-geometric {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: rotate(30deg);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0px, transparent 2px, transparent 4px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0px, transparent 2px, transparent 4px);
    pointer-events: none;
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ========================= */
/* PRICING SECTION */
/* ========================= */
.pricing-section {
    padding: 100px 0;
    background: #fff;
    color: #333;
}

.pricing-section .section-title {
    color: #003B5C;
}

.pricing-section .section-subtitle {
    color: #555;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 163, 224, 0.25);
}

.pricing-featured {
    border: 3px solid #00A3E0;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00A3E0;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-tier {
    font-size: 2rem;
    font-weight: 700;
    color: #003B5C;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-stock {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00A3E0;
    margin-bottom: 10px;
}

.pricing-amount span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #999;
}

.pricing-per-vehicle {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 25px;
}

.pricing-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ========================= */
/* FINAL CTA */
/* ========================= */
.final-cta {
    background: linear-gradient(135deg, #00A3E0 0%, #0088BB 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* ========================= */
/* FOOTER */
/* ========================= */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00A3E0;
    text-decoration: none;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    padding: 0 15px;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

/* ========================= */
/* MODAL POPUP */
/* ========================= */
.pop-up .modal-content {
    background: #fff;
    color: #333;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pop-up .modal-header {
    border-bottom: 2px solid #f0f0f0;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pop-up .modal-title {
    color: #003B5C;
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: none;
    margin: 0;
}

.pop-up .modal-header .close {
    font-size: 2rem;
    color: #003B5C;
    opacity: 0.6;
    transition: all 0.3s ease;
    text-shadow: none;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.pop-up .modal-header .close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.pop-up .modal-body {
    padding: 30px 25px;
}

.pop-up .modal-body input[type="text"],
.pop-up .modal-body input[type="email"],
.pop-up .modal-body input[type="tel"],
.pop-up .modal-body input[type="number"],
.pop-up .modal-body select,
.pop-up .modal-body textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
    text-shadow: none;
}

.pop-up .modal-body input[type="text"]:focus,
.pop-up .modal-body input[type="email"]:focus,
.pop-up .modal-body input[type="tel"]:focus,
.pop-up .modal-body input[type="number"]:focus,
.pop-up .modal-body select:focus,
.pop-up .modal-body textarea:focus {
    border-color: #00A3E0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.1);
}

.pop-up .modal-body label {
    color: #003B5C;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
    text-shadow: none;
}

.pop-up .modal-body button[type="submit"],
.pop-up .modal-body input[type="submit"],
.pop-up .modal-body .btn-primary {
    background: #00A3E0;
    border: 2px solid #00A3E0;
    color: #fff;
    padding: 14px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    text-shadow: none;
    margin: 0;
}

.pop-up .modal-body button[type="submit"]:hover,
.pop-up .modal-body input[type="submit"]:hover,
.pop-up .modal-body .btn-primary:hover {
    background: #0088BB;
    border-color: #0088BB;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 163, 224, 0.3);
}

.pop-up .modal-footer {
    border-top: 2px solid #f0f0f0;
    padding: 20px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pop-up .modal-footer .btn-secondary {
    background: #6c757d;
    border: 2px solid #6c757d;
    color: #fff;
    padding: 14px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-shadow: none;
    margin: 0;
    width: auto;
    min-width: 200px;
}

.pop-up .modal-footer .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.pop-up .modal-body ::placeholder {
    color: #999;
    font-style: italic;
}

.pop-up .modal-body select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23003B5C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* ========================= */
/* FORM WIDGET STYLING */
/* ========================= */
#widget-forms-Contact *,
#widget-forms-Contact label,
#widget-forms-Contact input,
#widget-forms-Contact textarea,
#widget-forms-Contact button,
#widget-forms-Contact .form-control,
#widget-forms-Contact .col-form-label-sm {
    text-shadow: none !important;
}

#widget-forms-Contact .form-group.row:has(.fw-submit-button) .col-12 {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 !important;
}

#widget-forms-Contact .fw-submit-button,
#widget-forms-Contact .fw-reset-button {
    width: 100% !important;
    padding: 14px 40px !important;
    margin: 0 !important;
    font-size: 1rem !important;
    text-shadow: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

#widget-forms-Contact .fw-submit-button {
    background: #00A3E0 !important;
    border: 2px solid #00A3E0 !important;
}

#widget-forms-Contact .fw-submit-button:hover {
    background: #0088BB !important;
    border-color: #0088BB !important;
}

#widget-forms-Contact .fw-reset-button {
    background: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

#widget-forms-Contact .fw-reset-button:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
}

/* ========================= */
/* CUSTOM BUTTON STYLING */
/* ========================= */
button.btn.btn-primary.btn-sm.float-right {
    background: #00A3E0;
    border-color: #0088BB;
}

i.fas.fa-cookie-bite.text-primary.mr-2.mt-md-1 {
    color: #00A3E0 !important;
}

.alert a {
    color: #00A3E0 !important;
    font-weight: bold;
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ========================= */
/* RESPONSIVE MEDIA QUERIES */
/* ========================= */

/* iPad Pro (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .features-section .container,
    .stats-section .container,
    .pricing-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .hero-content {
        margin-top: 40px;
    }

    .stat-card {
        padding: 20px 20px;
        height: 100%;
    }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
    @media (max-width: 992px) {
        .hero-logo {
            height: 60px;
            left: 30px;
            top: 25px;
        }

        .dealer-name {
            left: 120px;
            height: 60px;
            padding-left: 30px;
            top: 25px;
        }

        .dealer-name h3 {
            font-size: 1.5rem;
            letter-spacing: 2px;
        }

        .dealer-name p {
            font-size: 0.9rem;
            margin-top: 6px;
        }
    }

    .hero-content {
        padding: 100px 40px 40px 40px;
    }

    .main-title {
        font-size: 3rem;
        letter-spacing: 5px;
        margin-bottom: 25px;
    }

    .sub-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
        margin-bottom: 35px;
    }

    .event-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .event-subtitle {
        font-size: 1rem;
        margin-top: 25px;
    }

    .banner-2 {
        min-height: 70vh;
        padding: 80px 0;
    }

    .banner-2-content {
        padding: 80px 0;
    }

    .banner-2-tagline {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .banner-2-headline {
        font-size: 3rem;
        margin-bottom: 25px;
    }

    .banner-2-subheadline {
        font-size: 1.5rem;
        margin-bottom: 35px;
    }

    .banner-2-cta {
        font-size: 1rem;
        letter-spacing: 2.5px;
    }

    .features-section,
    .pricing-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }

    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 50px;
    }

    .feature-card {
        padding: 35px 25px;
        margin-bottom: 25px;
    }

    .stats-section {
        padding: 70px 0;
    }

    .stat-card {
        padding: 35px 20px;
        margin-bottom: 18px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .pricing-card {
        padding: 35px 25px;
        margin-bottom: 25px;
    }

    .pricing-tier {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .pricing-amount {
        font-size: 3rem;
    }

    .pop-up .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }

    .pop-up .modal-header,
    .pop-up .modal-body,
    .pop-up .modal-footer {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* iPad (834px - 1194px) */
@media (min-width: 834px) and (max-width: 1194px) {
    .footer-separator {
        padding: 0 18px;
    }

    .hero-logo {
        height: 50px;
        left: 30px;
        top: 30px;
    }

    .dealer-name {
        left: 100px;
        padding-left: 22px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .hero-jumbotron {
        min-height: 70vh;
        justify-content: center;
        align-items: center;
        padding: 80px 20px 40px;
    }

    @media (max-width: 768px) {
        .feature-icon {
            font-size: 2.4rem;
            margin-bottom: 15px;
        }

        .feature-title {
            font-size: 1.15rem;
        }

        .feature-description {
            font-size: 0.9rem;
        }

        .clean-features .feature-card {
            padding: 28px;
        }

        .clean-features .large-feature {
            padding: 35px 25px;
        }

        .hero-logo {
            height: 50px;
            top: 20px;
            left: 20px;
        }

        .tagline-block {
            padding: 35px 25px;
        }

        .tagline-text {
            font-size: 1rem;
        }

        .cta-buttons-container {
            max-width: 100%;
            padding: 0 20px;
        }

        .cta-button {
            padding: 18px 30px;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .dealer-name {
            top: 20px;
            left: auto;
            right: 20px;
            padding-left: 0;
            padding-right: 30px;
            border-left: none;
            text-align: right;
            height: 50px;
            min-width: auto;
        }

        .dealer-name h3 {
            font-size: 1.1rem;
            letter-spacing: 1.5px;
        }

        .dealer-name p {
            font-size: 0.75rem;
            letter-spacing: 1px;
            margin-top: 4px;
        }
    }


    .hero-content {
        padding: 0 20px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .main-title {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .sub-title {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .event-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
        letter-spacing: 1px;
        line-height: 1.5;
    }

    .event-subtitle {
        font-size: 0.85rem;
        margin-top: 15px;
    }

    .banner-2 {
        min-height: 50vh;
        padding: 40px 0;
    }

    .banner-2-content {
        padding: 40px 0;
    }

    .banner-2-geometric,
    .banner-2-geometric-2,
    .banner-2-line,
    .banner-2-line-2 {
        display: none;
    }

    .banner-2-text-container {
        padding: 0 20px;
    }

    .banner-2-tagline {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .banner-2-headline-word {
        font-size: 1.3rem;
    }

    .banner-2-headline {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .banner-2-subheadline {
        font-size: 1.1rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .banner-2-divider {
        width: 60px;
        margin: 20px auto;
    }

    .banner-2-cta {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        line-height: 1.5;
    }

    .features-section,
    .pricing-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        padding: 0 20px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .feature-card,
    .pricing-card,
    .stat-card {
        margin-bottom: 20px !important;
    }

    .features-section .row>[class*="col-"],
    .pricing-section .row>[class*="col-"],
    .stats-section .row>[class*="col-"] {
        margin-bottom: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stats-section .section-title {
        margin-bottom: 30px;
    }

    .stats-geometric,
    .stats-overlay {
        display: none;
    }

    .stat-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .pricing-card {
        margin-bottom: 20px;
        padding: 25px 20px;
    }

    .pricing-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        top: -10px;
    }

    .pricing-tier {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .pricing-stock {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .pricing-amount {
        font-size: 2.5rem;
        margin-bottom: 6px;
    }

    .pricing-amount span {
        font-size: 1rem;
    }

    .pricing-per-vehicle {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .pricing-description {
        font-size: 0.9rem;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .pop-up .modal-dialog {
        max-width: 95%;
        margin: 20px auto;
    }

    .pop-up .modal-header {
        padding: 15px 20px;
    }

    .pop-up .modal-title {
        font-size: 1.2rem;
    }

    .pop-up .modal-header .close {
        font-size: 1.8rem;
        margin: -8px -8px -8px auto;
    }

    .pop-up .modal-body {
        padding: 20px;
    }

    .pop-up .modal-footer {
        padding: 12px 20px;
    }

    .pop-up .modal-body input[type="text"],
    .pop-up .modal-body input[type="email"],
    .pop-up .modal-body input[type="tel"],
    .pop-up .modal-body input[type="number"],
    .pop-up .modal-body select,
    .pop-up .modal-body textarea {
        padding: 10px 12px;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .pop-up .modal-body button[type="submit"],
    .pop-up .modal-body input[type="submit"],
    .pop-up .modal-body .btn-primary {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .pop-up .btn-secondary {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 150px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    @media (max-width: 480px) {
        .hero-logo {
            height: 45px;
            left: 15px;
            top: 10px;
        }

        .dealer-name {
            height: 45px;
            right: 15px;
            top: 15px;
            padding-right: 25px;
        }

        .dealer-name h3 {
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        .dealer-name p {
            font-size: 0.7rem;
        }
    }

    .hero-content {
        padding: 0 15px;
    }

    .main-title {
        font-size: 1.6rem;
        letter-spacing: 0px;
        margin-bottom: 12px;
    }

    .sub-title {
        font-size: 1rem;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .event-title {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .event-subtitle {
        font-size: 0.8rem;
        margin-top: 12px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.8rem;
        letter-spacing: 1px;
        max-width: 260px;
    }

    .banner-2 {
        min-height: 45vh;
        padding: 35px 0;
    }

    .banner-2-content {
        padding: 35px 0;
    }

    .banner-2-headline {
        font-size: 1.6rem;
    }

    .banner-2-subheadline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-section,
    .pricing-section,
    .stats-section {
        padding: 35px 0;
    }

    .feature-card,
    .pricing-card,
    .stat-card {
        margin-bottom: 15px !important;
        height: 100%;
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-amount {
        font-size: 2.3rem;
    }

    .final-cta {
        padding: 50px 0;
    }

    .final-cta h2 {
        font-size: 1.7rem;
    }

    .final-cta p {
        font-size: 1rem;
    }
}

/* Bootstrap Grid Fixes */
@media (min-width: 768px) and (max-width: 991px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

</style><style>

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 35px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 120px;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.sale-total-savings {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 163, 224, 0.15);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Countdown */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 15px;
    }

    .countdown-item {
        padding: 20px 25px;
        min-width: 90px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

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

    .sale-total-savings {
        padding: 30px 20px;
    }

    .sale-total-savings h3 {
        font-size: 1.4rem !important;
    }

    .sale-total-savings div[style*="3.5rem"] {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 15px 20px;
        min-width: 35%;
    }

    .countdown-number {
        font-size: 2rem;
    }
}

</style><style>

/* Support Highlight */
.support-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.support-highlight p {
    color: #fff;
}

@media (max-width: 768px) {
    .support-highlight {
        padding: 20px 25px;
    }

    .support-highlight p[style*="1.2rem"] {
        font-size: 1rem !important;
    }

    .support-highlight p[style*="1rem"] {
        font-size: 0.9rem !important;
    }
}
