/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    --primary-color: #25D366;
    --primary-dark: #128C7E;
    --secondary-color: #075E54;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Navigation */
.main-nav {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.mobile-menu-toggle span:before,
.mobile-menu-toggle span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-toggle span:before {
    top: -8px;
}

.mobile-menu-toggle span:after {
    bottom: -8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-content a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu-content .btn {
    display: block;
    margin: 20px 0;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.mobile-menu-toggle span:before,
.mobile-menu-toggle span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-toggle span:before {
    top: -8px;
}

.mobile-menu-toggle span:after {
    bottom: -8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-content a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu-content .btn {
    display: block;
    margin: 20px 0;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.mobile-menu-toggle span:before,
.mobile-menu-toggle span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-toggle span:before {
    top: -8px;
}

.mobile-menu-toggle span:after {
    bottom: -8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-content a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* CSS Variables */
:root {
    --primary-color: #25D366;
    --primary-dark: #128C7E;
    --secondary-color: #075E54;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

.mobile-menu-content .btn {
    display: block;
    margin: 20px 0;
    text-align: center;
}

/* Show Get Started button in mobile menu */
.mobile-menu-toggle {
    display: flex;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    font-size: 14px;
}

.dropdown-toggle span {
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-content .btn {
    display: block;
    margin: 10px 0;
    text-align: center;
}

.mobile-menu-toggle span {
    display: block;
}

/* Blog Navigation */
.blog-nav {
    background: var(--bg-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.blog-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-home {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.nav-home:hover {
    text-decoration: underline;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Trust Strip */
.trust-strip {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-items span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.video-background {
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    margin-bottom: 10px;
}

.play-button span {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* YouTube Fallback */
.youtube-fallback {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.youtube-fallback iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
    text-align: center;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.service-card li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Results/Testimonials Section */
.results {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

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

/* How It Works Section */
.how-it-works {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    background: var(--secondary-color);
    color: white;
    padding: 40px 0;
}

.badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .hero-title {
        margin-bottom: 15px;
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle {
        margin-bottom: 30px;
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-items,
    .badges {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 70px 25px 25px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        z-index: 1001;
        border-left: 3px solid #25D366;
    }

    .nav-links.show {
        display: flex;
        right: 0;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    /* Close Button */
    .close-btn {
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: relative;
    }

    .close-btn div {
        position: absolute;
        width: 25px;
        height: 3px;
        background-color: var(--text-dark);
        transition: 0.3s;
    }

    .close-btn div:nth-child(1) {
        transform: rotate(45deg);
    }

    .close-btn div:nth-child(2) {
        transform: rotate(-45deg);
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        padding: 8px;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: var(--text-dark);
        transition: 0.3s;
        border-radius: 2px;
    }

    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Close Button */
    .close-btn {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 15;
    }

    .close-btn div {
        position: absolute;
        width: 25px;
        height: 3px;
        background-color: var(--text-dark);
        transition: 0.3s;
    }

    .close-btn div:nth-child(1) {
        transform: rotate(45deg);
    }

    .close-btn div:nth-child(2) {
        transform: rotate(-45deg);
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        background: var(--bg-white);
        z-index: 11;
    }

    .mobile-menu-content {
        padding-top: 80px;
    }

    /* Mobile Menu Overlay */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 8;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .overlay.show {
        display: block;
        opacity: 1;
    }

    /* Mobile Navigation Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background-color: var(--bg-white);
        padding: 0;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 10;
        display: none;
    }

    .mobile-menu.show {
        right: 0;
        display: block;
    }

    .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nav-links a {
        color: #1a1a1a;
        text-decoration: none;
        font-weight: 500;
        padding: 18px 0;
        border-bottom: 1px solid #e9ecef;
        text-align: center;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        color: #25D366;
        background: #f8f9fa;
    }

    .nav-links .btn {
        margin-top: 20px;
        border-bottom: none;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        padding: 16px 24px;
        border-radius: 8px;
        font-weight: 600;
    }

    .nav-links .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        display: none;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        position: relative;
        transition: var(--transition);
    }

    .mobile-menu-toggle span:before,
    .mobile-menu-toggle span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--text-dark);
        transition: var(--transition);
    }

    .mobile-menu-toggle span:before {
        top: -8px;
    }

    .mobile-menu-toggle span:after {
        bottom: -8px;
    }

    /* Mobile Menu */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        transition: transform 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-content {
        padding: 20px;
        height: 100%;
        overflow-y: auto;
    }

    .mobile-menu-content a {
        display: block;
        padding: 15px 20px;
        color: var(--text-dark);
        text-decoration: none;
        border-bottom: 1px solid var(--border-color);
        transition: var(--transition);
        font-size: 16px;
    }

    .mobile-menu-content a:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }

    .mobile-menu-content .btn {
        display: block;
        margin: 20px 0;
        text-align: center;
        font-size: 16px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            gap: 15px;
            justify-content: flex-end;
        }
    }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.mobile-menu-toggle span:before,
.mobile-menu-toggle span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-toggle span:before {
    top: -8px;
}

.mobile-menu-toggle span:after {
    bottom: -8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-content a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu-content .btn {
    display: block;
    margin: 20px 0;
    text-align: center;
}
    
        
    /* Mobile Video Controls */
    .video-controls {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .video-btn {
        width: 35px;
        height: 35px;
    }
    
    .video-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 30px 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}

/* Performance optimizations */
.service-card,
.testimonial,
.step {
    will-change: transform;
}

img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.whatsapp-float:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Blog Page Styles */
.blog-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.blog-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-post {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.category {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.date {
    color: var(--text-light);
}

.blog-post h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-post h2 a:hover {
    color: var(--primary-color);
}

.blog-post p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-excerpt {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post-excerpt h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.post-excerpt ul {
    list-style: none;
}

.post-excerpt li {
    padding: 5px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.post-excerpt li:before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.blog-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
