/* ================================
   WRAPPED WONDERS - FINAL COMPLETE CSS
   All Fixes Included - Left Aligned Hero
   ================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-pink: #E91E63;
    --dark-pink: #C2185B;
    --light-pink: #FFE4E1;
    --cream: #FAF8F3;
    --white: #FFFFFF;
    --text-dark: #4A4A4A;
    --text-light: #757575;
    --border-color: #E5E5E5;
    --shadow: rgba(0, 0, 0, 0.1);
    --icon-bg: #f5bab4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --section-padding: 80px 0;
    --container-width: 1200px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--cream);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 0;
    line-height: 1;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icon {
    font-size: 18px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: var(--primary-pink);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-pink);
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-pink);
    color: var(--white);
    border-color: var(--primary-pink);
}

.btn-primary:hover {
    background-color: var(--dark-pink);
    border-color: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.btn-outline:hover {
    background-color: var(--primary-pink);
    color: var(--white);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 16px;
}

.btn i {
    margin-right: 8px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO SECTION - FORCED LEFT ALIGNMENT ===== */
.hero {
    padding: 120px 0;
    background-image: url('../images/hero/cover-main.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: var(--cream);
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: var(--cream);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: left !important;
    padding-left: 60px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.hero-content {
    display: block !important;
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.hero-text {
    max-width: 600px;
    text-align: left !important;
    padding-left: 20px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.hero-text .btn {
    display: inline-block !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.hero-image {
    display: none !important;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 60px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(245, 186, 180, 0.4);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background-color: var(--light-pink);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 50%;
    box-shadow: 0 10px 40px var(--shadow);
    width: 100%;
    max-width: 450px;
}

.about-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 25px 0 35px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-content h4 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== SHOP BOUQUETS & PRODUCTS ===== */
.shop-bouquets,
.featured-products {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-pink);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    color: var(--primary-pink);
    font-weight: 700;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 16px;
    margin-right: 8px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content {
    max-width: 600px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    outline: none;
}

.newsletter-form .btn {
    background-color: var(--white);
    color: var(--primary-pink);
}

.newsletter-form .btn:hover {
    background-color: var(--cream);
}

.cta-image {
    max-width: 350px;
}

/* ===== ADDITIONAL FEATURES ===== */
.additional-features {
    padding: 50px 0;
    background-color: var(--white);
}

.features-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-box {
    flex: 1;
    text-align: center;
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-pink);
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background-color: var(--light-pink);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.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-content {
    padding: 30px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== NATURAL BOUQUETS ===== */
.natural-bouquets {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.natural-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

.natural-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 20px 0 25px;
}

.natural-list {
    margin: 25px 0 35px;
}

.natural-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.natural-list i {
    color: var(--primary-pink);
    font-size: 18px;
}

.natural-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 40px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}

.gallery-item {
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    padding: 50px 0;
    background-color: var(--light-pink);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.instagram-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.instagram-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-pink);
}

.instagram-logo {
    width: 80px;
    height: 80px;
    background-color: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

/* ===== SPECIAL COLLECTIONS ===== */
.special-collections {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.collection-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.collection-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-content {
    padding: 35px;
}

.collection-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.collection-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-pink);
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    box-shadow: 0 10px 40px var(--shadow);
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    padding: 70px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
}

.cta-box-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-box .btn {
    background-color: var(--white);
    color: var(--primary-pink);
}

.cta-box .btn:hover {
    background-color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2D2D2D;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.footer-contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--primary-pink);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-pink);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--dark-pink);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (992px and below) */
@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
        min-height: 550px;
        background-position: 70% center;
    }
    
    .hero::before {
        right: 30%;
    }
    
    .hero .container {
        padding-left: 40px !important;
    }
    
    .hero-title {
        font-size: 42px;
        text-align: left !important;
    }
    
    .hero-subtitle {
        text-align: left !important;
    }
    
    .hero-content,
    .about-wrapper,
    .natural-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: 500px;
        background-position: center;
        background-size: cover;
    }
    
    .hero::before {
        right: 0;
        background: rgba(250, 248, 243, 0.92);
    }
    
    .hero .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }
    
    .hero-text {
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: left !important;
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-align: left !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--cream);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid,
    .features-grid,
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero {
        padding: 40px 0;
        min-height: 400px;
    }
    
    .hero .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .hero-title {
        font-size: 26px;
        text-align: left !important;
    }
    
    .hero-subtitle {
        font-size: 14px;
        text-align: left !important;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}