* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #D4AF37;
    --accent-color: #25D366;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 18px;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B3410 100%);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    opacity: 0.9;
}

.header-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FF4444 0%, #DC2626 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 68, 68, 0.7), 0 0 0 4px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FF5555 0%, #EF4444 100%);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

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

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-title .hindi {
    display: block;
    font-family: 'Noto Sans Devanagari', sans-serif;
    margin-bottom: 10px;
}

.hero-title .english {
    display: block;
    font-size: 36px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-subtitle .hindi {
    display: block;
    font-family: 'Noto Sans Devanagari', sans-serif;
    margin-bottom: 8px;
}

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

.trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

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

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title .hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    display: block;
    margin-bottom: 10px;
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 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.1);
}

.service-content {
    padding: 12px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.service-title-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.service-description {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 5px;
}

.service-description-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B3410 100%);
    color: var(--white);
    padding: 20px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.stat-label .hindi {
    display: block;
    font-family: 'Noto Sans Devanagari', sans-serif;
    margin-bottom: 5px;
}

.stat-label .english {
    display: block;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 40px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-title-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.feature-description-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.step-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B3410 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-title-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.step-description-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 30px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-text-english {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
}

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

/* FAQ Section */
.faq {
    padding: 30px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    user-select: none;
    gap: 15px;
}

.faq-question > div {
    flex: 1;
}

.faq-question .hindi {
    display: block;
    font-family: 'Noto Sans Devanagari', sans-serif;
    margin-bottom: 5px;
}

.faq-question .english {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.faq-answer .hindi {
    display: block;
    font-family: 'Noto Sans Devanagari', sans-serif;
    margin-bottom: 8px;
}

.faq-answer .english {
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B3410 100%);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-title .hindi {
    display: block;
    font-family: 'Noto Sans Devanagari', sans-serif;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-subtitle .hindi {
    display: block;
    font-family: 'Noto Sans Devanagari', sans-serif;
    margin-bottom: 8px;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF4444 0%, #DC2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.8), 0 0 0 4px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FF5555 0%, #EF4444 100%);
}

.floating-call-btn svg {
    width: 28px;
    height: 28px;
}

/* Floating WhatsApp Button - Hidden, using widget trigger instead */
.floating-whatsapp-btn {
    display: none;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

.floating-whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

/* Availability Badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #20BA5A;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.availability-badge .hindi,
.availability-badge .english {
    display: inline;
    font-weight: 600;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    }
}

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

.urgency-icon {
    font-size: 24px;
}

.urgency-text {
    font-size: 16px;
    font-weight: 600;
}

.urgency-text strong {
    font-size: 20px;
    color: var(--secondary-color);
}

.urgency-text .hindi,
.urgency-text .english {
    display: block;
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 180px;
    right: 30px;
    width: 320px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.whatsapp-widget.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-widget-header {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-widget-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.whatsapp-widget-info {
    flex: 1;
}

.whatsapp-widget-name {
    font-weight: 600;
    font-size: 16px;
}

.whatsapp-widget-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.whatsapp-widget-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.whatsapp-widget-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-widget-message {
    padding: 20px;
    background: var(--bg-light);
}

.whatsapp-widget-message p {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.whatsapp-widget-button {
    display: block;
    padding: 15px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-widget-button:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
}

.whatsapp-widget-trigger {
    position: fixed;
    bottom: 100px;
    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;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-widget-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-widget-trigger svg {
    width: 28px;
    height: 28px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #DC2626;
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--white);
}

/* Success Stories Section */
.success-stories {
    padding: 40px 0;
    background: var(--white);
}

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

.story-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.story-before,
.story-after {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
}

.story-before {
    background: #FEE2E2;
    border-left: 3px solid #DC2626;
}

.story-after {
    background: #D1FAE5;
    border-left: 3px solid #10B981;
}

.story-before h4,
.story-after h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-before h4 {
    color: #DC2626;
}

.story-after h4 {
    color: #10B981;
}

.story-before p,
.story-after p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.story-before .hindi,
.story-before .english {
    display: block;
    color: var(--text-dark);
}

.story-after .hindi,
.story-after .english {
    display: block;
    color: var(--text-dark);
}

.story-arrow {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
}

.story-details {
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.story-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 15px;
}

.story-time {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}


/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-title .english {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 16px;
    }
    
    .btn {
        font-size: 18px;
        padding: 14px 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-cta {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta {
        justify-content: center;
    }
    
    .floating-call-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-btn {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-widget {
        width: 280px;
        bottom: 150px;
        right: 20px;
    }
    
    .whatsapp-widget-trigger {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .urgency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-timer {
        font-size: 16px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-header {
        flex-direction: column;
    }
    
    .story-arrow {
        transform: rotate(90deg);
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-title .english {
        font-size: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq-icon {
        align-self: flex-end;
        margin-left: 0;
    }
}

