/* Mohaa Finest Curtains - Mobile-First CSS */
/* Brand Colors */
:root {
    --primary-teal: #0F6F6D;
    --accent-gold: #FF8C00;
    --dark-contrast: #0B2F3A;
    --white: #FFFFFF;
    --light-grey: #F4F6F7;
    --text-dark: #333333;
    --text-grey: #666666;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 56px; /* Large touch targets for mobile */
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background-color: #d1941f;
    border-color: #d1941f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-teal);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-teal);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    gap: 15px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-teal);
}



/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 47, 58, 0.7), rgba(11, 47, 58, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Trust Signals */
.trust-signals {
    padding: 40px 0;
    background-color: var(--light-grey);
}

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

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Problem/Solution Section */
.problem-solution {
    padding: 60px 0;
    background-color: var(--white);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem,
.solution {
    flex: 1;
}

.problem h2 {
    color: #dc3545;
    margin-bottom: 15px;
    font-size: 24px;
}

.solution h2 {
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-size: 24px;
}

.pain-points,
.solution-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pain-points li,
.solution-points li {
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
}

.pain-points li::before {
    content: "❌";
    position: absolute;
    left: 0;
    color: #dc3545;
}

.solution-points li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
}

/* Services Snapshot */
.services-snapshot {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.services-snapshot h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-contrast);
    font-size: 32px;
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-teal);
    margin-bottom: 12px;
    font-size: 22px;
}

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

/* Why Mohaa Comparison */
.why-mohaa {
    padding: 60px 0;
    background-color: var(--white);
}

.why-mohaa h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-contrast);
    font-size: 32px;
}

.comparison-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-teal);
    color: var(--white);
    font-weight: 600;
    padding: 20px;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-row .other-sellers {
    background-color: #ffebee;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-row .mohaa-sellers {
    background-color: #e8f5e8;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

/* Gallery Preview */
.gallery-preview {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.gallery-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-contrast);
    font-size: 32px;
}

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

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background-color: var(--white);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-contrast);
    font-size: 32px;
}

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

.step:nth-child(1),
.step:nth-child(2) {
    grid-column: span 1;
}

.step:nth-child(3),
.step:nth-child(4) {
    grid-column: span 1;
}

.step {
    text-align: center;
    padding: 30px;
    background: var(--light-grey);
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--primary-teal);
    margin-bottom: 12px;
    font-size: 20px;
}

.areas-served {
    text-align: center;
    padding: 30px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 12px;
}

.areas-served h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* Services Detailed Page */
.services-detailed {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-detailed .container {
    max-width: 1200px;
}

.service-detail {
    margin-bottom: 80px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-detail.alt {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 100%);
    color: var(--text-dark);
}

.service-detail.alt .service-text h2,
.service-detail.alt .service-text h3 {
    color: var(--text-dark);
}

.service-detail.alt .service-text ul li {
    color: rgba(33, 37, 41, 0.9);
}

.service-detail.alt .service-text ul li strong {
    color: var(--accent-gold);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px;
    align-items: center;
}

.service-text {
    order: 1;
}

.service-detail.alt .service-text {
    order: 2;
}

.service-detail.alt .service-image {
    order: 1;
}

.service-text h2 {
    font-size: 36px;
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.service-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-grey);
    margin-bottom: 30px;
}

.service-text h3 {
    font-size: 24px;
    color: var(--dark-contrast);
    margin: 40px 0 20px 0;
    font-weight: 600;
    position: relative;
}

.service-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

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

.service-text ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-grey);
    line-height: 1.5;
}

.service-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 18px;
}

.service-text ul li strong {
    color: var(--dark-contrast);
    font-weight: 600;
}

.service-image {
    text-align: center;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

.service-cta {
    padding: 40px 60px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 100%);
    text-align: center;
}

.service-detail.alt .service-cta {
    background: var(--accent-gold);
}

.service-cta .btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 100%);
    text-align: center;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.final-cta::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.final-cta .container {
    max-width: 1000px;
}

.cta-content {
    margin-bottom: 50px;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta h2 {
    color: var(--text-dark);
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(33, 37, 41, 0.9);
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 18px;
}

.cta-feature span:last-child {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-dark);
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-grey);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: var(--light-grey);
}

/* WhatsApp Popup */
.whatsapp-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    animation: fadeIn 0.3s ease-in-out;
}

.whatsapp-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.whatsapp-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.popup-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.popup-close {
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #333;
}

.whatsapp-popup-body {
    padding: 20px;
    text-align: center;
}

.whatsapp-message {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.whatsapp-popup-body h3 {
    color: var(--primary-teal);
    margin-bottom: 10px;
    font-size: 20px;
}

.whatsapp-popup-body p {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 16px;
}

.whatsapp-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-popup-btn:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-weight: 600;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.whatsapp-sticky:hover {
    background-color: #22c55e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn {
        width: auto;
        flex: 1;
        min-width: 0;
        max-width: 200px;
        font-size: 14px;
        padding: 12px 16px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-item {
        font-size: 14px;
        padding: 8px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .step {
        padding: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 13px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section li {
        font-size: 13px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-row .other-sellers,
    .comparison-row .mohaa-sellers {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-overlay {
        padding: 15px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .services-snapshot h2,
    .why-mohaa h2,
    .gallery-preview h2,
    .how-it-works h2,
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 28px;
        color: var(--text-dark);
    }

    .final-cta p {
        font-size: 18px;
        color: rgba(33, 37, 41, 0.9);
    }

    .cta-features {
        gap: 20px;
        margin-bottom: 40px;
    }

    .cta-feature {
        padding: 12px 20px;
        font-size: 14px;
    }

    .feature-icon {
        font-size: 16px;
    }

    /* Services Page Mobile Styles */
    .services-detailed {
        padding: 40px 0;
    }

    .service-detail {
        margin-bottom: 40px;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .service-detail.alt .service-text,
    .service-detail.alt .service-image {
        order: unset;
    }

    .service-text h2 {
        font-size: 28px;
    }

    .service-text h3 {
        font-size: 20px;
        margin: 30px 0 15px 0;
    }

    .service-text p {
        font-size: 16px;
    }

    .service-text ul li {
        padding: 8px 0;
        padding-left: 25px;
        font-size: 14px;
    }

    .service-text ul li::before {
        font-size: 16px;
        top: 8px;
    }

    .service-image img {
        height: 250px;
        max-width: 100%;
    }

    .service-cta {
        padding: 30px;
    }

    .service-cta .btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .problem-solution {
        flex-direction: row;
        gap: 8px;
        padding: 40px 0;
        flex-wrap: nowrap;
    }

    .problem,
    .solution {
        flex: 1;
        min-width: 0;
    }

    .problem,
    .solution {
        margin-bottom: 0;
    }

    .problem h2,
    .solution h2 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .pain-points li,
    .solution-points li {
        font-size: 11px;
        padding: 4px 0;
        padding-left: 18px;
    }

    .whatsapp-sticky {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .hero-buttons .btn {
        width: auto;
        flex: 1;
        min-width: 0;
        max-width: 180px;
        font-size: 13px;
        padding: 12px 16px;
    }

    .btn {
        font-size: 14px;
        padding: 14px 24px;
    }

    body {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-item {
        font-size: 13px;
        padding: 6px;
    }

    /* Reduce section padding for small screens */
    .problem-solution,
    .services-snapshot,
    .why-mohaa,
    .gallery-preview,
    .how-it-works,
    .final-cta,
    .footer,
    .featured-posts,
    .blog-grid-section,
    .product-collections {
        padding: 40px 0;
    }
}

/* Extra small screen breakpoint for very small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-overlay {
        padding: 10px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .services-snapshot h2,
    .why-mohaa h2,
    .gallery-preview h2,
    .how-it-works h2,
    .final-cta h2 {
        font-size: 24px;
        color: var(--text-dark);
    }

    .final-cta p {
        font-size: 16px;
        color: rgba(33, 37, 41, 0.9);
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-feature {
        padding: 10px 18px;
        font-size: 13px;
    }

    .feature-icon {
        font-size: 14px;
    }

    /* Services Page Small Screen Styles */
    .service-detail {
        margin-bottom: 30px;
    }

    .service-content {
        padding: 20px;
        gap: 20px;
    }

    .service-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-text h3 {
        font-size: 18px;
        margin: 25px 0 12px 0;
    }

    .service-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .service-text ul li {
        padding: 6px 0;
        padding-left: 22px;
        font-size: 13px;
    }

    .service-text ul li::before {
        font-size: 14px;
        top: 6px;
    }

    .service-image img {
        height: 200px;
    }

    .service-cta {
        padding: 25px 20px;
    }

    .service-cta .btn {
        padding: 10px 25px;
        font-size: 15px;
    }

    /* Extra Small Screen Services Styles */
    .service-content {
        padding: 15px;
        gap: 15px;
    }

    .service-text h2 {
        font-size: 20px;
    }

    .service-text h3 {
        font-size: 16px;
        margin: 20px 0 10px 0;
    }

    .service-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .service-text ul li {
        padding: 4px 0;
        padding-left: 20px;
        font-size: 12px;
    }

    .service-text ul li::before {
        font-size: 12px;
        top: 4px;
    }

    .service-image img {
        height: 180px;
    }

    .service-cta {
        padding: 20px 15px;
    }

    .service-cta .btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .final-cta h2 {
        font-size: 20px;
        color: var(--text-dark);
    }

    .final-cta p {
        font-size: 14px;
        color: rgba(33, 37, 41, 0.9);
    }

    .cta-feature {
        padding: 8px 15px;
        font-size: 12px;
    }

    .feature-icon {
        font-size: 12px;
    }

    .problem h2,
    .solution h2 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .pain-points li,
    .solution-points li {
        font-size: 10px;
        padding: 3px 0;
        padding-left: 16px;
    }

    .hero-buttons .btn {
        width: auto;
        flex: 1;
        min-width: 0;
        max-width: 160px;
        font-size: 12px;
        padding: 10px 14px;
    }

    .whatsapp-popup-content {
        max-width: 350px;
        margin: 20px;
    }

    .whatsapp-popup-header {
        padding: 15px;
    }

    .whatsapp-popup-body {
        padding: 15px;
    }

    .whatsapp-message {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .whatsapp-popup-body h3 {
        font-size: 18px;
    }

    .whatsapp-popup-body p {
        font-size: 14px;
    }

    .btn {
        font-size: 13px;
        padding: 12px 20px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .trust-item {
        font-size: 12px;
        padding: 5px;
    }

    body {
        font-size: 13px;
    }

    p {
        font-size: 13px;
    }

    .whatsapp-sticky {
        width: 45px;
        height: 45px;
        font-size: 11px;
        bottom: 10px;
        right: 10px;
    }

    /* Reduce section padding further for extra small screens */
    .problem-solution {
        gap: 6px;
        padding: 30px 0;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .problem,
    .solution {
        flex: 1;
        min-width: 0;
    }

    .services-snapshot,
    .why-mohaa,
    .gallery-preview,
    .how-it-works,
    .final-cta,
    .footer,
    .featured-posts,
    .blog-grid-section,
    .product-collections {
        padding: 30px 0;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-row .other-sellers,
    .comparison-row .mohaa-sellers {
        padding: 12px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .step {
        padding: 15px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .step h3 {
        font-size: 14px;
    }

    .step p {
        font-size: 12px;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(rgba(11, 47, 58, 0.8), rgba(11, 47, 58, 0.6)), url('/images/logo.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.blog-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Blog Categories */
.blog-categories {
    padding: 40px 0;
    background: var(--light-grey);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-filter {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-filter:hover,
.category-filter.active {
    background: var(--primary-teal);
    color: white;
}

/* Featured Posts */
.featured-posts {
    padding: 60px 0;
    background: white;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-contrast);
    font-size: 32px;
}

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

.featured-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-content {
    padding: 25px;
}

.featured-content h3 {
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.4;
}

.featured-content p {
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-teal);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 60px 0;
    background: var(--light-grey);
}

.blog-sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.blog-main {
    background: white;
    border-radius: 12px;
    padding: 30px;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: var(--primary-teal);
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.4;
}

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

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

.read-time {
    color: var(--text-grey);
    font-size: 14px;
}

.read-more-btn {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-teal);
}

/* Blog CTA Strip */
.blog-cta-strip {
    background: var(--primary-teal);
    color: white;
    padding: 50px 0;
    text-align: center;
    margin: 40px -30px -30px -30px;
    border-radius: 0 0 12px 12px;
}

.blog-cta-strip h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.blog-cta-strip p {
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-size: 20px;
}

.sidebar-widget p {
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.popular-posts {
    list-style: none;
    padding: 0;
}

.popular-posts li {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-grey);
}

.popular-posts li:last-child {
    border-bottom: none;
}

.popular-posts a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.popular-posts a:hover {
    color: var(--primary-teal);
}

.post-date {
    color: var(--text-grey);
    font-size: 12px;
}

.location-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: var(--primary-teal);
}

/* Blog Footer CTA */
.blog-footer-cta {
    background: var(--accent-gold);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.blog-footer-cta h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-sidebar-layout {
        grid-template-columns: 1fr;
    }

    .blog-main {
        margin: -30px;
        margin-bottom: 30px;
        border-radius: 0;
        padding: 20px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .category-filters {
        flex-direction: column;
        align-items: center;
    }

    .category-filter {
        width: 200px;
    }

    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-hero p {
        font-size: 16px;
    }
}

/* Product Collections */
.product-collections {
    padding: 60px 0;
    background: var(--white);
}

.collections-header {
    text-align: center;
    margin-bottom: 50px;
}

.collections-header h2 {
    color: var(--dark-contrast);
    font-size: 32px;
    margin-bottom: 15px;
}

.collections-header p {
    font-size: 18px;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    height: 200px;
    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.05);
}

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    color: var(--primary-teal);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-content p {
    color: var(--text-grey);
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.whatsapp-btn {
    margin-top: auto;
    display: inline-block;
    background: var(--accent-gold) !important;
    color: var(--white) !important;
    width: auto !important;
    min-width: 80px !important;
    height: 32px !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 11px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
    padding: 0 12px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.whatsapp-btn:hover {
    background: #d1941f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(209, 148, 31, 0.3) !important;
}

/* Collections CTA */
.collections-cta {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-grey);
    border-radius: 12px;
    margin-top: 20px;
}

.collections-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .whatsapp-btn {
        min-width: 75px !important;
        height: 30px !important;
        font-size: 10px !important;
        border-radius: 15px !important;
        padding: 0 10px !important;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-buttons .btn {
        flex: 1;
        min-width: 0;
        max-width: 200px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .product-collections {
        padding: 40px 0;
    }

    .collections-header h2 {
        font-size: 28px;
    }

    .collections-header p {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 18px;
    }

    .product-content h3 {
        font-size: 16px;
    }

    .product-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .whatsapp-btn {
        min-width: 70px !important;
        height: 28px !important;
        font-size: 9px !important;
        border-radius: 14px !important;
        padding: 0 8px !important;
    }

    .collections-cta {
        padding: 30px 15px;
        margin: 0 -15px;
        border-radius: 0;
    }

    .collections-cta p {
        font-size: 16px;
    }

    .cta-buttons .btn {
        flex: 1;
        min-width: 0;
        max-width: 200px;
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 160px;
    }

    .whatsapp-btn {
        min-width: 65px !important;
        height: 26px !important;
        font-size: 8px !important;
        border-radius: 13px !important;
        padding: 0 6px !important;
    }

    .cta-buttons .btn {
        flex: 1;
        min-width: 0;
        max-width: 180px;
    }
}

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

/* Social Media Icons */
.social-media {
    margin-top: 15px;
}

.social-media h4 {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-icon.facebook {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.tiktok {
    background: linear-gradient(45deg, #000000, #ff0050);
}

.social-icon svg {
    filter: brightness(0) invert(1);
}

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