/* Global Styles */
:root {
    --primary-color: #0a192f;    /* Dark Blue */
    --secondary-color: #172a45;  /* Slightly lighter blue */
    --accent-color: #f9d71c;     /* Yellow */
    --text-color: #ffffff;       /* White */
    --text-secondary: #ccd6f6;   /* Light gray-blue */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Background Colors */
.bg-blue {
    background-color: var(--primary-color);
}

.bg-dark-blue {
    background-color: var(--secondary-color);
}

.bg-yellow {
    background-color: var(--accent-color);
}

/* Text Colors */
.text-blue {
    color: var(--primary-color);
}

.text-yellow {
    color: var(--accent-color);
}

/* Buttons */
.btn-warning {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e6c30d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Navbar */
.navbar {
    background-color: rgba(10, 25, 47, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(10, 25, 47, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d2347 100%);
    overflow: hidden;
}

.hero h1 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-color) 0%, #f9b71c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 90%;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-img {
    position: relative;
    width: 100%;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

/* Animated Circles */
.circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(249, 215, 28, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s infinite ease-in-out;
}

.circle-2 {
    width: 450px;
    height: 450px;
    background: rgba(23, 42, 69, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s infinite ease-in-out;
    animation-delay: 1s;
}

.circle-3 {
    width: 600px;
    height: 600px;
    background: rgba(10, 25, 47, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s infinite ease-in-out;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

/* Stats */
.stats {
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Speed Indicator */
.speed-indicator {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 3;
}

.speed-dial {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.speed-hand {
    position: absolute;
    width: 3px;
    height: 35px;
    background: var(--accent-color);
    top: 15px;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-45deg);
    animation: speedDial 3s infinite ease-in-out;
}

.speed-mark {
    position: absolute;
    width: 2px;
    height: 10px;
    background: var(--text-secondary);
    left: 50%;
    transform: translateX(-50%);
}

.speed-mark-1 {
    top: 10px;
    transform: translateX(-50%) rotate(45deg);
}
.speed-mark-2 {
    top: 10px;
    transform: translateX(-50%) rotate(-45deg);
}
.speed-mark-3 {
    top: 25px;
}

.speed-value {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 600;
    color: var(--accent-color);
}

@keyframes speedDial {
    0%, 100% { transform: translateX(-50%) rotate(-45deg); }
    50% { transform: translateX(-50%) rotate(45deg); }
}

/* Wave Background */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23172a45" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23172a45" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23172a45"/></svg>');
    background-size: cover;
    z-index: 1;
}

.wave-1 {
    height: 150px;
    opacity: 0.5;
    animation: waveMove 10s linear infinite;
}

.wave-2 {
    height: 120px;
    animation: waveMove 15s linear infinite reverse;
}

@keyframes waveMove {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

/* Typing Animation */
.typing-animation {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--accent-color);
    white-space: nowrap;
    animation: 
        typing 3.5s steps(40, end) infinite,
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    0% { width: 0 }
    50% { width: 100% }
    100% { width: 0 }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-color); }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero {
        padding: 150px 0 100px;
        text-align: center;
    }
    
    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats {
        justify-content: center;
    }
    
    .speed-indicator {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .speed-indicator {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Section Titles */
.section-title {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -10px;
    left: 0;
    background-color: var(--accent-color);
}

.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Feature Cards */
.feature-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--accent-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.feature-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Testimonial Cards */
.testimonial-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.client-info small {
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 80px 0 20px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer hr {
    opacity: 0.1;
    margin: 30px 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    padding: 100px 0 60px;
}

.breadcrumb {
    justify-content: center;
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-secondary);
}

/* Service Cards */
.service-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--text-color);
}

.service-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* Price Cards */
.price-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.price-card.featured {
    border: 2px solid var(--accent-color);
}

.recommended-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    width: 120px;
    text-align: center;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-header h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.price {
    margin: 20px 0;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 5px;
}

.price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-description {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.price-features {
    margin-bottom: 30px;
}

.price-features ul {
    list-style: none;
    padding-left: 0;
}

.price-features li {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.price-footer {
    text-align: center;
}

.price-card.business {
    border-top: 4px solid var(--accent-color);
}

/* FAQ */
.faq .accordion-button {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 500;
    padding: 15px 20px;
}

.faq .accordion-button:not(.collapsed) {
    background-color: rgba(249, 215, 28, 0.1);
    color: var(--accent-color);
}

.faq .accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.faq .accordion-body {
    background-color: var(--secondary-color);
    color: var(--text-secondary);
}

/* Contact */
.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.form-floating label {
    color: var(--text-secondary);
}

.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 15px;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--text-color);
    box-shadow: 0 0 0 0.25rem rgba(249, 215, 28, 0.25);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-label a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero img {
        margin-top: 30px;
    }
    
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price-card {
        margin-bottom: 30px;
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
    }
}