/*
Theme Name: Dawai Dukan - Pharmacy Theme
Theme URI: https://dawaidukan.in
Description: A modern, conversion-optimized pharmacy landing page theme for Dawai Dukan. Features WhatsApp integration, trust-building elements, and mobile-responsive design.
Version: 1.0.0
Author: Dawai Dukan
Author URI: https://dawaidukan.in
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dawai-dukan
Tags: pharmacy, medical, healthcare, landing-page, one-page, whatsapp, green, responsive

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ===========================
   CSS Variables
   =========================== */
:root {
    --primary-green: #10b981;
    --secondary-green: #059669;
    --light-green: #d1fae5;
    --lightest-green: #f0fdf4;
    --whatsapp-green: #25D366;
    --dark-gray: #111827;
    --medium-gray: #6b7280;
    --light-gray: #9ca3af;
    --white: #ffffff;
    --black: #000000;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ===========================
   Header Styles
   =========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: var(--primary-green);
    margin: 0;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.main-navigation a {
    font-weight: 500;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-green);
}

.header-cta .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-cta .btn-call:hover {
    background: var(--lightest-green);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-gray);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-green);
    color: var(--secondary-green);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: var(--primary-green);
}

.hero-content .subheading {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.offer-badge h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.offer-badge p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp-green);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

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

.hero-subtext {
    font-size: 14px;
    color: var(--light-gray);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.trust-badge-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.trust-badge-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    margin: 0 auto 10px;
}

.trust-badge-item p {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

/* ===========================
   Why Choose Us Section
   =========================== */
.why-choose-section {
    padding: 80px 20px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-header h2 .highlight {
    color: var(--primary-green);
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-green) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   How It Works Section
   =========================== */
.how-it-works-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--light-green) 0%, var(--primary-green) 50%, var(--light-green) 100%);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: rgba(16, 185, 129, 0.1);
    margin-bottom: 20px;
}

.step-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.delivery-time {
    text-align: center;
    margin-top: 50px;
    font-size: 18px;
    color: var(--dark-gray);
}

.delivery-time strong {
    color: var(--primary-green);
}

/* ===========================
   Trust & Safety Section
   =========================== */
.trust-section {
    padding: 80px 20px;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--medium-gray);
}

.certifications-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 60px 40px;
    border-radius: 24px;
    color: white;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.cert-item svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    opacity: 0.9;
}

.cert-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cert-item p {
    font-size: 15px;
    opacity: 0.9;
}

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

.testimonial-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-green) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 3px 0;
}

.author-info p {
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0;
}

/* ===========================
   Offer Section
   =========================== */
.offer-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-section::before,
.offer-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
}

.offer-section::before {
    top: -100px;
    left: -100px;
}

.offer-section::after {
    bottom: -100px;
    right: -100px;
}

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

.offer-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.offer-content h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-content .subheading {
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.offer-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-feature svg {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
}

.offer-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-feature p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.btn-offer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-green);
    padding: 20px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-offer:hover {
    background: var(--lightest-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.offer-terms {
    font-size: 14px;
    opacity: 0.8;
}

/* ===========================
   WhatsApp CTA Section
   =========================== */
.whatsapp-cta-section {
    padding: 80px 20px;
    background: white;
}

.whatsapp-box {
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #20BD5A 100%);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-box::before,
.whatsapp-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(50px);
}

.whatsapp-box::before {
    top: -100px;
    right: -50px;
}

.whatsapp-box::after {
    bottom: -100px;
    left: -50px;
}

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

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.whatsapp-icon svg {
    width: 40px;
    height: 40px;
}

.whatsapp-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.whatsapp-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-whatsapp-white {
    background: white;
    color: var(--whatsapp-green);
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-whatsapp-white:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
}

.btn-call-white {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-call-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.whatsapp-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.9;
}

.whatsapp-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.operating-hours {
    text-align: center;
    margin-top: 30px;
    color: var(--medium-gray);
}

.operating-hours strong {
    color: var(--dark-gray);
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1f2937 100%);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-brand .logo-icon {
    width: 48px;
    height: 48px;
}

.footer-brand h3 {
    font-size: 20px;
    margin: 0;
    color: white;
}

.footer-tagline {
    font-size: 12px;
    color: var(--primary-green);
}

.footer-description {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.6;
    margin-top: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #d1d5db;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--primary-green);
}

.disclaimer-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.disclaimer-box strong {
    color: var(--primary-green);
}

.disclaimer-box p {
    font-size: 12px;
    color: var(--light-gray);
    line-height: 1.6;
    margin: 10px 0 0 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: var(--light-gray);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 14px;
    color: var(--light-gray);
    transition: color 0.3s ease;
}

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

/* ===========================
   Floating WhatsApp Button
   =========================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-whatsapp-btn {
    width: 64px;
    height: 64px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    position: relative;
}

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

.floating-whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: white;
}

.floating-whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--whatsapp-green);
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 998;
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-grid,
    .features-grid,
    .steps-grid,
    .stats-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid,
    .offer-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-grid,
    .features-grid,
    .steps-grid,
    .stats-grid,
    .testimonials-grid,
    .footer-grid,
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-header h2,
    .whatsapp-content h2 {
        font-size: 28px;
    }
    
    .offer-content h2 {
        font-size: 36px;
    }
    
    .btn-whatsapp,
    .btn-offer,
    .btn-whatsapp-white {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-btn {
        width: 56px;
        height: 56px;
    }
    
    .scroll-to-top {
        bottom: 90px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .offer-content h2 {
        font-size: 32px;
    }
}
