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

:root {
    --primary-dark-blue: #1a1f2e;
    --secondary-dark-blue: #252b3b;
    --dark-blue: #2c3344;
    --medium-blue: #3a4356;
    --light-blue: #6ba3c5;
    --accent-light-blue: #8bb8d7;
    --primary-orange: #d85a2a;
    --accent-orange: #e6743f;
    --primary-white: #ffffff;
    --off-white: #f8f9fa;
    --text-light: #a8b2c3;
    --glass-blue: rgba(107, 163, 197, 0.1);
    --glass-dark: rgba(26, 31, 46, 0.7);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--primary-white);
    background: var(--primary-dark-blue);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ========== PROMO BAR ========== */
.promo-bar {
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-orange) 50%, var(--primary-orange) 100%);
    color: var(--primary-white);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    overflow: hidden;
}

.promo-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: promo-shine 3s infinite;
}

@keyframes promo-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-item i {
    font-size: 1.1rem;
    animation: pulse-icon 2s infinite;
}

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

.promo-divider {
    width: 2px;
    height: 20px;
    background: var(--primary-white);
    opacity: 0.3;
}

.promo-cta {
    background: var(--primary-white);
    color: var(--primary-orange);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* ========== HEADER ========== */
header {
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    top: 45px;
    z-index: 1000;
    border-bottom: 1px solid rgba(107, 163, 197, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-white);
    text-decoration: none;
    position: relative;
    text-shadow: 0 0 30px rgba(107, 163, 197, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    /* left: 0; */
    width: 0;
    height: 2px;
    /* background: var(--light-blue); */
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-orange) 100%);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(216, 90, 42, 0.3);
}

/* Mobile Menu Styles */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: var(--primary-orange);
    border-radius: 5px;
}

.navbar-toggler-icon {
    background-image: none;
    width: 20px;
    height: 20px;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    background: white;
    height: 2px;
    width: 20px;
    position: absolute;
    transition: all 0.3s;
}

.navbar-toggler-icon::before {
    content: '';
    top: -6px;
}

.navbar-toggler-icon::after {
    content: '';
    top: 6px;
}

/* Dropdown Styles */
.dropdown-menu {
    background: var(--dark-blue);
    border: 1px solid rgba(107, 163, 197, 0.2);
    border-radius: 10px;
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--glass-blue);
    color: var(--light-blue);
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-orange) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(216, 90, 42, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(216, 90, 42, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(107, 163, 197, 0.3);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(107, 163, 197, 0.1);
    border-color: var(--light-blue);
    transform: translateY(-3px);
    color: var(--primary-white);
}



/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(180deg, var(--primary-dark-blue) 0%, var(--secondary-dark-blue) 100%);
    padding: 240px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(107, 163, 197, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(216, 90, 42, 0.1) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.hero-feature i {
    color: var(--light-blue);
    font-size: 1.25rem;
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(216, 90, 42, 0.4);
    z-index: 2;
    animation: pulse-badge 2s infinite;
}

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

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--dark-blue);
    padding: 40px 0;
    border-top: 1px solid rgba(107, 163, 197, 0.1);
    border-bottom: 1px solid rgba(107, 163, 197, 0.1);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

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

.trust-item i {
    font-size: 2rem;
    color: var(--light-blue);
    margin-bottom: 0.5rem;
    animation: pulse-trust 2s infinite;
}

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

.trust-item strong {
    color: var(--primary-white);
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.trust-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .trust-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .trust-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item i {
        font-size: 1.5rem;
    }
}

/* ========== CTA SECTIONS ========== */
.cta-section {
    background: var(--primary-orange);
    padding: 60px 0;
    color: var(--primary-white);
}

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== CARDS ========== */
.card {
    background: rgba(44, 51, 68, 0.8);
    border: 1px solid rgba(107, 163, 197, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--light-blue);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.card h3, .card h4 {
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background: rgba(44, 51, 68, 0.8);
    border: 1px solid rgba(107, 163, 197, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: var(--primary-white);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 2px rgba(107, 163, 197, 0.2);
    background: rgba(44, 51, 68, 0.9);
}

.form-control::placeholder {
    color: var(--text-light);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark-blue);
    border-top: 1px solid rgba(107, 163, 197, 0.2);
    padding: 60px 0 20px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-blue);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact .contact-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.footer-contact .contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact .contact-item a:hover {
    color: var(--light-blue);
}

.business-hours {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-cta {
    margin-top: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(107, 163, 197, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--text-light);
    margin: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .promo-content {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .promo-item {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Navigation Fixes */
    .navbar-collapse {
        background: var(--primary-dark-blue);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        border: 1px solid rgba(107, 163, 197, 0.2);
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        background: var(--light-blue);
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(107, 163, 197, 0.3);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(107, 163, 197, 0.5);
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .nav-links .nav-item {
        width: 100%;
    }
    
    .nav-links .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
    }
    
    .nav-links .nav-link:hover {
        background: var(--secondary-dark-blue);
        color: var(--light-blue);
    }
    
    .nav-cta {
        margin-top: 1rem;
        text-align: center;
        padding: 0.75rem 1rem !important;
        width: 100%;
        display: block;
        border-radius: 8px;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: var(--secondary-dark-blue);
        border: none;
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
        margin-top: 0.5rem;
        border-radius: 6px;
    }
    
    .dropdown-item {
        color: var(--text-light);
        padding: 0.5rem 1rem;
    }
    
    .dropdown-item:hover {
        background: var(--dark-blue);
        color: var(--light-blue);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 240px 0 60px;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .promo-content {
        gap: 0.5rem;
    }
    
    .promo-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Blog Styles */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-content h2 {
    color: var(--primary-orange);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.blog-content h3 {
    color: var(--light-blue);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.blog-content ul, .blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
