/* ===================================================
   Choice Dubai Page Widgets — CSS
   Uses site theme colors, NOT the HTML reference colors.
   Site palette: #01403E (green), #FF8A3D (orange),
   #1a4234 (dark green), SF Pro Display font.
   =================================================== */

:root {
    --cfd-green-dark: #01403E;
    --cfd-green-mid: #1a4234;
    --cfd-green-light: #2d6b4f;
    --cfd-gold: #ff8a3d;
    --cfd-gold-light: #E8C97A;
    --cfd-orange: #FF8A3D;
    --cfd-orange-hover: #e67a35;
    --cfd-cream: #FAF8F4;
    --cfd-white: #FFFFFF;
    --cfd-text-dark: #1d1d1f;
    --cfd-text-mid: #4A4A4A;
    --cfd-text-light: #888;
    --cfd-border: #E8E0D0;
}

/* ── HERO BANNER ── */
.cfd-hero {
    background: linear-gradient(135deg, var(--cfd-green-dark) 0%, var(--cfd-green-mid) 50%, #0a2a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 60px 70px;
    min-height: 420px;
}

.cfd-hero.cfd-hero-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cfd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 165, 90, 0.12) 0%, transparent 65%);
}

.cfd-hero-arch {
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    width: 3px;
    height: 110%;
    background: linear-gradient(to bottom, transparent, rgba(201, 165, 90, 0.3), transparent);
}

.cfd-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cfd-hero-centered .cfd-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cfd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 165, 90, 0.15);
    border: 1px solid rgba(201, 165, 90, 0.35);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.cfd-hero-badge span {
    font-size: 11px;
    color: var(--cfd-gold-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.cfd-hero-badge::before {
    content: '📍';
    font-size: 13px;
}

.cfd-hero h1 {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 18px;
}

.cfd-hero h1 em {
    color: var(--cfd-gold-light);
    font-style: italic;
}

.cfd-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 32px;
}

.cfd-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.cfd-btn-primary {
    background: var(--cfd-orange);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 6px 24px rgba(255, 138, 61, 0.4);
    display: inline-block;
}

.cfd-btn-primary:hover {
    background: var(--cfd-orange-hover);
    transform: translateY(-1px);
    color: #fff;
}

.cfd-btn-outline {
    background: transparent;
    color: var(--cfd-gold-light);
    border: 1.5px solid var(--cfd-gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.cfd-btn-outline:hover {
    background: rgba(201, 165, 90, 0.1);
    color: var(--cfd-gold-light);
}

.cfd-hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: center;
}

.cfd-hstat-num {
    font-size: 26px;
    color: var(--cfd-gold-light);
    font-weight: 700;
    line-height: 1;
}

.cfd-hstat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
}

@keyframes cfdFloat {

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

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

/* ── DELIVERY STRIP ── */
.cfd-dstrip {
    background: #012b2a;
    padding: 16px 60px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    border-top: 2px solid var(--cfd-orange);
}

.cfd-dstrip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.cfd-dstrip-item span {
    font-size: 18px;
    color: var(--cfd-orange);
}

/* ── SECTION BASE ── */
.cfd-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.cfd-sec-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cfd-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.cfd-sec-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cfd-text-dark);
}

.cfd-sec-title em {
    color: var(--cfd-green-mid);
    font-style: italic;
}

.cfd-sec-sub {
    font-size: 15px;
    color: var(--cfd-text-mid);
    margin-top: 12px;
    line-height: 1.6;
}

/* ── OCCASIONS ── */
.cfd-occasions {
    background: #fff;
    padding: 70px 60px;
}

.cfd-occ-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.cfd-occ-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s;
}

.cfd-occ-card:hover {
    transform: scale(1.01);
    z-index: 2;
}

.cfd-occ-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.cfd-occ-card:hover .cfd-occ-bg {
    transform: scale(1.06);
}

.cfd-occ-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 64, 62, 0.8) 0%, rgba(1, 64, 62, 0.1) 55%, transparent 100%);
}

.cfd-occ-content {
    position: relative;
    z-index: 2;
    padding: 28px 32px;
    width: 100%;
}

.cfd-occ-tag {
    display: inline-block;
    background: var(--cfd-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.cfd-occ-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 4px;
}

.cfd-occ-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.cfd-occ-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cfd-orange);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.cfd-occ-btn:hover {
    background: var(--cfd-orange-hover);
}

.cfd-occ-price {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.cfd-card-person {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 55%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 120px;
    opacity: 0.25;
    pointer-events: none;
}

/* ── FLOWER SIZES ── */
.cfd-sizes {
    background: var(--cfd-cream);
    padding: 70px 60px;
}

.cfd-sizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cfd-size-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 20px 24px;
    text-align: center;
    border: 1.5px solid var(--cfd-border);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    display: block;
}

.cfd-size-card:hover {
    border-color: var(--cfd-green-mid);
    box-shadow: 0 12px 40px rgba(1, 64, 62, 0.12);
    transform: translateY(-4px);
    color: inherit;
}

.cfd-size-card.cfd-featured {
    border-color: #ff8a3d;
    background: linear-gradient(160deg, #fff 70%, rgba(201, 165, 90, 0.06));
}

.cfd-size-card.cfd-featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--cfd-gold);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 50px;
}

.cfd-size-flower {
    font-size: 80px;
    margin-bottom: 16px;
    display: block;
    animation: cfdFloat 5s ease-in-out infinite;
}

.cfd-size-flower-img {
    /* width: 80px; */
    height: 80px;
    margin: 0 auto 0px;
    display: block;
    object-fit: contain;
    animation: cfdFloat 5s ease-in-out infinite;
}

.cfd-size-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--cfd-green-dark);
}

.cfd-size-label {
    font-size: 13px;
    color: var(--cfd-text-mid);
    /* margin-bottom: 12px; */
}

.cfd-size-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--cfd-orange);
    margin-bottom: 5px;
}

.cfd-size-btn {
    display: inline-block;
    background: #ff8a3d;
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s;
}

.cfd-size-btn:hover {
    background: var(--cfd-green-light);
}

.cfd-size-card.cfd-featured .cfd-size-btn {
    background: var(--cfd-orange);
}

.cfd-size-card.cfd-featured .cfd-size-btn:hover {
    background: var(--cfd-orange-hover);
}

/* ── WHY US ── */
.cfd-whyus {
    background: #fff;
    padding: 70px 60px;
}

.cfd-whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cfd-why-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    border: 1.5px solid var(--cfd-border);
    transition: all 0.3s;
}

.cfd-why-card:hover {
    border-color: var(--cfd-gold);
    box-shadow: 0 8px 32px rgba(201, 165, 90, 0.1);
}

.cfd-why-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.cfd-why-icon-img {
    /* width: 48px; */
    height: 48px;
    margin: 0 auto 16px;
    display: block;
    object-fit: contain;
}

.cfd-why-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--cfd-green-dark);
    margin-bottom: 8px;
}

.cfd-why-text {
    font-size: 13px;
    color: var(--cfd-text-mid);
    line-height: 1.6;
}

/* ── AREAS (Apple-Inspired) ── */
.cfd-areas {
    background: #ffffff;
    padding: 80px 60px;
}

.cfd-areas .cfd-sec-title {
    color: #1d1d1f;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cfd-areas .cfd-sec-sub {
    color: #86868b;
    font-size: 17px;
    font-weight: 400;
}

.cfd-areas .cfd-sec-eyebrow {
    color: #FF8A3D;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* ── REVIEWS ── */
.cfd-reviews {
    background: var(--cfd-cream);
    padding: 70px 60px;
}

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

.cfd-review-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1.5px solid var(--cfd-border);
}

.cfd-review-stars {
    color: #F5A623;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.cfd-review-text {
    font-size: 14px;
    color: var(--cfd-text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.cfd-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cfd-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cfd-green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.cfd-review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--cfd-text-dark);
}

.cfd-review-loc {
    font-size: 12px;
    color: var(--cfd-text-light);
}

/* ── FAQ (Apple-Style Accordion) ── */
.cfd-faq {
    background: #fff;
    padding: 80px 60px;
}

.cfd-faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.cfd-faq-item {
    border-top: 1px solid #d2d2d7;
}

.cfd-faq-item:last-child {
    border-bottom: 1px solid #d2d2d7;
}

/* Question button */
.cfd-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 24px;
    outline: none;
}

.cfd-faq-q:focus-visible {
    outline: 2px solid var(--cfd-orange);
    outline-offset: 4px;
    border-radius: 4px;
}

.cfd-faq-q-text {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

/* +/− icon  */
.cfd-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #86868b;
    transition: color 0.3s ease;
}

.cfd-faq-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.cfd-faq-icon .cfd-icon-v {
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.25s ease;
    transform-origin: center;
}

.cfd-faq-open .cfd-faq-icon .cfd-icon-v {
    transform: rotate(90deg);
    opacity: 0;
}

.cfd-faq-open .cfd-faq-icon {
    color: var(--cfd-orange);
}

/* Answer (collapsed by default) */
.cfd-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cfd-faq-open .cfd-faq-a {
    max-height: 600px;
}

.cfd-faq-a-inner {
    padding: 0 0 26px 0;
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.65;
    max-width: 720px;
    letter-spacing: -0.003em;
}

/* Hover state — override theme button hover */
.cfd-faq-q:hover,
.cfd-faq-q:focus,
.cfd-faq-q:active {
    background: none !important;
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
}

.cfd-faq-q:hover .cfd-faq-q-text {
    color: var(--cfd-green-dark);
}

.cfd-faq-q:hover .cfd-faq-icon {
    color: var(--cfd-orange);
}

/* ── FOOTER CTA ── */
.cfd-fcta {
    background: #012b2a;
    padding: 70px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cfd-fcta::before {
    content: '🌹';
    position: absolute;
    right: 60px;
    font-size: 200px;
    opacity: 0.07;
    pointer-events: none;
    animation: cfdFloat 7s ease-in-out infinite;
}

.cfd-fcta-text h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cfd-fcta-text h2 em {
    color: var(--cfd-gold-light);
    font-style: italic;
}

.cfd-fcta-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    max-width: 400px;
    line-height: 1.6;
}

.cfd-fcta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.cfd-btn-lg {
    font-size: 15px !important;
    padding: 16px 36px !important;
}

.cfd-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.cfd-wa-btn:hover {
    background: #1AAD56;
    transform: translateY(-2px);
    color: #fff;
}

/* ── SEO TEXT ── */
.cfd-seo-section {
    padding: 50px 60px;
    background: var(--cfd-cream);
    border-top: 1px solid var(--cfd-border);
}

.cfd-seo-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--cfd-green-dark);
    margin-bottom: 14px;
}

.cfd-seo-content p {
    font-size: 14px;
    color: var(--cfd-text-mid);
    line-height: 1.85;
    max-width: 900px;
    margin-bottom: 10px;
}

.cfd-seo-content strong {
    color: var(--cfd-green-mid);
    font-weight: 500;
}

/* ── AREAS PILLS (Apple-Inspired) ── */
.cfd-areas-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 860px;
    margin: 0 auto;
}

.cfd-pill {
    background: #f5f5f7;
    border: 1px solid #e8e8ed;
    color: #1d1d1f;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: default;
    letter-spacing: -0.01em;
}

.cfd-pill:hover {
    /* background: #FF8A3D;
    border-color: #FF8A3D;
    color: #fff; */
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 138, 61, 0.3);
}

.cfd-areas .cfd-btn-primary {
    background: #FF8A3D;
    box-shadow: 0 4px 20px rgba(255, 138, 61, 0.35);
}

.cfd-areas .cfd-btn-primary:hover {
    background: #e67a35;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 138, 61, 0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cfd-hero {
        grid-template-columns: 1fr;
        padding: 50px 30px 40px;
    }

    .cfd-hero-visual {
        display: none;
    }

    .cfd-occ-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .cfd-faq-q-text {
        font-size: 15px;
    }

    .cfd-faq-a-inner {
        font-size: 14px;
    }

    .cfd-fcta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cfd-fcta-actions {
        align-items: center;
    }

    .cfd-dstrip {
        gap: 20px;
        padding: 14px 20px;
    }

    .cfd-occasions,
    .cfd-sizes,
    .cfd-whyus,
    .cfd-reviews,
    .cfd-faq,
    .cfd-areas {
        padding: 50px 20px;
    }

    .cfd-fcta,
    .cfd-seo-section {
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .cfd-sizes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cfd-whyus-grid {
        grid-template-columns: 1fr;
    }

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

    .cfd-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
}