/* Abdii Finest Curtains - Mobile-First CSS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* 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: 'Plus Jakarta Sans', '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: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 46px; /* 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 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

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

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

.brand-name {
    font-size: 1rem;
    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;
}

/* Small screens: tap-friendly targets and readable base */
@media (max-width: 768px) {
    .nav-menu.active .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 12px 0;
    }
    input, select, textarea {
        font-size: 16px !important;
    }
}

.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: clamp(1.35rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
    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(5, 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 Abdii Comparison */
.why-abdii {
    padding: 60px 0;
    background-color: var(--white);
}

.why-abdii 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 .abdii-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(5, 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 — matches mohaafinestcurtains.co.ke layout */
.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 h4 {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--light-grey);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-section .btn {
    color: var(--white) !important;
    margin-top: 10px;
}

.footer-section .btn:hover {
    color: var(--white) !important;
}

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

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* 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;
        min-height: 48px;
    }

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

    .hero {
        min-height: 360px;
    }

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

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

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

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

    .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;
        text-align: left;
    }

    .footer-section {
        min-width: 0;
    }

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

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

    .footer-section .social-media h4 {
        font-size: 13px;
    }

    .footer-section .social-media > div {
        justify-content: flex-start !important;
    }

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

    .comparison-row .other-sellers,
    .comparison-row .abdii-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-abdii 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: 52px;
        height: 52px;
        min-width: 48px;
        min-height: 48px;
        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-abdii,
    .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 {
        min-height: 320px;
    }

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

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

    .services-snapshot h2,
    .why-abdii 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: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        font-size: 11px;
        bottom: 12px;
        right: 12px;
    }

    .btn {
        min-height: 44px;
    }

    /* 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-abdii,
    .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 .abdii-sellers {
        padding: 12px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 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(5, 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(5, 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: repeat(2, 1fr);
        gap: 12px;
    }

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

    .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: 9px !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: 8px !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: 7px !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: 6px !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;
}

/* Page Hero (landing & service pages) */
.page-hero {
    background: linear-gradient(135deg, var(--dark-contrast) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.page-hero p {
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 24px;
    opacity: 0.92;
    line-height: 1.7;
}

/* Landing page content sections */
.landing-content {
    padding: 60px 0;
    background: var(--white);
}

.landing-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}

.landing-text h2 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    margin: 28px 0 12px;
}

.landing-text h2:first-child {
    margin-top: 0;
}

.landing-text p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 14px;
}

.landing-text a {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: underline;
}

.landing-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

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

.landing-feature-card {
    background: var(--light-grey);
    border-radius: 12px;
    padding: 28px 24px;
    border-left: 4px solid var(--accent-gold);
}

.landing-feature-card h3 {
    color: var(--dark-contrast);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.landing-feature-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Home page local SEO content block */
.seo-content-block {
    padding: 60px 0;
    background: var(--light-grey);
}

.seo-content-block h2 {
    color: var(--dark-contrast);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.seo-content-block p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 900px;
}

.seo-content-block a {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

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

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

/* ── Modern redesign components ── */

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

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

.collections-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--dark-contrast);
    margin-bottom: 12px;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.9);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.solution-visual img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(11, 47, 58, 0.15);
}

.image-caption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-grey);
    font-style: italic;
    text-align: center;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.modern-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(11, 47, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(15, 111, 109, 0.08);
}

.modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11, 47, 58, 0.14);
}

.modern-card .product-image {
    height: 220px;
    overflow: hidden;
}

.modern-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-card:hover .product-image img {
    transform: scale(1.06);
}

.modern-card .product-content {
    padding: 24px;
}

.modern-card h3 {
    color: var(--dark-contrast);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.modern-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 10px 18px;
    min-height: auto;
    font-size: 0.875rem;
}

.modern-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin: 0;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(11, 47, 58, 0.92));
    color: white;
}

.gallery-card figcaption h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.gallery-card figcaption p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.work-process {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-grey) 100%);
}

.process-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.process-track.compact {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.process-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 47, 58, 0.08);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
}

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

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

.process-step-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.process-card-body {
    padding: 20px;
}

.process-card-body h3 {
    color: var(--dark-contrast);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.process-caption {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.process-card-body p:last-child {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.modern-gallery-page .gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 20px rgba(11, 47, 58, 0.1);
    transition: transform 0.3s ease;
}

.modern-gallery-page .gallery-item:hover {
    transform: translateY(-4px);
}

.modern-gallery-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-gallery-page .gallery-item:hover img {
    transform: scale(1.05);
}

.modern-gallery-page .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(transparent, rgba(11, 47, 58, 0.95));
    color: white;
    transform: translateY(60%);
    transition: transform 0.35s ease;
}

.modern-gallery-page .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--accent-gold);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.process-gallery {
    padding: 60px 0;
    background: var(--light-grey);
}

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

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

@media (max-width: 900px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .process-card-image {
        height: 130px;
    }

    .process-step-num {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: 8px;
        left: 8px;
    }

    .process-card-body {
        padding: 12px;
    }

    .process-card-body h3 {
        font-size: 0.85rem;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    .process-caption {
        font-size: 0.75rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .process-card-body p:last-child {
        font-size: 0.72rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

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

    .modern-gallery-page .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent 20%, rgba(11, 47, 58, 0.92));
    }
}

/* ── Curtain Types Grid ── */

.curtain-types-section {
    padding: 60px 0;
    background: var(--white);
}

.curtain-types-page {
    background: var(--light-grey);
    padding-top: 48px;
    padding-bottom: 48px;
}

.curtain-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.curtain-type-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid rgba(15, 111, 109, 0.1);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(11, 47, 58, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.curtain-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11, 47, 58, 0.1);
    border-color: var(--primary-teal);
}

.curtain-type-card-static {
    text-decoration: none;
}

.curtain-type-image {
    position: relative;
    height: 130px;
    overflow: hidden;
    background: var(--light-grey);
}

.curtain-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.curtain-type-body {
    padding: 14px 12px 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.curtain-type-card h3 {
    font-size: 0.92rem;
    color: var(--dark-contrast);
    margin-bottom: 6px;
    line-height: 1.3;
}

.curtain-type-card p {
    font-size: 0.78rem;
    color: var(--text-grey);
    line-height: 1.45;
    flex-grow: 1;
    margin-bottom: 0;
}

.curtain-type-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.curtain-types-section .collections-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Abdii Collection Cards (distinct from old Mohaa grid) ── */

.abdii-collections-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.abdii-collections-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
}

.abdii-collections-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 80px 20px;
    max-width: 640px;
}

.abdii-collections-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.abdii-collections-hero p {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 28px;
    line-height: 1.6;
}

.abdii-collections-page {
    padding: 60px 0 80px;
    background: var(--light-grey);
}

.collection-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.collection-filter-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    background: white;
    color: var(--dark-contrast);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(11, 47, 58, 0.06);
}

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

.abdii-collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.abdii-collections-grid.full-page .abdii-collection-card.featured {
    grid-column: span 1;
}

@media (min-width: 1100px) {
    .abdii-collections-grid.full-page {
        grid-template-columns: repeat(3, 1fr);
    }
    .abdii-collections-grid.full-page .abdii-collection-card.featured:first-child {
        grid-column: span 2;
        grid-row: span 1;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
    }
    .abdii-collections-grid.full-page .abdii-collection-card.featured:first-child .abdii-collection-visual {
        height: 100%;
        min-height: 280px;
    }
    .abdii-collections-grid.full-page .abdii-collection-card.featured:first-child .abdii-collection-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.abdii-collection-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 111, 109, 0.1);
    box-shadow: 0 4px 24px rgba(11, 47, 58, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abdii-collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(11, 47, 58, 0.12);
}

.abdii-collection-card.featured {
    border-color: rgba(255, 140, 0, 0.35);
}

.abdii-collection-visual {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.abdii-collection-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.abdii-collection-card:hover .abdii-collection-visual img {
    transform: scale(1.05);
}

.abdii-collection-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.abdii-collection-body {
    padding: 24px;
}

.abdii-collection-body h3 {
    font-size: 1.2rem;
    color: var(--dark-contrast);
    margin-bottom: 10px;
    font-weight: 700;
}

.abdii-collection-body > p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.abdii-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.abdii-feature-tags li {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-teal);
    background: rgba(15, 111, 109, 0.08);
    padding: 4px 10px;
    border-radius: 14px;
}

.abdii-ideal-for {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 18px;
}

.abdii-ideal-for strong {
    color: var(--dark-contrast);
}

.collections-cta h2 {
    color: var(--dark-contrast);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .abdii-collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .abdii-collections-grid.full-page .abdii-collection-card.featured:first-child {
        grid-column: span 1;
        display: block;
    }

    .abdii-collections-grid.full-page .abdii-collection-card.featured:first-child .abdii-collection-visual {
        height: 130px;
        min-height: auto;
    }

    .abdii-collections-hero {
        min-height: 300px;
    }
}

/* ── Compact mobile + interactivity ── */

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

.navbar {
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar .nav-link {
    position: relative;
    transition: color 0.2s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.25s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

/* Tap / hover lift on interactive cards */
.interactive-card,
.abdii-collection-card,
.process-card,
.gallery-card,
.gallery-item,
.modern-card,
.product-card,
.trust-item,
.step {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.interactive-card:active,
.abdii-collection-card:active,
.process-card:active,
.gallery-card:active {
    transform: scale(0.98);
}

/* Stagger reveal */
.reveal-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ accordion */
.faq-item {
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: var(--primary-teal);
}

.faq-q {
    font-size: 0.95rem !important;
    padding: 0.9rem 1rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.faq-q::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 1rem 0.9rem;
}

.faq-a p {
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Filter button press */
.collection-filter-btn:active,
.gallery-filter:active {
    transform: scale(0.96);
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    body {
        line-height: 1.5;
    }

    .container {
        padding: 0 14px;
    }

    .nav-container {
        height: 58px;
        padding: 0 12px;
    }

    .logo {
        height: 38px;
        width: 38px;
    }

    .brand-name {
        font-size: 0.85rem;
        max-width: 140px;
        line-height: 1.2;
    }

    .nav-menu.active {
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-menu.active .nav-link {
        font-size: 0.9rem;
        padding: 10px 0;
        min-height: 40px;
    }

    .hero {
        min-height: 300px;
        height: 55vh;
    }

    .hero-title {
        font-size: 1.35rem !important;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 18px;
        line-height: 1.45;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .hero-buttons .btn {
        font-size: 0.8rem;
        padding: 10px 14px;
        min-height: 42px;
        max-width: 100%;
        flex: 1 1 auto;
    }

    .btn {
        font-size: 0.85rem;
        padding: 11px 18px;
        min-height: 42px;
        width: auto;
    }

    .btn-sm {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .collections-header h2,
    .why-abdii h2,
    .gallery-preview h2,
    .how-it-works h2,
    .final-cta h2 {
        font-size: 1.25rem;
    }

    .collections-header p {
        font-size: 0.85rem;
    }

    .section-label {
        font-size: 0.7rem;
    }

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

    .trust-item {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 4px;
    }

    .trust-icon {
        font-size: 1.1rem;
    }

    .problem h2,
    .solution h2 {
        font-size: 1.1rem;
    }

    .pain-points li,
    .solution-points li {
        font-size: 0.85rem;
        padding: 8px 0 8px 26px;
    }

    .abdii-collection-body h3 {
        font-size: 1rem;
    }

    .abdii-collection-body > p {
        font-size: 0.82rem;
    }

    .abdii-feature-tags li {
        font-size: 0.68rem;
    }

    .abdii-collection-visual {
        height: 180px;
    }

    .process-card-image {
        height: 110px;
    }

    .process-card-body {
        padding: 10px;
    }

    .process-card-body h3 {
        font-size: 0.8rem;
    }

    .process-card-body p {
        font-size: 0.72rem;
    }

    .process-caption {
        font-size: 0.7rem;
    }

    .process-track,
    .process-track.compact {
        gap: 10px;
    }

    .gallery-card figcaption h3 {
        font-size: 0.85rem;
    }

    .gallery-card figcaption p {
        font-size: 0.75rem;
    }

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

    .step {
        padding: 14px 10px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .step h3 {
        font-size: 0.8rem;
    }

    .step p {
        font-size: 0.72rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .whatsapp-sticky {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .comparison-header,
    .comparison-row {
        font-size: 0.75rem;
    }

    .seo-content-block h2 {
        font-size: 1.1rem;
    }

    .seo-content-block p {
        font-size: 0.85rem;
    }

    /* Two cards per row — all card grids on small screens */
    .services-grid,
    .gallery-grid,
    .modern-grid,
    .modern-gallery,
    .abdii-collections-grid,
    .abdii-collections-grid.full-page,
    .landing-features,
    .featured-grid,
    .blog-grid,
    .values-grid,
    .team-grid,
    .commitment-grid,
    .testimonials-grid,
    .areas-grid,
    .faq-grid,
    .emergency-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

    .curtain-type-card {
        padding: 0;
    }

    .curtain-type-image {
        height: 100px;
    }

    .curtain-type-body {
        padding: 10px 8px 8px;
    }

    .curtain-type-card h3 {
        font-size: 0.78rem;
    }

    .curtain-type-card p {
        font-size: 0.68rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .curtain-type-actions .btn-sm {
        font-size: 0.68rem;
        padding: 7px 10px;
    }

    .service-card,
    .value-card,
    .landing-feature-card,
    .area-card,
    .testimonial,
    .emergency-option {
        padding: 14px 10px;
    }

    .service-card h3,
    .value-card h3,
    .landing-feature-card h3,
    .area-card h3,
    .emergency-option h3 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .service-card p,
    .value-card p,
    .landing-feature-card p,
    .area-card p,
    .emergency-option p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .featured-image,
    .blog-card .blog-image,
    .modern-card .product-image {
        height: 110px;
    }

    .featured-card h3,
    .blog-card h3,
    .modern-card h3 {
        font-size: 0.85rem;
    }

    .featured-card p,
    .blog-card p,
    .modern-card p {
        font-size: 0.75rem;
    }

    .team-member .member-image {
        width: 72px;
        height: 72px;
        margin-bottom: 10px;
    }

    .team-member h3 {
        font-size: 0.85rem;
    }

    .member-role,
    .member-bio {
        font-size: 0.72rem;
    }

    .value-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .gallery-card figcaption {
        padding: 10px;
    }

    .modern-gallery-page .gallery-overlay {
        padding: 12px 10px 10px;
    }

    .modern-gallery-page .gallery-overlay h3 {
        font-size: 0.8rem;
    }

    .modern-gallery-page .gallery-overlay p {
        font-size: 0.68rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 400px) {
    html {
        font-size: 13px;
    }

    .brand-name {
        font-size: 0.78rem;
        max-width: 120px;
    }

    .hero-title {
        font-size: 1.2rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

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

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

    .collection-filters,
    .gallery-nav {
        gap: 6px;
    }

    .collection-filter-btn,
    .gallery-filter {
        font-size: 0.72rem;
        padding: 7px 12px;
    }
}
