/* ==================== RESET & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003d99;
    --secondary-color: #ffc107;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #ddd;
    --success: #4caf50;
    --warning: #ff9800;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content > p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-label {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ==================== GENERAL SECTION STYLES ==================== */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    padding: 2rem 2rem 0 2rem;
}

.services-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.service-card h3,
.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding: 0 2rem;
}

.service-card h4 {
    font-size: 1.1rem;
    padding-top: 0.5rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.service-card .description,
.service-card .features {
    padding: 0 2rem;
}
.service-card .description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card .features {
    list-style: none;
    padding-bottom: 2rem;
}

.features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-line-center {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, #ffc107 50%, transparent 100%);
    transform: translateX(-50%);
    z-index: 0;
}

@media (max-width: 768px) {
    .timeline-line-center {
        left: 30px;
    }
}

.steps-timeline {
    position: relative;
    z-index: 1;
}

.step {
    margin-bottom: 3rem;
    position: relative;
}

.step-left {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 3rem;
}

.step-right {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 3rem;
}

.step-left .step-wrapper {
    margin-left: auto;
}

.step-right .step-wrapper {
    margin-right: auto;
}

@media (max-width: 768px) {
    .step-left,
    .step-right {
        margin-left: 0;
        margin-right: 0;
        padding-left: 80px;
        padding-right: 0;
    }

    .step-left .step-wrapper,
    .step-right .step-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}

.step-wrapper {
    background: white;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    width: 100%;
    max-width: 350px;
}

.step-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 61, 153, 0.15);
    border-color: var(--secondary-color);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: -35px auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 61, 153, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-number svg {
    width: 40px;
    height: 40px;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.step-time {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    margin-top: auto;
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    background: white;
    padding: 4rem 0;
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1.2rem;
    background: #000;
}

.video-info h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.video-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.video-features {
    list-style: none;
    margin-bottom: 2rem;
}

.video-features li {
    color: #555;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.video-features li:last-child {
    border-bottom: none;
}

.video-info .btn-primary {
    display: inline-block;
}

@media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-info h3 {
        font-size: 1.3rem;
    }
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    background: var(--light-gray);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-card .time {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.pricing-price span {
    font-size: 0.8rem;
    color: #999;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.verified {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.big-number {
    font-size: 2.5rem;
    font-weight: bold;
}

/* ==================== SERVICE AREAS ==================== */
.service-areas {
    background: var(--light-gray);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.area-link, .area-more {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    font-weight: 600;
}

.area-link:hover {
    background: var(--primary-color);
    color: white;
}

.area-more {
    grid-column: 1 / -1;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-color);
}

/* ==================== MAP & LOCATIONS SECTION ==================== */
.map-locations {
    background: #f9f9f9;
    padding: 4rem 0;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.available-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e8f5e9;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-top: 1rem;
    font-weight: 600;
    color: #2e7d32;
}

.badge-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.map-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.locations-panel {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.locations-panel h3 {
    margin: 0 0 1.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    max-height: 450px;
    padding-right: 0.5rem;
}

.locations-list::-webkit-scrollbar {
    width: 6px;
}

.locations-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.locations-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.locations-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.location-item {
    padding: 1rem;
    border-left: 4px solid #ddd;
    background: #fafafa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: #f0f0f0;
    border-left-color: #25d366;
}

.location-item.active {
    background: #e8f5e9;
    border-left-color: #25d366;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.location-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.location-status {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.location-item p {
    margin: 0.5rem 0 0.75rem;
    color: #666;
    font-size: 0.9rem;
}

.btn-small {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-small:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 61, 153, 0.2);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s;
}

.faq-question:hover {
    color: #0052cc;
}

.faq-icon {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1rem 0;
    color: #666;
    animation: slideDown 0.3s ease-out;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== CTA SECTION ==================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta > p:nth-of-type(1) {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-column p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 99;
    animation: slideInUp 0.5s ease-out;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .testimonials-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
    }

    .map-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
    }

    .locations-panel {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Mobile adjustments for floating button */
@media (max-width: 480px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}
/* ==================== WHATSAPP CHAT WIDGET ==================== */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Chat Button */
.whatsapp-chat-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #1fa85f 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat-button:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    display: block;
}

/* Badge for notifications */
.whatsapp-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #dc3545;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-badge.active {
    opacity: 1;
}

/* Chat Box */
.whatsapp-chat-box {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-chat-box.active {
    display: flex;
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Chat Header */
.whatsapp-header {
    background: linear-gradient(135deg, #25d366 0%, #1fa85f 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header-content h3 {
    margin: 0;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.whatsapp-header-content .status {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.9;
}

.whatsapp-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.whatsapp-close-btn:hover {
    transform: rotate(90deg);
}

/* Messages Container */
.whatsapp-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: #efeae2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-messages::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-messages::-webkit-scrollbar-track {
    background: #e8ddd2;
    border-radius: 10px;
}

.whatsapp-messages::-webkit-scrollbar-thumb {
    background: #25d366;
    border-radius: 10px;
}

.whatsapp-messages::-webkit-scrollbar-thumb:hover {
    background: #1fa85f;
}

/* Message Styles */
.whatsapp-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    word-wrap: break-word;
    animation: slideInMessage 0.3s ease;
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-message p {
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Bot Messages */
.whatsapp-message.bot-message {
    align-self: flex-start;
}

.whatsapp-message.bot-message p {
    background: white;
    color: #333;
    border-radius: 8px 8px 8px 2px;
}

/* User Messages */
.whatsapp-message.user-message {
    align-self: flex-end;
}

.whatsapp-message.user-message p {
    background: #dcf8c6;
    color: #000;
    border-radius: 8px 8px 2px 8px;
}

/* Timestamp */
.whatsapp-message .timestamp {
    font-size: 0.7rem;
    color: #999;
    margin-top: 4px;
    padding: 0 12px;
}

.user-message .timestamp {
    align-self: flex-end;
}

.bot-message .timestamp {
    align-self: flex-start;
}

/* Input Area */
.whatsapp-input-area {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.whatsapp-input:focus {
    border-color: #25d366;
}

.whatsapp-input::placeholder {
    color: #aaa;
}

.whatsapp-send-btn {
    background: linear-gradient(135deg, #25d366 0%, #1fa85f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.whatsapp-send-btn:hover {
    transform: scale(1.05);
}

.whatsapp-send-btn:active {
    transform: scale(0.95);
}

/* Disclaimer */
.whatsapp-disclaimer {
    padding: 8px 12px;
    background: #f5f5f5;
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-disclaimer a {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-disclaimer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 480px) {
    .whatsapp-chat-box {
        width: calc(100vw - 20px);
        height: 70vh;
        max-height: 600px;
        bottom: 80px;
        right: 10px;
    }

    .whatsapp-message {
        max-width: 90%;
    }
}

@media (max-width: 380px) {
    .whatsapp-chat-button {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* Additional responsive rules: hero layout and media adjustments */
@media (max-width: 1024px) {
    .hero-content {
        gap: 1rem;
    }
    .hero-media {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    .hero-text {
        flex: 1 1 100%;
        min-width: auto;
    }
    .hero-media {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    .hero-media img {
        max-width: 95%;
        height: auto;
        display: inline-block;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 10px;
    }
    .hero-media img {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
}

/* Hero badges styling */
.hero-badges {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.hero-badges .badge {
.hero-badges {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-badges .badge {
    background: #0f1724;
    color: #ffffff;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(2,6,23,0.30);
    border: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}
.hero-badges .badge:hover{
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.24);
}
.hero-badges .badge-active {
.hero-badges .badge-active {
    background: linear-gradient(90deg,#16a34a,#059669);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(5,150,105,0.22);
}

@media (max-width: 768px) {
    .hero-badges {
        justify-content: center;
        margin-top: 0.9rem;
    }
}

@media (max-width: 900px) {
    .hero-badges { justify-content: center; }
}