/* ============================================
   LaundryGo Dry Cleaning Premium Page Styles
   ============================================ */

/* ---- Hero ---- */
.dc-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: #ffffff;
}

.dc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Animated wave layers */
.dc-hero-bg::before,
.dc-hero-bg::after {
    content: '';
    position: absolute;
    left: -5%;
    width: 110%;
    background-repeat: repeat-x;
    background-size: 1440px auto;
}

.dc-hero-bg::before {
    bottom: -10px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'%3E%3Cpath fill='%23bfdbfe' fill-opacity='0.4' d='M0,120 C180,180 360,60 540,100 C720,140 900,40 1080,80 C1260,120 1350,60 1440,100 L1440,200 L0,200 Z'/%3E%3C/svg%3E");
    animation: waveMove 8s ease-in-out infinite alternate;
    z-index: 1;
}

.dc-hero-bg::after {
    bottom: -5px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%2393c5fd' fill-opacity='0.25' d='M0,80 C240,150 480,30 720,90 C960,150 1200,50 1440,100 L1440,180 L0,180 Z'/%3E%3C/svg%3E");
    animation: waveMove 10s ease-in-out infinite alternate-reverse;
    z-index: 2;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-40px);
    }
}

.dc-hero .container {
    position: relative;
    z-index: 5;
}

/* Hero Store Badges (equal size) */
.dc-hero-store-badges {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.dc-hero-store-badges a {
    display: inline-flex;
    height: 48px;
}

.dc-hero-store-badges img {
    height: 48px;
    width: auto;
    transition: transform 0.2s;
}

.dc-hero-store-badges img:hover {
    transform: scale(1.05);
}

/* Cashback highlight */
.dc-hero-cashback {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: #065f46;
    margin-bottom: 1rem;
}

.dc-hero-cashback i {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.dc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.dc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(95, 163, 217, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.dc-hero-badge i {
    width: 16px;
    height: 16px;
    color: #f59e0b;
}

.dc-hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #5fa3d9 0%, #e47e1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dc-hero-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.dc-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dc-hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(95, 163, 217, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s;
}

.dc-hero-tags span:hover {
    background: rgba(95, 163, 217, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.dc-hero-tags span i {
    width: 14px;
    height: 14px;
}

.dc-hero-pricing-action {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.dc-hero-price {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #e47e1a 0%, #f59e0b 100%);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(228, 126, 26, 0.3);
    width: fit-content;
}

.dc-price-box {
    text-align: center;
}

.dc-price-from {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dc-price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
}

.dc-price-amount span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.dc-price-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.dc-hero-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #e47e1a 0%, #d97706 100%);
    color: white;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(228, 126, 26, 0.3);
}

.dc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(228, 126, 26, 0.4);
}

.dc-btn-primary i {
    width: 18px;
    height: 18px;
}

.dc-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    background: white;
    color: #334155;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.dc-btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.dc-btn-block {
    width: 100%;
    justify-content: center;
}

.dc-app-badges {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.dc-app-badges img {
    transition: transform 0.2s;
}

.dc-app-badges img:hover {
    transform: scale(1.05);
}

/* Hero Visual */
.dc-hero-visual {
    position: relative;
}

.dc-hero-img-wrap {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
}

.dc-hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Locality laundry-services pages: wash & iron hero visual */
.laundry-services-local .dc-hero-wash-iron {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(95, 163, 217, 0.2);
    background: #f8fafc;
}

.laundry-services-local .dc-hero-wash-iron img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.laundry-services-local .dc-hero-visual {
    z-index: 2;
}

.laundry-services-local .dc-float-card {
    z-index: 3;
}

/* Coverage map section (below trust bar on locality pages) */
.dc-local-coverage-map {
    padding: 3rem 0 3.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
}

.dc-local-coverage-map .dc-section-head {
    margin-bottom: 1.75rem;
}

.dc-local-map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(95, 163, 217, 0.3);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    max-width: 960px;
    margin: 0 auto;
}

.dc-local-osm-embed {
    display: block;
    width: 100%;
    height: min(50vh, 440px);
    min-height: 300px;
    border: 0;
    background: #e2e8f0;
}

.dc-local-map-frame noscript img {
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: contain;
    display: block;
}

.dc-local-map-note {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: #64748b;
}

.dc-local-map-note a {
    color: var(--color-primary, #5fa3d9);
    font-weight: 600;
    text-decoration: none;
}

.dc-local-map-note a:hover {
    text-decoration: underline;
}

@media (max-width: 1023px) {
    .dc-local-osm-embed {
        height: 320px;
        min-height: 280px;
    }
}

.dc-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatCard 3s ease-in-out infinite;
}

.dc-float-card i {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.dc-float-card strong {
    display: block;
    font-size: 0.8125rem;
    color: #0f172a;
}

.dc-float-card small {
    display: block;
    font-size: 0.6875rem;
    color: #94a3b8;
}

.dc-float-1 {
    bottom: 20%;
    left: -30px;
}

.dc-float-2 {
    top: 15%;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes floatCard {

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

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

/* ---- Trust Bar ---- */
.dc-trust-bar {
    padding: 2rem 0;
    background: #ffffff;
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.dc-trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dc-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.dc-trust-item i {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}

.dc-trust-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.dc-trust-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Section Head ---- */
.dc-section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.dc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 1rem;
    background: rgba(95, 163, 217, 0.08);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.dc-badge i {
    width: 14px;
    height: 14px;
}

.dc-section-head h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.dc-section-head p {
    font-size: 1.0625rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- App CTA V2 (Centered Layout) ---- */
.dc-app-cta-v2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a8fc7 50%, #3d7db5 100%);
    position: relative;
    overflow: hidden;
}

.dc-app-cta-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dc-badge-white {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dc-badge-white i {
    color: white !important;
}

.dc-app-v2-centered-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

.dc-app-v2-features-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dc-app-v2-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.dc-app-v2-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.dc-app-v2-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dc-app-v2-card-icon i {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

.dc-app-v2-card strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.dc-app-v2-card span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    display: block;
}

.dc-app-v2-features-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dc-app-v2-perks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dc-app-v2-perks-list span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
}

.dc-app-v2-perks-list span i {
    width: 20px;
    height: 20px;
    color: #86efac;
    flex-shrink: 0;
}

.dc-app-v2-badges-vert {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dc-app-v2-badges-vert img {
    height: 48px;
    width: auto;
    transition: transform 0.2s;
}

.dc-app-v2-badges-vert img:hover {
    transform: scale(1.05);
}

.dc-app-v2-center-img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dc-app-v2-center-img img {
    height: 480px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* ---- Process Timeline ---- */
.dc-process {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.dc-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.dc-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary) 0%, #e47e1a 100%);
    border-radius: 2px;
}

.dc-timeline-item {
    position: relative;
    padding-left: 72px;
    margin-bottom: 2.5rem;
}

.dc-timeline-item:last-child {
    margin-bottom: 0;
}

.dc-timeline-num {
    position: absolute;
    left: 12px;
    top: 1.5rem;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary), #5fa3d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(95, 163, 217, 0.3);
}

.dc-timeline-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: all 0.3s;
}

.dc-timeline-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.dc-timeline-img {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    min-height: 200px;
}

.dc-timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
}

.dc-timeline-body {
    padding: 1.5rem;
}

.dc-timeline-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.dc-timeline-body p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.dc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.dc-tags span {
    padding: 0.25rem 0.625rem;
    background: rgba(95, 163, 217, 0.08);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ---- Fabrics ---- */
.dc-fabrics {
    padding: 5rem 0;
    background: white;
}

.dc-fabrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dc-fabric-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    cursor: default;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.dc-fabric-card:hover {
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.dc-fabric-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(95, 163, 217, 0.12), rgba(95, 163, 217, 0.04));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-fabric-icon i {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.dc-fabric-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.dc-fabric-card p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.dc-fabric-price {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(228, 126, 26, 0.08);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #e47e1a;
}

/* ---- Services hub (all-services page) ---- */
.dc-svc-hub {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.dc-svc-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .dc-svc-hub-grid {
        grid-template-columns: 1fr;
    }
}

.dc-svc-hub-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #f1f5f9;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
}

.dc-svc-hub-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.dc-svc-hub-card.dc-svc-hub-featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(95, 163, 217, 0.03), rgba(95, 163, 217, 0.01));
}

.dc-svc-hub-label {
    position: absolute;
    top: -13px;
    right: 1.5rem;
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dc-svc-hub-label.dc-svc-hub-label-alt {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.dc-svc-hub-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dc-svc-hub-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(95, 163, 217, 0.12), rgba(95, 163, 217, 0.04));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-svc-hub-icon i {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.dc-svc-hub-head h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.dc-svc-hub-head p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.dc-svc-hub-what {
    background: linear-gradient(135deg, rgba(95, 163, 217, 0.1), rgba(95, 163, 217, 0.03));
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.dc-svc-hub-what h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem;
}

.dc-svc-hub-what h4 i {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.dc-svc-hub-what ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #475569;
}

.dc-svc-hub-what li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1.1rem;
}

.dc-svc-hub-what li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.dc-svc-hub-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.dc-svc-hub-meta .dc-svc-hub-price {
    font-weight: 800;
    color: #e47e1a;
}

.dc-svc-hub-meta .dc-svc-hub-time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #64748b;
    font-size: 0.8125rem;
}

.dc-svc-hub-meta .dc-svc-hub-time i {
    width: 16px;
    height: 16px;
}

.dc-svc-hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ---- Pricing ---- */
.dc-pricing {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.dc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 750px;
    margin: 0 auto;
}

.dc-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #f1f5f9;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.dc-pricing-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.dc-pricing-featured {
    border-color: var(--color-primary);
    position: relative;
    background: linear-gradient(135deg, rgba(95, 163, 217, 0.03), rgba(95, 163, 217, 0.01));
}

.dc-featured-label {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.dc-pricing-head h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.375rem;
}

.dc-pricing-head p {
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.dc-pricing-body {
    margin-bottom: 1.5rem;
}

.dc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.dc-price-row:last-child {
    border-bottom: none;
}

.dc-price-row span {
    font-size: 0.875rem;
    color: #64748b;
}

.dc-price-row strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.dc-price-row strong small {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}

.dc-pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

/* ---- Why ---- */
.dc-why {
    padding: 5rem 0;
    background: white;
}

.dc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dc-why-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.dc-why-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.dc-why-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(95, 163, 217, 0.12), rgba(228, 126, 26, 0.06));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dc-why-icon i {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.dc-why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.dc-why-card p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #64748b;
}

/* ---- Eco-Friendly Process ---- */
.dc-eco {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.dc-eco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dc-eco-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.dc-eco-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: #86efac;
}

.dc-eco-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dc-eco-icon i {
    width: 24px;
    height: 24px;
}

.dc-eco-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
}

.dc-eco-green i { color: #16a34a; }

.dc-eco-blue {
    background: linear-gradient(135deg, rgba(95, 163, 217, 0.12), rgba(95, 163, 217, 0.04));
}

.dc-eco-blue i { color: var(--color-primary); }

.dc-eco-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.04));
}

.dc-eco-purple i { color: #7c3aed; }

.dc-eco-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(20, 184, 166, 0.04));
}

.dc-eco-teal i { color: #0d9488; }

.dc-eco-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.dc-eco-chemical {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.dc-eco-body p {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.dc-eco-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #15803d;
}

.dc-eco-badge-tag i {
    width: 13px;
    height: 13px;
}

.dc-eco-cert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.02));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
}

.dc-eco-cert > i {
    width: 28px;
    height: 28px;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}

.dc-eco-cert strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.375rem;
}

.dc-eco-cert p {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* ---- Comparison Table ---- */
.dc-compare {
    padding: 5rem 0;
    background: white;
}

.dc-compare-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.dc-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.dc-compare-table thead tr {
    background: #0f172a;
}

.dc-compare-table th {
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    text-align: left;
    white-space: nowrap;
}

.dc-compare-table th.dc-compare-them {
    color: rgba(255, 255, 255, 0.6);
}

.dc-compare-table th.dc-compare-us {
    background: var(--color-primary);
    color: white;
}

.dc-compare-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    color: #334155;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.dc-compare-table td i {
    width: 16px;
    height: 16px;
    color: #94a3b8;
    vertical-align: middle;
    margin-right: 0.375rem;
}

.dc-compare-table tbody tr:hover {
    background: rgba(95, 163, 217, 0.03);
}

.dc-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.dc-compare-table td.dc-compare-them {
    color: #94a3b8;
    background: rgba(241, 245, 249, 0.5);
}

.dc-compare-table td.dc-compare-us {
    background: rgba(95, 163, 217, 0.04);
    color: #0f172a;
    font-weight: 500;
}

.dc-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #ef4444;
    margin-right: 0.5rem;
}

.dc-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #16a34a;
    margin-right: 0.5rem;
}

/* ---- Reviews ---- */
.dc-reviews {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.dc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dc-review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.dc-review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.dc-review-stars {
    font-size: 1.125rem;
    color: #f59e0b;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.dc-review-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 1rem;
    font-style: italic;
}

.dc-reviewer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dc-reviewer strong {
    font-size: 0.875rem;
    color: #0f172a;
}

.dc-reviewer span {
    font-size: 0.75rem;
    color: #94a3b8;
}

.dc-reviewer span::before {
    content: '· ';
}

/* ---- Areas ---- */
.dc-areas {
    padding: 5rem 0;
    background: white;
}

.dc-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.dc-area-zone {
    background: white;
    border-radius: 14px;
    padding: 1.25rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.dc-area-zone:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: var(--color-primary);
}

.dc-area-zone h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.dc-area-zone h4 i {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

.dc-zone-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.dc-zone-pills span {
    padding: 0.1875rem 0.5rem;
    background: white;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748b;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.dc-zone-pills span:hover {
    background: rgba(95, 163, 217, 0.08);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.dc-zone-pills span.featured {
    background: rgba(95, 163, 217, 0.08);
    color: var(--color-primary);
    border-color: rgba(95, 163, 217, 0.2);
    font-weight: 600;
}

/* ---- FAQ ---- */
.dc-faq {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.dc-faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.dc-faq-item {
    background: white;
    border-radius: 14px;
    margin-bottom: 0.75rem;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.dc-faq-item[open] {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(95, 163, 217, 0.1);
}

.dc-faq-item summary {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.dc-faq-item summary::-webkit-details-marker {
    display: none;
}

.dc-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.dc-faq-item[open] summary::after {
    content: '−';
    color: var(--color-primary);
}

.dc-faq-item[open] summary {
    color: var(--color-primary);
}

.dc-faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #64748b;
}

/* ---- App CTA ---- */
.dc-app-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(95, 163, 217, 0.9) 100%);
}

.dc-app-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.dc-app-cta-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.dc-app-cta-text p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dc-app-cta .dc-app-badges {
    margin-bottom: 1.5rem;
}

.dc-app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.dc-app-features span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.dc-app-features span i {
    width: 16px;
    height: 16px;
    color: #34d399;
}

.dc-app-cta-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dc-app-cta-img img {
    max-width: 480px;
    /* Increased from 350px to fit better */
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

/* ---- Other Services ---- */
.dc-other-services {
    padding: 4rem 0;
    background: white;
}

.dc-services-row {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.dc-services-row::-webkit-scrollbar {
    display: none;
}

.dc-service-link {
    flex: 0 0 320px;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s;
    background: white;
    display: flex;
    flex-direction: column;
}

.dc-service-link:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.dc-service-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.dc-service-link span {
    display: block;
    padding: 1.25rem 1rem 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0f172a;
}

.dc-service-link p {
    font-size: 0.95rem;
    color: #475569;
    padding: 0 1rem 1rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    /* Pushes the price to the bottom if cards vary in height */
}

.dc-service-link small {
    display: block;
    padding-bottom: 1.25rem;
    font-size: 1rem;
    color: #e47e1a;
    font-weight: 700;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .dc-hero {
        padding: 3rem 0 2rem;
    }

    .dc-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dc-hero-content h1 {
        font-size: 1.875rem;
    }

    .dc-hero-desc {
        font-size: 0.9375rem;
    }

    .dc-hero-visual {
        order: -1;
    }

    .dc-float-card {
        display: flex;
        transform: scale(0.85);
        padding: 0.625rem 0.875rem;
    }

    .dc-float-1 {
        bottom: 5%;
        left: -10px;
    }

    .dc-float-2 {
        top: 50%;
        right: -10px;
    }

    .dc-hero-price {
        flex-direction: row;
        gap: 1rem;
        padding: 0.875rem 1rem;
    }

    .dc-price-divider {
        width: 1px;
        height: 30px;
    }

    .dc-hero-actions {
        flex-direction: column;
    }

    .dc-app-badges {
        justify-content: center;
    }

    .dc-hero-tags {
        justify-content: flex-start;
    }

    .dc-trust-items {
        justify-content: center;
        gap: 1.25rem;
    }

    .dc-trust-item {
        flex: 0 0 calc(33% - 1rem);
    }

    .dc-trust-item strong {
        font-size: 1.25rem;
    }

    .dc-section-head h2 {
        font-size: 1.5rem;
    }

    .dc-timeline::before {
        left: 18px;
    }

    .dc-timeline-item {
        padding-left: 52px;
    }

    .dc-timeline-num {
        left: 3px;
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .dc-timeline-card {
        grid-template-columns: 1fr;
    }

    .dc-timeline-img {
        height: 200px;
        overflow: hidden;
    }

    .dc-timeline-img img {
        object-position: top center;
    }

    .dc-fabrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .dc-fabric-card {
        padding: 1.25rem 1rem;
    }

    .dc-pricing-grid {
        grid-template-columns: 1fr;
    }

    .dc-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .dc-why-card {
        padding: 1.25rem 1rem;
    }

    .dc-reviews-grid {
        grid-template-columns: 1fr;
    }

    .dc-eco-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dc-eco-card {
        padding: 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .dc-eco-cert {
        flex-direction: column;
        padding: 1.25rem;
        text-align: center;
    }

    .dc-eco-cert > i {
        margin: 0 auto;
    }

    .dc-compare-table-wrap {
        margin: 0 -1rem;
        border-radius: 12px;
    }

    .dc-compare-table th,
    .dc-compare-table td {
        padding: 0.625rem 0.75rem;
        font-size: 0.75rem;
    }

    .dc-areas-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .dc-app-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dc-app-cta .dc-app-badges {
        justify-content: center;
    }

    .dc-app-features {
        justify-content: center;
    }

    .dc-app-cta-text h2 {
        font-size: 1.75rem;
    }

    .dc-services-row {
        gap: 0.75rem;
    }

    .dc-service-link {
        flex: 0 0 180px;
    }

    .dc-service-link img {
        height: 130px;
    }

    .dc-hero-store-badges {
        justify-content: center;
    }

    .dc-app-v2-centered-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .dc-app-v2-header h2 {
        font-size: 1.75rem !important;
    }

    .dc-app-v2-center-img img {
        height: 380px;
    }

    .dc-app-v2-perks-list {
        align-items: flex-start;
    }

    .dc-app-v2-badges-vert {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .dc-hero-grid {
        grid-template-columns: 1fr;
    }

    .dc-hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .dc-hero-content {
        text-align: center;
    }

    .dc-hero-content h1 {
        font-size: 2.25rem;
    }

    .dc-hero-tags {
        justify-content: center;
    }

    .dc-hero-price {
        margin: 0 auto 1.5rem;
    }

    .dc-hero-actions {
        justify-content: center;
    }

    .dc-app-badges {
        justify-content: center;
    }

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

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

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

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

    .dc-timeline-card {
        grid-template-columns: 160px 1fr;
    }
}

/* ---- Hero Offer Badges ---- */
.dc-hero-offers {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.dc-offer-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    border-radius: 12px;
    border: 1.5px solid;
    flex: 1;
    min-width: 200px;
}

.dc-offer-badge i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.dc-offer-badge strong {
    display: block;
    font-size: 0.875rem;
    line-height: 1.2;
}

.dc-offer-badge small {
    display: block;
    font-size: 0.6875rem;
    color: #64748b;
    margin-top: 1px;
}

.dc-offer-cashback {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.08), rgba(52, 211, 153, 0.02));
    border-color: rgba(52, 211, 153, 0.3);
}

.dc-offer-cashback i {
    color: #10b981;
}

.dc-offer-cashback strong {
    color: #065f46;
}

.dc-offer-first {
    background: linear-gradient(135deg, rgba(228, 126, 26, 0.08), rgba(228, 126, 26, 0.02));
    border-color: rgba(228, 126, 26, 0.3);
}

.dc-offer-first i {
    color: #e47e1a;
}

.dc-offer-first strong {
    color: #92400e;
}

/* ---- Area Pages Links Grid ---- */
.dc-area-pages {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #f1f5f9;
}

.dc-area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.dc-area-links a {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.dc-area-links a:hover {
    background: rgba(95, 163, 217, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

/* ---- FAQ Section ---- */
.dc-faq {
    padding: 4rem 0;
    background: #f8fafc;
}

.dc-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.dc-faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dc-faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dc-faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(95, 163, 217, 0.1);
}

.dc-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s;
}

.dc-faq-item:hover .dc-faq-question {
    color: var(--color-primary);
}

.dc-faq-question i {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.dc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.dc-faq-answer p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .dc-hero-offers {
        flex-direction: column;
        gap: 0.5rem;
    }

    .dc-offer-badge {
        min-width: unset;
    }

    .dc-area-links {
        gap: 0.375rem;
    }

    .dc-area-links a {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }

    .dc-faq-grid {
        grid-template-columns: 1fr;
    }
}


/* ---- Horizontal Scroll for Other Services ---- */
.other-services-scroll {
    overflow-x: auto;
    padding: 1rem 0 2.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #f1f5f9;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scroll-behavior: smooth;
}

.other-services-scroll:active {
    cursor: grabbing;
}

.other-services-scroll::-webkit-scrollbar {
    height: 6px;
}

.other-services-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.other-services-scroll::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

/* Ensure the grid becomes a row for horizontal scroll */
.other-services-scroll .services-grid {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
    width: max-content;
}

.other-services-scroll .service-card-other {
    flex: 0 0 320px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .other-services-scroll .service-card-other {
        flex: 0 0 280px;
    }
}

/* ---- Pricing page full rate card (dc-premium layout) ---- */
.pricing-rates-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%);
}

.dc-premium .pricing-rates-section .tab-btn.active {
    background: linear-gradient(135deg, var(--color-primary, #5fa3d9), var(--color-cta, #e47e1a));
    border-color: transparent;
    color: #fff;
}

.dc-premium .pricing-rates-section .tab-btn.active i {
    color: #fff;
}

.dc-premium .pricing-rates-section .category-tab.active {
    background: var(--dc-primary-dark, #1e3a5f);
    color: #fff;
}

.dc-premium .pricing-rates-section .category-table {
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
}

.dc-premium .pricing-rates-section .table-header {
    background: linear-gradient(90deg, #f1f5f9 0%, #ffffff 100%);
}

/* ----- Areas we serve (premium / dc-premium.aws-page) ----- */
.aws-page .aws-directory {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%);
}

.aws-page .aws-search-wrap {
    max-width: 420px;
    margin: 0 auto 1.75rem;
}

.aws-page .aws-search-inner {
    position: relative;
}

.aws-page .aws-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    color: #94a3b8;
    pointer-events: none;
}

.aws-page .aws-search-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.aws-page .aws-search-inner input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.aws-page .aws-search-inner input:focus {
    outline: none;
    border-color: var(--color-cta, #ea580c);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

.aws-page .aws-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
}

.aws-page .aws-area-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    padding: 0.5rem 0.65rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.aws-page .aws-area-link:hover {
    border-color: var(--color-cta, #ea580c);
    color: var(--color-cta, #ea580c);
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.12);
}

.aws-page .aws-cta-banner {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    text-align: center;
}

.aws-page .aws-cta-banner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.aws-page .aws-cta-banner p {
    opacity: 0.88;
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.aws-page .aws-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.aws-page .aws-cta-actions .dc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #0f172a;
    border: none;
}

.aws-page .aws-cta-actions .dc-btn-primary:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.aws-page .aws-cta-actions .dc-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: transparent;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.aws-page .aws-cta-actions .dc-btn-outline svg {
    width: 1.125rem;
    height: 1.125rem;
}

.aws-page .aws-cta-actions .dc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}
