/* ======================================================
   DesiDhobi — The Laundry Hub
   Main Stylesheet
   ====================================================== */

/* === Variables === */
:root {
    --dd-orange: #F97316;
    --dd-orange-hover: #ea6a0e;
    --dd-orange-light: rgba(249, 115, 22, 0.1);
    --dd-blue: #1E3A5F;
    --dd-blue-light: #4DA6FF;
    --dd-blue-dark: #152a45;
    --dd-white: #ffffff;
    --dd-light-bg: #f8fafc;
    --dd-gray: #64748b;
    --dd-gray-light: #e2e8f0;
    --dd-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --dd-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --dd-radius: 16px;
    --dd-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #334155;
    line-height: 1.6;
    background-color: var(--dd-white);
    overflow-x: hidden;
}

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

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

/* === Container === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    border: none;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dd-orange), #f59e0b);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--dd-blue), var(--dd-blue-light));
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: white;
    color: var(--dd-blue);
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline-orange {
    background: transparent;
    color: var(--dd-orange);
    border: 2px solid var(--dd-orange);
}

.btn-outline-orange:hover {
    background: var(--dd-orange);
    color: white;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-lg {
    padding: 16px 32px;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-lg:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-schedule {
    background: linear-gradient(135deg, var(--dd-orange), #f59e0b);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-schedule:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.55);
}

.btn-schedule-lg {
    padding: 16px 32px;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4);
}

.btn-schedule-lg:hover {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.55);
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
    background: linear-gradient(135deg, var(--dd-orange), #f59e0b);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

/* === Sections === */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dd-blue);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dd-gray);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    background: var(--dd-orange-light);
    color: var(--dd-orange);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag-hero {
    background: rgba(249, 115, 22, 0.2);
}

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

.bg-light {
    background: var(--dd-light-bg);
}

.bg-white {
    background: white;
}

.mt-56 {
    margin-top: 56px;
}

.mb-48 {
    margin-bottom: 48px;
}

/* === Glass Card === */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--dd-radius-lg);
}

/* === Service Card === */
.service-card {
    position: relative;
    border-radius: var(--dd-radius-lg);
    overflow: hidden;
    background: white;
    border: 1px solid var(--dd-gray-light);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
}

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

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

.service-card:hover .card-img {
    transform: scale(1.08);
}

.service-card .card-img-wrap {
    overflow: hidden;
    position: relative;
}

.service-card .card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.service-card .card-body {
    padding: 24px 28px 28px;
}

.service-card .card-price {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--dd-orange);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dd-blue);
    margin-bottom: 6px;
}

.card-desc {
    color: var(--dd-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dd-orange);
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 12px;
}

/* === Feature Grid === */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 4fr));
    gap: 12px;
}

.feature-card {
    background: white;
    border-radius: var(--dd-radius);
    padding: 36px 28px;
    box-shadow: var(--dd-shadow);
    transition: all 0.35s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dd-shadow-lg);
}

.feature-card-glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-icon-left {
    margin: 0 0 20px;
}

/* === Image Cover === */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--dd-radius-lg);
}

/* === Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    }

    50% {
        box-shadow: 0 4px 24px rgba(249, 115, 22, 0.6);
    }
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

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

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

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 48px;
    width: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dd-blue);
    cursor: pointer;
    padding: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--dd-blue);
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    opacity: 0.85;
}

.nav-link.active {
    background-color: var(--dd-orange);
    color: white;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background-color: var(--dd-blue-dark);
    padding: 16px 0;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    color: var(--dd-white);
    padding: 12px 0;
    font-weight: 500;
}

.mobile-nav-cta {
    padding-top: 12px;
}

.mobile-nav-cta-row {
    padding-top: 10px;
    display: flex;
    gap: 10px;
}

.mobile-cta-btn {
    flex: 1;
    display: block;
    text-align: center;
    color: white;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.mobile-cta-btn.whatsapp {
    background: #25D366;
}

.mobile-cta-btn.blue {
    background: var(--dd-blue);
}

.mobile-cta-quote {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--dd-orange), #f59e0b);
    color: white;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ======================================================
   PAGE HERO / BANNER
   ====================================================== */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-hero-home {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.93), rgba(21, 42, 69, 0.88));
}

.hero-overlay-home {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.92) 0%, rgba(21, 42, 69, 0.85) 50%, rgba(249, 115, 22, 0.3) 100%);
}

.hero-overlay-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.92), rgba(245, 158, 11, 0.88));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content-left {
    text-align: left;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero-title-lg {
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto;
}

.page-hero-subtitle-left {
    margin: 0;
    max-width: 480px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
}

.text-orange {
    color: var(--dd-orange);
}

/* Banner CTA Row */
.banner-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dd-orange);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Image */
.hero-image-wrap {
    display: flex;
    justify-content: center;
}

.hero-glass-card {
    padding: 32px;
    position: relative;
}

.hero-main-img {
    border-radius: 20px;
    width: 420px;
    height: 480px;
    object-fit: cover;
}

.hero-floating-badge {
    position: absolute;
    bottom: 16px;
    left: -40px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--dd-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.hero-badge-title {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-badge-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

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

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
}

/* ======================================================
   SERVICES GRID (Home)
   ====================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* ======================================================
   HOW IT WORKS
   ====================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--dd-orange);
}

.step-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-circle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.3);
}

.step-circle-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--dd-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 2;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dd-blue);
    margin-bottom: 8px;
}

.step-desc {
    color: var(--dd-gray);
    font-size: 0.93rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ======================================================
   WHY CHOOSE US (Parallax section)
   ====================================================== */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: 0;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(21, 42, 69, 0.9));
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.parallax-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.parallax-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 56px;
}

.feature-title-light {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dd-orange);
    margin-bottom: 8px;
}

.feature-desc-light {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--dd-light-bg);
    border-radius: var(--dd-radius-lg);
    padding: 36px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 3rem;
    color: rgba(249, 115, 22, 0.12);
    line-height: 1;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dd-orange);
}

.testimonial-name {
    font-weight: 700;
    color: var(--dd-blue);
    font-size: 1rem;
}

.testimonial-role {
    color: var(--dd-gray);
    font-size: 0.82rem;
}

.testimonial-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.75;
    font-style: italic;
}

.testimonial-stars {
    margin-top: 16px;
    color: #f59e0b;
}

/* ======================================================
   CTA SECTIONS
   ====================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-title-sm {
    font-size: 2.25rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-subtitle-dim {
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

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

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-main-img {
    border-radius: var(--dd-radius-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: var(--dd-shadow-lg);
}

.about-since-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--dd-orange);
    color: white;
    padding: 24px 32px;
    border-radius: var(--dd-radius);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.about-since-text {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.about-rating-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    padding: 16px 24px;
}

.about-rating-title {
    color: white;
    font-weight: 700;
}

.about-rating-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.about-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dd-blue);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-text {
    color: var(--dd-gray);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-text-last {
    margin-bottom: 28px;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dd-light-bg);
    padding: 14px 18px;
    border-radius: 12px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--dd-orange-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-text {
    font-weight: 600;
    color: var(--dd-blue);
    font-size: 0.93rem;
}

/* MVV Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 16px;
}

.feature-card-left {
    text-align: left;
    padding: 40px 36px;
}

.mvv-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dd-blue);
    margin-bottom: 12px;
}

.mvv-desc {
    color: var(--dd-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Image Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--dd-radius);
    overflow: hidden;
    position: relative;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-overlay-lg {
    padding: 24px;
}

.gallery-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-label-lg {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Stats Bar */
.stats-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

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

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
}

/* ======================================================
   SERVICES PAGE — Detail Grid (zigzag)
   ====================================================== */
.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    display: grid;
    gap: 0;
    background: white;
    border-radius: var(--dd-radius-lg);
    overflow: hidden;
    box-shadow: var(--dd-shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--dd-gray-light);
}

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

.service-detail-even {
    grid-template-columns: 1fr 1.2fr;
}

.service-detail-odd {
    grid-template-columns: 1.2fr 1fr;
}

.service-detail-img {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

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

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

.service-price-badge {
    position: absolute;
    top: 20px;
    background: var(--dd-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.service-price-badge-left {
    left: 20px;
}

.service-price-badge-right {
    right: 20px;
}

.service-detail-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.service-detail-bar {
    width: 4px;
    height: 36px;
    background: var(--dd-orange);
    border-radius: 4px;
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dd-blue);
    letter-spacing: -0.3px;
}

.service-detail-desc {
    color: var(--dd-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: #475569;
    font-size: 0.9rem;
}

.service-feature-icon {
    width: 22px;
    height: 22px;
    background: var(--dd-orange-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Pricing Promises */
.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.promise-title {
    font-weight: 700;
    color: var(--dd-blue);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.promise-desc {
    color: var(--dd-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 48px;
}

.contact-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dd-blue);
    margin-bottom: 8px;
}

.contact-subtext {
    color: var(--dd-gray);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group-last {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dd-blue);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--dd-gray-light);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--dd-orange);
}

.form-select {
    background: white;
    color: var(--dd-gray);
}

.form-textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--dd-light-bg);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon-orange {
    background: linear-gradient(135deg, var(--dd-orange), #fb923c);
}

.contact-card-icon-blue {
    background: linear-gradient(135deg, var(--dd-blue), var(--dd-blue-light));
}

.contact-card-title {
    font-weight: 600;
    color: var(--dd-blue);
    margin-bottom: 4px;
}

.contact-card-text {
    color: var(--dd-gray);
    font-size: 0.93rem;
    line-height: 1.6;
}

.map-section {
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--dd-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--dd-gray-light);
    border-bottom: 1px solid var(--dd-gray-light);
}

.map-placeholder-text {
    text-align: center;
    color: var(--dd-gray);
}

.map-placeholder-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.map-placeholder-sub {
    font-size: 0.9rem;
}

/* ======================================================
   PRICING PAGE
   ====================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: white;
    border-radius: var(--dd-radius-lg);
    overflow: hidden;
    box-shadow: var(--dd-shadow);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dd-shadow-lg);
}

.pricing-card-popular {
    border: 2px solid var(--dd-orange);
}

.pricing-card-default {
    border: 1px solid var(--dd-gray-light);
}

.pricing-popular-tag {
    background: linear-gradient(135deg, var(--dd-orange), #f59e0b);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card-header {
    padding: 32px 28px 20px;
    text-align: center;
    border-bottom: 1px solid var(--dd-gray-light);
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.pricing-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dd-blue);
    margin-bottom: 4px;
}

.pricing-card-body {
    padding: 20px 28px 28px;
}

.pricing-item-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.07);
    font-size: 0.93rem;
}

.pricing-item-name {
    color: #475569;
}

.pricing-item-price {
    color: var(--dd-orange);
    font-weight: 700;
    white-space: nowrap;
    margin-left: 12px;
}

.pricing-book-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pricing-book-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.pricing-book-popular {
    background: linear-gradient(135deg, var(--dd-orange), #f59e0b);
    color: white;
}

.pricing-book-default {
    background: var(--dd-light-bg);
    color: var(--dd-blue);
}

/* Subscription Plans */
.subs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.sub-card {
    border-radius: var(--dd-radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--dd-shadow);
    transition: all 0.4s ease;
}

.sub-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dd-shadow-lg);
}

.sub-card-highlight {
    background: linear-gradient(135deg, var(--dd-orange), #f59e0b);
    border: none;
}

.sub-card-default {
    background: white;
    border: 1px solid var(--dd-gray-light);
}

.sub-best-value {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--dd-blue);
    color: white;
    padding: 4px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.sub-plan-name {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.sub-plan-name-light {
    color: rgba(255, 255, 255, 0.85);
}

.sub-plan-name-dark {
    color: var(--dd-gray);
}

.sub-price-wrap {
    margin-bottom: 24px;
}

.sub-price {
    font-size: 2.75rem;
    font-weight: 800;
}

.sub-price-light {
    color: white;
}

.sub-price-dark {
    color: var(--dd-blue);
}

.sub-period {
    font-size: 1rem;
}

.sub-period-light {
    color: rgba(255, 255, 255, 0.7);
}

.sub-period-dark {
    color: var(--dd-gray);
}

.sub-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.sub-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
}

.sub-feature-light {
    color: rgba(255, 255, 255, 0.9);
}

.sub-feature-dark {
    color: #475569;
}

.sub-subscribe-btn {
    display: block;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sub-subscribe-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.sub-btn-light {
    background: white;
    color: var(--dd-orange);
}

.sub-btn-dark {
    background: linear-gradient(135deg, var(--dd-orange), #f59e0b);
    color: white;
}

/* Perks Grid */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.perk-icon {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.perk-title {
    font-weight: 700;
    color: var(--dd-blue);
    margin-bottom: 6px;
    font-size: 1rem;
}

.perk-desc {
    color: var(--dd-gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
    background-color: var(--dd-blue);
    color: var(--dd-white);
    padding: 60px 0 0;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icon:hover {
    background-color: var(--dd-orange);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dd-orange);
}

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

.footer-list li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--dd-orange);
}

.footer-service-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-item {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-item-start {
    align-items: flex-start;
}

.footer-contact-icon {
    flex-shrink: 0;
}

.footer-contact-icon-top {
    margin-top: 3px;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-credit a {
    color: var(--dd-orange);
}

/* ======================================================
   RESPONSIVE — TABLET (max-width: 768px)
   ====================================================== */
@media (max-width: 768px) {

    /* Global */
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }

    .section-tag {
        font-size: 0.72rem;
        padding: 5px 16px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.88rem;
    }

    /* Header */
    .main-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .header-inner {
        height: 60px;
    }

    .header-logo img {
        height: 40px;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 32px;
    }

    .hero-grid .hero-text {
        align-items: center;
    }

    .hide-mobile {
        display: none !important;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-title-lg {
        font-size: 2.25rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .page-hero-subtitle-left {
        text-align: center;
        margin: 0 auto 28px;
    }

    .hero-container {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-cta,
    .banner-cta {
        gap: 10px;
        justify-content: center;
    }

    .btn-whatsapp,
    .btn-schedule {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .btn-whatsapp-lg,
    .btn-schedule-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 24px;
        justify-content: center;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .service-card .card-img {
        height: 160px;
    }

    .service-card .card-body {
        padding: 16px 18px 20px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-desc {
        font-size: 0.82rem;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-circle {
        width: 140px;
        height: 140px;
    }

    .step-title {
        font-size: 1.05rem;
    }

    .step-desc {
        font-size: 0.85rem;
    }

    /* Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 28px 22px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .feature-card-left {
        padding: 28px 22px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 0.88rem;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-title-sm {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .cta-buttons .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-main-img {
        height: 320px;
    }

    .about-heading {
        font-size: 1.75rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

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

    .badge-item {
        padding: 12px 14px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .stats-section {
        padding: 48px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Services Detail */
    .service-detail-even,
    .service-detail-odd {
        grid-template-columns: 1fr;
    }

    .service-detail-body {
        padding: 24px 20px;
    }

    .service-detail-title {
        font-size: 1.25rem;
    }

    .service-detail-desc {
        font-size: 0.88rem;
    }

    .service-feature-item {
        font-size: 0.82rem;
    }

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

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-heading {
        font-size: 1.4rem;
    }

    .contact-card {
        padding: 20px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-header {
        padding: 24px 20px 16px;
    }

    .pricing-icon {
        font-size: 2rem;
    }

    .pricing-card-title {
        font-size: 1.15rem;
    }

    .pricing-card-body {
        padding: 16px 20px 24px;
    }

    .pricing-item {
        font-size: 0.85rem;
        padding: 8px 0;
    }

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

    .sub-card {
        padding: 28px 24px;
    }

    .sub-price {
        font-size: 2.25rem;
    }

    .sub-feature-item {
        font-size: 0.82rem;
    }

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

    .perk-icon {
        font-size: 1.75rem;
    }

    .perk-title {
        font-size: 0.9rem;
    }

    .perk-desc {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-desc {
        font-size: 0.88rem;
    }
}

/* ======================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ====================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .section {
        padding: 44px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
        margin-bottom: 28px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 0.82rem;
    }

    .page-hero {
        padding: 90px 0 44px;
    }

    .page-hero-title {
        font-size: 1.65rem;
    }

    .page-hero-title-lg {
        font-size: 1.85rem;
    }

    .page-hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-container {
        padding-top: 70px;
        padding-bottom: 32px;
    }

    .btn-whatsapp,
    .btn-schedule {
        padding: 10px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .btn-whatsapp-lg,
    .btn-schedule-lg {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }

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

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-title-sm {
        font-size: 1.35rem;
    }

    .about-main-img {
        height: 240px;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .stat-number {
        font-size: 1.65rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        min-width: 0;
    }

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

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

    .parallax-title {
        font-size: 1.75rem;
    }

    .parallax-subtitle {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .mobile-nav-cta-row {
        flex-direction: column;
    }

    .btn-quote {
        padding: 8px 18px;
        font-size: 0.8rem;
        margin-left: 8px;
    }
}