* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e94560;
    --primary-dark: #c62a47;
    --secondary: #0f3460;
    --dark: #1a1a2e;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #6c757d;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

                  /* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

                      /*  BUTTONS  */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

                          /*  NAVIGATION  */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.logo i {
    color: var(--primary);
    margin-right: 8px;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
}

                        /*  HERO SECTION  */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1583212292454-1fe6229603b7?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge i {
    color: var(--primary);
}

.hero-badge span {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat p {
    color: rgba(255,255,255,0.7);
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray);
}

                      /*  HOW IT WORKS  */
.how-it-works {
    padding: 80px 0;
    background: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.step-card h3 {
    margin-bottom: 15px;
}

                   /*  SERVICES PREVIEW  */
.services-preview {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
}

                     /*  CTA SECTION  */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1583212292454-1fe6229603b7?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

                /* FOOTER  */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-logo span {
    color: var(--primary);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact ul li i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

                  /*  RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .features-grid,
    .steps-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact ul li {
        justify-content: center;
    }
}
/*Better hover effects for service cards */

.service-card {
    cursor: pointer;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Make feature cards more interactive */
.feature-card {
    cursor: default;
}

.feature-card:hover .feature-icon i {
    transform: rotateY(180deg);
    transition: transform 0.6s ease;
}

/* Smooth scrolling for whole page */
html {
    scroll-behavior: smooth;
}
/* ==================== TESTIMONIALS SECTION (13 April) ==================== */
.testimonials {
    padding: 80px 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar i {
    font-size: 3rem;
    color: var(--primary);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ==================== NEWSLETTER SECTION (13 April) ==================== */
.newsletter {
    padding: 60px 0;
    background: var(--gradient);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.75rem;
    margin-top: 15px;
    opacity: 0.7;
}

/* ==================== RESPONSIVE FOR TESTIMONIALS ==================== */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}
/* ==================== 13 APRIL ADDITIONS ==================== */

/* Live Chat Widget */
.live-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-button i {
    font-size: 2rem;
    color: white;
}

.chat-button:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f0f2f5;
}

.chat-message {
    margin-bottom: 15px;
}

.message-bot {
    background: white;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
    font-size: 0.9rem;
}

.chat-footer {
    padding: 10px;
    background: white;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
}

.chat-footer button {
    background: #25D366;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.btn-call {
    background: #e94560;
}

.btn-email {
    background: #0f3460;
}

.floating-btn i {
    font-size: 1.5rem;
    color: white;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    color: white;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    background: #e94560;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #c62a47;
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background: #f8f9fa;
}

.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge i {
    font-size: 2rem;
    color: #e94560;
}

.badge span {
    font-weight: 600;
    color: #1a1a2e;
}

/* Testimonial Slider */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 20px;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card i {
    font-size: 3rem;
    color: #e94560;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-card h4 {
    color: #1a1a2e;
    margin-bottom: 5px;
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e94560;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #c62a47;
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e94560;
    width: 30px;
    border-radius: 5px;
}

/* Loading Animation for Images */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Scroll Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #0f3460);
    z-index: 10000;
    transition: width 0.3s ease;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1a1a2e;
    color: white;
    padding: 20px;
    border-radius: 15px;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.cookie-consent.show {
    display: flex;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-accept {
    background: #e94560;
    color: white;
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .chat-window {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 100px;
    }
    
    .floating-buttons {
        bottom: 100px;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .badges-container {
        gap: 20px;
    }
}
/* ==================== 14 APRIL - PERFORMANCE OPTIMIZATIONS ==================== */

/* Reduce animations for users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Lazy loading images */
img {
    content-visibility: auto;
    contain-intrinsic-size: auto 300px;
}

/* Improve CLS (Cumulative Layout Shift) */
.hero, .features, .services-preview {
    contain: layout;
}

/* Critical CSS inline (already loaded) */
/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ==================== STORY SECTION ==================== */
.story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content .section-tag {
    margin-bottom: 15px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-text {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary);
}

.stat-item h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray);
    font-size: 0.875rem;
}

.story-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder i {
    font-size: 8rem;
    color: rgba(255,255,255,0.2);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.experience-badge span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

/* ==================== MISSION & VISION ==================== */
.mission-vision {
    padding: 60px 0;
    background: var(--light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ==================== VALUES SECTION ==================== */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    padding: 80px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-image i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==================== ACHIEVEMENTS ==================== */
.achievements {
    padding: 60px 0;
    background: var(--gradient);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.achievement-card i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.achievement-card h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.achievement-card p {
    color: rgba(255,255,255,0.8);
}

/* ==================== RESPONSIVE FOR ABOUT PAGE ==================== */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
/* ==================== PAGE HEADER ==================== */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
    margin-top: 70px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1583212292454-1fe6229603b7?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
}

/* ==================== MAIN SERVICES ==================== */
.main-services {
    padding: 80px 0;
    background: var(--white);
}

.services-full-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.service-full-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
}

.service-full-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-full-card.reverse {
    flex-direction: row-reverse;
}

.service-icon-large {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.service-features li i {
    color: var(--primary);
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose-us {
    padding: 80px 0;
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* ==================== PROCESS TIMELINE ==================== */
.service-process {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 3px solid var(--primary);
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
}

.timeline-content h3 {
    margin-bottom: 10px;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 0;
    background: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(233, 69, 96, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--gray);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .service-full-card,
    .service-full-card.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .service-features li {
        justify-content: center;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2rem;
    }
    
    .timeline-icon {
        width: 70px;
        height: 70px;
    }
    
    .timeline-icon i {
        font-size: 1.5rem;
    }
}
/* ==================== SERVICES PAGE STYLES ==================== */

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* All Services Section */
.all-services {
    padding: 80px 0;
    background: #f5f5f5;
}

.services-grid-full {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detailed {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-icon-large {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-info p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.service-features span {
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-features span i {
    color: #e94560;
    font-size: 0.75rem;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233,69,96,0.3);
}

/* Service Benefits Section */
.service-benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    color: white;
}

.benefit-card:hover .benefit-icon i,
.benefit-card:hover h4,
.benefit-card:hover p {
    color: white;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #e94560;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #6c757d;
}

/* Coverage Section */
.coverage-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.coverage-wrapper {
    text-align: center;
}

.coverage-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.coverage-item {
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    color: white;
}

.coverage-item i {
    font-size: 1.2rem;
}

/* CTA Small Section */
.cta-small {
    padding: 60px 0;
    background: white;
}

.cta-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-wrapper p {
    margin-bottom: 25px;
    opacity: 0.8;
}

.cta-wrapper .btn-outline {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.cta-wrapper .btn-outline:hover {
    background: white;
    color: #e94560;
}

/* Responsive */
@media (max-width: 992px) {
    .service-detailed {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-large {
        margin: 0 auto;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .coverage-grid {
        gap: 15px;
    }
    
    .coverage-item {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .service-info h3 {
        font-size: 1.4rem;
    }
    
    .service-features span {
        font-size: 0.75rem;
    }
    
    .cta-wrapper {
        padding: 30px 20px;
    }
    
    .cta-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* ==================== PRICING PAGE STYLES ==================== */

.pricing-main {
    padding: 80px 0;
    background: #f5f5f5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured .pricing-features li {
    color: #e0e0e0;
}

.pricing-card.featured .pricing-features li i {
    color: #e94560;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e94560;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pricing-icon i {
    font-size: 2rem;
    color: #e94560;
}

.pricing-card.featured .pricing-icon {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .pricing-icon i {
    color: white;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.pricing-price .period {
    font-size: 0.9rem;
    opacity: 0.7;
}

.pricing-rate {
    font-size: 1.1rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.pricing-card.featured .pricing-rate {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
}

.pricing-features li i {
    color: #e94560;
    width: 20px;
}

.btn-pricing {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: 2px solid #e94560;
    background: transparent;
    color: #e94560;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing.primary,
.pricing-card.featured .btn-pricing {
    background: white;
    color: #e94560;
    border: none;
}

.btn-pricing:hover {
    background: #e94560;
    color: white;
}

.pricing-card.featured .btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #1a1a2e;
    color: white;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table td i.fa-check {
    color: #28a745;
    font-size: 1.2rem;
}

.comparison-table td i.fa-times {
    color: #dc3545;
    font-size: 1.2rem;
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.calculator-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-content h2 {
    text-align: center;
    margin-bottom: 10px;
}

.calculator-content > p {
    text-align: center;
    margin-bottom: 40px;
    color: #6c757d;
}

.calculator-inputs {
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    margin-bottom: 10px;
}

.input-group span {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 15px;
}

.result-card.highlight {
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    color: white;
}

.result-card h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.result-amount {
    font-size: 1.8rem;
    font-weight: 700;
}

.calculator-note {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-note i {
    color: #28a745;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #eee;
}

.faq-question i:first-child {
    color: #e94560;
    font-size: 1.2rem;
}

.faq-question h3 {
    flex: 1;
    font-size: 1rem;
    margin: 0;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 55px;
    color: #6c757d;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.guarantee-wrapper {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.guarantee-wrapper i {
    font-size: 3rem;
    color: #e94560;
    margin-bottom: 20px;
}

.guarantee-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.guarantee-wrapper p {
    color: #6c757d;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-wrapper {
        padding: 25px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .result-amount {
        font-size: 1.4rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .guarantee-wrapper {
        padding: 30px 20px;
    }
}
/* ==================== CONTACT PAGE STYLES ==================== */

/* Contact Info Cards */
.contact-info-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-detail {
    color: #1a1a2e;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-note {
    color: #6c757d;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #6c757d;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-form .form-group label i {
    color: #e94560;
    margin-right: 8px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.85rem;
}

.form-checkbox a {
    color: #e94560;
    text-decoration: none;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #6c757d;
}

.form-note i {
    color: #28a745;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.business-hours,
.quick-response,
.emergency-contact {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 20px;
}

.business-hours h3,
.quick-response h3,
.emergency-contact h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-list {
    margin-bottom: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item strong {
    color: #e94560;
}

.hours-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 15px;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.response-item:last-child {
    border-bottom: none;
}

.response-item i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e94560;
    font-size: 1.2rem;
}

.response-item strong {
    display: block;
    font-size: 0.9rem;
}

.response-item span {
    font-size: 0.8rem;
    color: #6c757d;
}

.emergency-contact {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.emergency-contact i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.emergency-contact h3 {
    justify-content: center;
}

.emergency-number {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e94560;
    text-decoration: none;
    margin: 15px 0;
}

.emergency-note {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.map-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-wrapper h3 {
    padding: 20px 25px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-container iframe {
    display: block;
}

.map-address {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
}

.map-address i {
    font-size: 1.5rem;
    color: #e94560;
}

/* Contact FAQ */
.contact-faq {
    padding: 60px 0;
    background: white;
}

.faq-contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-contact-wrapper h3 {
    margin-bottom: 30px;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.contact-faq-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 15px;
}

.contact-faq-item i {
    font-size: 1.2rem;
    color: #e94560;
    margin-top: 3px;
}

.contact-faq-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-faq-item p {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .contact-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-number {
        font-size: 1.2rem;
    }
    
    .map-wrapper h3 {
        font-size: 1.2rem;
    }
}
/* ==================== REGISTRATION PAGE STYLES ==================== */

.registration-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.registration-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #6c757d;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a2e;
}

.form-section h3 i {
    color: #e94560;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.registration-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.registration-form .form-group input,
.registration-form .form-group select,
.registration-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.registration-form .form-group input:focus,
.registration-form .form-group select:focus,
.registration-form .form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.registration-form .form-group input[type="file"] {
    padding: 10px;
    background: #f5f5f5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: #4a5568;
}

.form-checkbox a {
    color: #e94560;
    text-decoration: none;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #6c757d;
}

.form-note i {
    color: #28a745;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.form-success h3 {
    margin-bottom: 15px;
}

.form-success p {
    color: #6c757d;
    margin-bottom: 25px;
}

.success-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Registration Benefits Sidebar */
.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefits-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.benefits-card h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.benefits-card ul {
    list-style: none;
}

.benefits-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-card ul li i {
    color: #28a745;
    width: 20px;
}

.earnings-stats {
    margin-top: 10px;
}

.earning {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.earning:last-child {
    border-bottom: none;
}

.earning strong {
    color: #e94560;
    font-size: 1rem;
}

.earning span {
    color: #4a5568;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-num {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.step strong {
    display: block;
    margin-bottom: 5px;
}

.step p {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Testimonial Card */
.benefits-card.testimonial-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.benefits-card.testimonial-card i {
    font-size: 2rem;
    color: #e94560;
    opacity: 0.5;
    margin-bottom: 15px;
}

.benefits-card.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .registration-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .registration-form-wrapper {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-section h3 {
        font-size: 1rem;
    }
    
    .success-buttons {
        flex-direction: column;
    }
    
    .earning {
        flex-direction: column;
        gap: 5px;
    }
}
/* ==================== AI INTEGRATION STYLES ==================== */

/* AI Chatbot */
.ai-chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-button:hover {
    transform: scale(1.1);
}

.chatbot-button i {
    font-size: 1.8rem;
    color: white;
}

.pulse-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #4caf50;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-header-info i {
    font-size: 1.5rem;
}

.chatbot-header-info h4 {
    margin: 0;
    font-size: 1rem;
}

.chatbot-header-info p {
    margin: 0;
    font-size: 0.7rem;
    opacity: 0.8;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f5f5f5;
}

.ai-message {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.ai-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-avatar i {
    color: white;
    font-size: 0.9rem;
}

.message-content {
    background: white;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
}

.message-content p {
    margin: 0;
    font-size: 0.85rem;
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-content {
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    color: white;
}

.quick-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.quick-actions button {
    background: #f0f0f0;
    border: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-actions button:hover {
    background: #e94560;
    color: white;
}

.chatbot-input {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

/* AI Cards */
.ai-rate-predictor,
.ai-route-optimizer {
    padding: 60px 0;
    background: #f5f5f5;
}

.ai-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ai-card-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-card-header i {
    font-size: 2rem;
}

.ai-card-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.ai-card-header p {
    margin: 5px 0 0;
    opacity: 0.8;
    font-size: 0.85rem;
}

.ai-card-body {
    padding: 30px;
}

.predictor-form,
.optimizer-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.btn-ai-predict,
.btn-ai-optimize {
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ai-predict:hover,
.btn-ai-optimize:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.prediction-result,
.optimization-result {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.result-rate {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
}

.result-total {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
}

.result-confidence {
    padding: 15px;
    background: #e8f5e9;
    border-radius: 10px;
}

.result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.result-stats .stat {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.result-stats .stat i {
    font-size: 1.5rem;
    color: #e94560;
    margin-bottom: 8px;
}

.result-stats .stat span {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
}

.result-stats .stat strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .chatbot-window {
        width: 300px;
        height: 450px;
        right: -50px;
    }
    
    .predictor-form,
    .optimizer-form {
        grid-template-columns: 1fr;
    }
}
/* ==================== VIDEO BACKGROUND & ANIMATIONS ==================== */

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* Animated Truck */
.animated-truck {
    position: absolute;
    bottom: 30px;
    left: -100px;
    font-size: 4rem;
    color: rgba(233, 69, 96, 0.4);
    animation: driveTruck 25s linear infinite;
    z-index: 2;
}

@keyframes driveTruck {
    0% {
        left: -100px;
        transform: scaleX(1);
    }
    49% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(-1);
    }
    100% {
        left: calc(100% + 100px);
        transform: scaleX(-1);
    }
}

/* Floating Loads */
.floating-load {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    animation: floatUp 10s ease-in infinite;
    z-index: 1;
    color: white;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Floating loads positions and delays */
.float-1 { left: 5%; animation-delay: 0s; animation-duration: 12s; }
.float-2 { left: 15%; animation-delay: 2s; animation-duration: 10s; }
.float-3 { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.float-4 { left: 50%; animation-delay: 1s; animation-duration: 11s; }
.float-5 { left: 70%; animation-delay: 5s; animation-duration: 13s; }
.float-6 { left: 85%; animation-delay: 3s; animation-duration: 9s; }

/* Hero Badge Animation */
.hero-badge {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    animation: fadeInUp 0.8s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for CTA buttons */
.btn-primary {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(233, 69, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 69, 96, 0);
    }
}

/* Stat hover effect */
.stat {
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    transition: all 0.3s ease;
}

.stat:hover h3 {
    color: #e94560;
}

/* Responsive */
@media (max-width: 768px) {
    .animated-truck {
        font-size: 2.5rem;
        animation-duration: 15s;
    }
    
    .floating-load {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
}
.theme-toggle-header {
    margin-left: 15px;
}

.theme-toggle-btn-header {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.theme-toggle-btn-header:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .theme-toggle-header {
        margin: 15px 0 0 0;
    }
}
/* ==================== DARK/LIGHT MODE VARIABLES ==================== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --card-bg: #ffffff;
    --navbar-bg: #ffffff;
    --footer-bg: #1a1a2e;
}

body.dark-mode {
    --bg-primary: #1a1a2e;
    --bg-secondary: #0f0f1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --card-bg: #16213e;
    --navbar-bg: #0f0f1a;
    --footer-bg: #0a0a0f;
}

/* Apply dark mode styles */
body.dark-mode {
    background: var(--bg-primary);
    color: var(--text-primary);
}

body.dark-mode .navbar {
    background: var(--navbar-bg);
}

body.dark-mode .features,
body.dark-mode .services-preview,
body.dark-mode .ai-rate-predictor,
body.dark-mode .ai-route-optimizer {
    background: var(--bg-secondary);
}

body.dark-mode .feature-card,
body.dark-mode .service-card,
body.dark-mode .step-card,
body.dark-mode .testimonial-card,
body.dark-mode .ai-card {
    background: var(--card-bg);
    color: var(--text-primary);
}

body.dark-mode .footer {
    background: var(--footer-bg);
}

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
    background: #2a2a4a;
    color: white;
    border-color: #3a3a5a;
}

body.dark-mode .chatbot-window {
    background: var(--card-bg);
}

body.dark-mode .chatbot-messages {
    background: var(--bg-secondary);
}

body.dark-mode .message-content {
    background: var(--card-bg);
    color: var(--text-primary);
}

body.dark-mode .prediction-result,
body.dark-mode .optimization-result {
    background: var(--bg-secondary);
}

body.dark-mode .result-rate,
body.dark-mode .result-total,
body.dark-mode .result-stats .stat {
    background: var(--card-bg);
    color: var(--text-primary);
}