/* ======================================================
   THE INDIAN WEDDING CLUB - COMPONENTS CSS
   All UI component styles
   ====================================================== */

/* ======================================================
   GOLD DIVIDER (Section Heading decorative line)
   ====================================================== */
.gold-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.gold-divider-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.5;
}

.gold-divider-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(200, 155, 60, 0.15);
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero-section {
    position: relative;
    min-height: 80vh;
    max-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 0;
}

.hero-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('../images/hero/hero-poster.jpg'), linear-gradient(135deg, #3a3429 0%, #5c4a32 50%, #2a251c 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(45, 42, 38, 0.55) 0%,
            rgba(45, 42, 38, 0.65) 35%,
            rgba(45, 42, 38, 0.75) 100%);
    z-index: 1;
}

.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: var(--white) !important;
    padding: 30px 20px 40px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border: 1px solid rgba(200, 155, 60, 0.5);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white) !important;
    margin-bottom: 28px;
}

.hero-label i {
    color: var(--primary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white) !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7) !important;
}

.hero-title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    line-height: 1.85;
    max-width: 620px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-dot {
    width: 3px;
    height: 7px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

.fade-in-up-1 {
    animation: fadeInUp 1s ease 0.2s both;
}

.fade-in-up-2 {
    animation: fadeInUp 1s ease 0.5s both;
}

.fade-in-up-3 {
    animation: fadeInUp 1s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ripple-btn {
    position: relative;
    overflow: hidden;
}

/* ======================================================
   WEDDING STATS STRIP (Below hero)
   ====================================================== */
.wedding-stats-strip {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.stats-strip-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.stats-strip-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.stat-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    padding: 8px 10px;
}

.stat-strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.1) 0%, rgba(232, 201, 106, 0.2) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(200, 155, 60, 0.2);
    transition: var(--transition);
}

.stat-strip-item:hover .stat-strip-icon {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: scale(1.05);
}

.stat-strip-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.stat-strip-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 500;
}

.stat-strip-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .stats-strip-inner {
        flex-wrap: wrap;
        padding: 24px;
    }

    .stat-strip-item {
        min-width: 45%;
        padding: 14px 10px;
    }

    .stat-strip-divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .wedding-stats-strip {
        margin-top: 15px;
    }

    .stat-strip-item {
        min-width: 100%;
        gap: 12px;
    }

    .stat-strip-number {
        font-size: 1.6rem;
    }

    .stat-strip-icon {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
}

/* ======================================================
   DESTINATIONS HORIZONTAL CAROUSEL + DOTS
   ====================================================== */

.section-heading-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
    min-height: 160px;
}

.view-all-inline {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 0;
    border-bottom: 1.5px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    z-index: 2;
}

.view-all-inline i {
    font-size: 0.78rem;
    transition: transform 0.3s ease;
}

.view-all-inline:hover {
    color: var(--dark);
    border-bottom-color: var(--primary);
}

.view-all-inline:hover i {
    transform: translateX(4px);
}

.section-heading-centered {
    text-align: center;
    margin: 0 auto;
    max-width: 820px;
    padding: 0 160px;
    margin-bottom: 0;
}

.real-weddings .section-heading-centered {
    padding: 0 180px;
    max-width: 920px;
}

.real-weddings .section-title {
    white-space: nowrap;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

@media (max-width: 1199px) {
    .section-heading-centered {
        padding: 0 130px;
    }

    .real-weddings .section-heading-centered {
        padding: 0 150px;
    }

    .real-weddings .section-title {
        white-space: normal;
    }
}

@media (max-width: 991px) {
    .section-heading-wrap {
        flex-direction: column;
        min-height: auto;
        gap: 18px;
        align-items: center;
        justify-content: flex-start;
    }

    .view-all-inline {
        position: static;
        transform: none;
        order: 2;
        font-size: 0.78rem;
    }

    .section-heading-centered {
        padding: 0;
        order: 1;
    }

    .real-weddings .section-heading-centered {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .section-heading-wrap {
        margin-bottom: 30px;
    }
}

.destinations-horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (4 * 16px)) / 5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px 24px;
    gap: 16px;
    scroll-behavior: smooth;
}

.destinations-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.scroll-item {
    scroll-snap-align: start;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot:hover {
    background: rgba(200, 155, 60, 0.5);
}

.carousel-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--gold-gradient);
    box-shadow: 0 2px 8px rgba(200, 155, 60, 0.3);
}

@media (max-width: 1199px) {
    .destinations-horizontal-scroll {
        grid-auto-columns: calc((100% - (3 * 16px)) / 4);
    }
}

@media (max-width: 991px) {
    .destinations-horizontal-scroll {
        grid-auto-columns: calc((100% - (2 * 16px)) / 3);
    }
}

@media (max-width: 767px) {
    .destinations-horizontal-scroll {
        grid-auto-columns: calc((100% - 16px) / 2);
    }
}

@media (max-width: 575px) {
    .destinations-horizontal-scroll {
        grid-auto-columns: 100%;
    }
}

/* Destination Card hover extras (inside body) */
.destination-card .card-hover-info {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    transition: var(--transition);
    z-index: 4;
    background: var(--gold-gradient);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.destination-card:hover .card-hover-info {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.destination-card .card-price {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 14px;
}

.destination-card .card-price span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ======================================================
   FEATURE CARD + VENDOR CARD (Extra styles)
   ====================================================== */
.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 24px;
    border: none;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 155, 60, 0.15);
}

.feature-card:hover::before {
    width: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-desc {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* Vendor Cards */
.vendor-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vendor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 155, 60, 0.25);
}

.vendor-card-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.vendor-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vendor-card:hover .vendor-card-img {
    transform: scale(1.08);
}

.vendor-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--white);
    color: var(--dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    z-index: 2;
}

.vendor-rating {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.vendor-rating i {
    font-size: 0.65rem;
    color: var(--dark);
}

.vendor-card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vendor-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.vendor-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.vendor-card-title a:hover {
    color: var(--primary);
}

.vendor-card-loc {
    font-size: 0.78rem;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vendor-card-loc i {
    color: var(--primary);
}

.vendor-card-desc {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vendor-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.vendor-price-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 2px;
}

.vendor-price-val {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-display);
}

.btn-vendor-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-vendor-view:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateX(2px);
    box-shadow: var(--shadow-gold);
}

/* ======================================================
   BLOG CARD
   ====================================================== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 155, 60, 0.25);
}

.blog-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-cat {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 2;
}

.blog-card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.72rem;
    color: var(--text);
    margin-bottom: 10px;
}

.blog-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-title a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.blog-author-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
}

.blog-read-link {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.blog-read-link:hover {
    color: var(--dark);
    transform: translateX(3px);
}

/* ======================================================
   GALLERY GRID (LightGallery)
   ====================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    box-shadow: 0 3px 15px rgba(45, 42, 38, 0.08);
    border: 2px solid rgba(200, 155, 60, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.75) 0%, rgba(200, 155, 60, 0.15) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 10px;
    transform: scale(0.7);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
}

.gallery-caption {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-row: span 2;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-row: span 1;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
}

@media (max-width: 479px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}

/* ======================================================
   SWIPER - TESTIMONIALS CUSTOM
   ====================================================== */
.swiper-testimonials {
    padding: 10px 4px 70px;
}

.swiper-testimonials .swiper-pagination-bullet {
    background: var(--border-light);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: var(--transition);
}

.swiper-testimonials .swiper-pagination-bullet-active {
    background: var(--gold-gradient);
    width: 24px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(200, 155, 60, 0.3);
}

.swiper-btn-custom {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--dark);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.swiper-btn-custom:hover {
    background: var(--gold-gradient);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.swiper-btn-prev.swiper-button-disabled,
.swiper-btn-next.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonials-section {
    padding: 64px 0;
}

/* ======================================================
   CTA SECTION EXTRAS
   ====================================================== */
.cta-section {
    padding: 64px 0;
    background: linear-gradient(135deg, rgba(45, 42, 38, 0.96) 0%, rgba(45, 42, 38, 0.92) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::before {
    top: -200px;
    left: -150px;
}

.cta-section::after {
    bottom: -200px;
    right: -150px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 50px 30px;
    border: 1px solid rgba(200, 155, 60, 0.25);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.cta-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid rgba(200, 155, 60, 0.4);
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    background: rgba(200, 155, 60, 0.08);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 500;
}

.cta-title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px 28px;
    flex-wrap: wrap;
}

.cta-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-feature i {
    color: var(--primary);
}

/* ======================================================
   WHY CHOOSE US STRIP (5 cards below stats)
   ====================================================== */
.why-choose-us-strip {
    padding: 52px 0 56px;
}

.why-choose-us-strip .section-heading {
    margin-bottom: 32px;
}

.wcu-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary);
    border-radius: 20px;
    padding: 36px 24px 30px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(45, 42, 38, 0.04);
}

.wcu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(45, 42, 38, 0.10);
    border-color: rgba(200, 155, 60, 0.3);
    border-left-color: var(--primary);
}

.wcu-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.85) 0%, rgba(232, 201, 106, 0.95) 100%);
    border: none;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.18);
}

.wcu-card:hover .wcu-icon {
    transform: scale(1.06);
    box-shadow: 0 8px 25px rgba(200, 155, 60, 0.30);
    background: var(--gold-gradient);
}

.wcu-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.wcu-desc {
    font-size: 0.8rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1199px) {
    .wcu-card {
        padding: 28px 18px 24px 22px;
    }

    .wcu-icon {
        width: 56px;
        height: 56px;
        font-size: 1.15rem;
        margin-bottom: 14px;
    }
}

@media (max-width: 991px) {
    .why-choose-us-strip {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .wcu-card {
        padding: 28px 20px 24px 24px;
    }
}

/* ======================================================
   OUR SIGNATURE WEDDING EXPERIENCES
   ====================================================== */
.signature-experiences {
    padding: 52px 0 56px;
}

.signature-experiences .section-heading {
    margin-bottom: 32px;
}

.exp-card {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}

.exp-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 4px 20px rgba(45, 42, 38, 0.10);
    transition: var(--transition);
    border: 2px solid rgba(200, 155, 60, 0.12);
}

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.15) 0%, transparent 50%);
    transition: var(--transition);
    pointer-events: none;
}

.exp-card:hover .exp-img-wrap {
    box-shadow: 0 10px 40px rgba(45, 42, 38, 0.18);
    border-color: rgba(200, 155, 60, 0.35);
    transform: translateY(-6px);
}

.exp-card:hover .exp-img {
    transform: scale(1.08);
}

.exp-card:hover .exp-overlay {
    background: linear-gradient(to top, rgba(45, 42, 38, 0.35) 0%, rgba(200, 155, 60, 0.10) 100%);
}

.exp-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--dark);
    margin-top: 16px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.exp-card:hover .exp-title {
    color: var(--primary);
}

@media (max-width: 1199px) {
    .exp-img-wrap {
        aspect-ratio: 16/11;
    }
}

/* ======================================================
   REAL WEDDINGS, REAL STORIES
   ====================================================== */
.real-weddings {
    padding: 52px 0 56px;
}

.real-weddings .section-heading {
    margin-bottom: 32px;
}

.rw-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 4px 20px rgba(45, 42, 38, 0.08);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid rgba(200, 155, 60, 0.10);
}

.rw-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.5) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rw-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transform: scale(0.8);
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.rw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45, 42, 38, 0.18);
    border-color: rgba(200, 155, 60, 0.3);
}

.rw-card:hover .rw-img {
    transform: scale(1.08);
}

.rw-card:hover .rw-overlay {
    opacity: 1;
}

.rw-card:hover .rw-icon {
    transform: scale(1);
    opacity: 1;
}

.btn-rw-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 28px;
    background: transparent;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 40px;
    border: 1.5px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-rw-more:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .rw-card {
        aspect-ratio: 16/11;
    }
}

/* ======================================================
   YOUR WEDDING JOURNEY - 5 STEPS
   ====================================================== */
.wedding-journey {
    padding: 52px 0 56px;
    overflow: hidden;
}

.wedding-journey .section-heading {
    margin-bottom: 32px;
}

.journey-wrapper {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    padding: 20px 0;
}

.journey-line {
    position: absolute;
    top: 57px;
    left: 10%;
    right: 10%;
    height: 2px;
    z-index: 1;
}

.journey-line-bg {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to right,
            var(--border-light) 0,
            var(--border-light) 8px,
            transparent 8px,
            transparent 14px);
    border-radius: 2px;
}

.journey-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 2s ease;
}

.journey-wrapper.in-view .journey-line-progress {
    width: 100%;
}

.journey-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.journey-item {
    flex: 0 0 18%;
    max-width: 18%;
    text-align: center;
}

.journey-step {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
}

.journey-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--gold-gradient);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(200, 155, 60, 0.35);
    z-index: 2;
    border: 2px solid var(--white);
}

.journey-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(200, 155, 60, 0.12);
}

.journey-item:hover .journey-icon {
    background: var(--gold-gradient);
    color: var(--dark);
    border-color: var(--primary);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(200, 155, 60, 0.30);
}

.journey-title {
    font-family: var(--font-display);
    font-size: 0.92rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.journey-item:hover .journey-title {
    color: var(--primary);
}

.journey-desc {
    font-size: 0.72rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .journey-wrapper {
        padding: 10px 0 20px;
    }

    .journey-line {
        display: none;
    }

    .journey-row {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        max-width: 340px;
        margin: 0 auto;
    }

    .journey-item {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .journey-step {
        width: 64px;
        height: 64px;
        margin: 0 auto 14px;
    }

    .journey-icon {
        font-size: 1.2rem;
    }
}

/* ======================================================
   EXQUISITE DESTINATIONS - 6 SMALL CARDS
   ====================================================== */
.exquisite-destinations {
    padding: 52px 0 56px;
}

.exquisite-destinations .section-heading {
    margin-bottom: 32px;
}

.dest-small-card {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}

.dest-small-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 3px 15px rgba(45, 42, 38, 0.10);
    transition: var(--transition);
    border: 2px solid rgba(200, 155, 60, 0.10);
}

.dest-small-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-small-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.45) 0%, transparent 55%);
    transition: var(--transition);
    pointer-events: none;
}

.dest-small-card:hover .dest-small-img-wrap {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 42, 38, 0.18);
    border-color: rgba(200, 155, 60, 0.35);
}

.dest-small-card:hover .dest-small-img {
    transform: scale(1.08);
}

.dest-small-card:hover .dest-small-overlay {
    background: linear-gradient(to top, rgba(45, 42, 38, 0.60) 0%, rgba(200, 155, 60, 0.15) 100%);
}

.dest-small-title {
    position: relative;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--white);
    margin-top: -36px;
    z-index: 2;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.2px;
    transition: var(--transition-fast);
}

.dest-small-card:hover .dest-small-title {
    color: var(--primary);
    text-shadow: 0 1px 6px rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

/* ======================================================
   WORDS FROM OUR COUPLES - TESTIMONIALS (Home)
   ====================================================== */
.couple-words {
    padding: 52px 0 56px;
}

.couple-words .section-heading {
    margin-bottom: 32px;
}

.cw-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 26px 24px;
    height: 100%;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.cw-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0.6);
    opacity: 0;
    transform-origin: center;
    transition: var(--transition);
}

.cw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45, 42, 38, 0.10);
    border-color: rgba(200, 155, 60, 0.20);
}

.cw-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.cw-quote {
    font-size: 1.6rem;
    color: var(--primary);
    opacity: 0.55;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.cw-card:hover .cw-quote {
    opacity: 0.9;
    transform: scale(1.1);
}

.cw-text {
    font-size: 0.8rem;
    color: var(--text);
    line-height: 1.75;
    margin: 0 0 20px;
    font-style: normal;
}

.cw-couple {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.cw-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(200, 155, 60, 0.2);
}

.cw-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cw-info {
    flex: 1;
    min-width: 0;
}

.cw-name {
    font-family: var(--font-display);
    font-size: 0.86rem;
    color: var(--dark);
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.btn-cw-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 28px;
    background: transparent;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 40px;
    border: 1.5px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-cw-more:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

@media (max-width: 991px) {

    .couple-words,
    .exquisite-destinations,
    .wedding-journey {
        padding: 40px 0 44px;
    }
}

/* ======================================================
   PACKAGE CARD
   ====================================================== */
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 155, 60, 0.25);
}

.package-card .pkg-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.package-card .pkg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .pkg-img {
    transform: scale(1.08);
}

.package-card .pkg-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.package-card .pkg-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-card .pkg-loc {
    font-size: 0.72rem;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-card .pkg-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.package-card .pkg-desc {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-card .pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.package-card .pkg-features li {
    font-size: 0.78rem;
    color: var(--text);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-card .pkg-features li i {
    color: var(--primary);
    font-size: 0.7rem;
}

.package-card .pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.package-card .pkg-price {
    font-size: 0.75rem;
    color: var(--text);
}

.package-card .pkg-price span {
    display: block;
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.package-card .pkg-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.package-card .pkg-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateX(2px);
    box-shadow: var(--shadow-gold);
}

/* ======================================================
   FAQ ACCORDION
   ====================================================== */
.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(200, 155, 60, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 18px 45px rgba(196, 151, 72, 0.08);
}

.faq-item.active,
.faq-item:hover {
    border-color: rgba(200, 155, 60, 0.35);
    box-shadow: 0 22px 55px rgba(196, 151, 72, 0.14);
}

.faq-question {
    width: 100%;
    padding: 20px 26px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.12);
    color: var(--primary);
    font-size: 0.95rem;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
    padding: 0 26px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 22px;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.85;
}

/* ======================================================
   CONTACT PAGE COMPONENTS
   ====================================================== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(200, 155, 60, 0.25);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.1) 0%, rgba(232, 201, 106, 0.2) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: scale(1.05);
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-info-text {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.contact-info-text a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.luxury-input,
.luxury-textarea,
.luxury-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--dark);
    transition: var(--transition);
    outline: none;
}

.luxury-textarea {
    min-height: 140px;
    resize: vertical;
}

.luxury-input:focus,
.luxury-textarea:focus,
.luxury-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.1);
    background: var(--white);
}

.luxury-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.alert-success {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.15) 100%);
    color: #145a32;
    border: 1px solid rgba(46, 204, 113, 0.3);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

/* ======================================================
   LUXURY GOLDEN PAGINATION
   ====================================================== */
.pagination {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination .page-item {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination .page-link {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border-light);
    background: var(--white);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 !important;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(45, 42, 38, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination .page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pagination .page-item.active .page-link,
.pagination .page-link.active {
    background: var(--gold-gradient);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px) scale(1.05);
    font-weight: 700;
}

@media (max-width: 575px) {
    .pagination {
        gap: 8px;
    }

    .pagination .page-link {
        width: 40px;
        height: 40px;
        font-size: 0.88rem;
    }
}

/* Destination + Gallery + Blog Pages same pagination inherit */
.luxury-pagination {
    margin-top: 20px;
}

/* ======================================================
   LUXURY CONTACT FORM
   ====================================================== */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-form-card:hover {
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary) !important;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.4px;
}

.form-control-luxury {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: var(--text);
    background: #fdfdfd;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    appearance: none;
    outline: none;
}

.form-control-luxury::placeholder {
    color: #a0a0a0;
}

.form-control-luxury:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15);
    background: var(--white);
}

select.form-control-luxury {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C89B3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

textarea.form-control-luxury {
    resize: vertical;
    min-height: 80px;
}

/* ======================================================
   BLOG PAGE OVERHAUL
   ====================================================== */
.blog-page-hero {
    position: relative;
    padding: 100px 0 120px;
    background: #fdfaf6;
    margin-bottom: -40px;
    overflow: hidden;
}

.blog-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: url('../images/hero/hero-poster.jpg') center/cover;
    border-radius: 140px 0 0 140px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    border-left: 8px solid var(--primary);
}

.blog-page-hero>.container {
    position: relative;
    z-index: 2;
}

.blog-page-hero .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary) !important;
    text-shadow: none !important;
}

.blog-page-hero .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark) !important;
    text-shadow: none !important;
}

.blog-page-hero .hero-text {
    font-size: 1.1rem;
    color: var(--text) !important;
    margin-bottom: 30px;
    line-height: 1.7;
    text-shadow: none !important;
}

@media (max-width: 991px) {
    .blog-page-hero::after {
        opacity: 0.15;
        width: 100%;
        border-radius: 0;
    }
}

.category-strip-wrapper {
    position: relative;
    z-index: 10;
}

.category-strip {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
    border: 1px solid var(--border-light);
    border-bottom: 3px solid var(--primary);
    scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
    display: none;
}

.drop-cap {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    margin: 5px 12px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
}

.cat-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    min-width: 100px;
    flex: 1;
    transition: var(--transition);
}

.cat-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.05) 0%, rgba(200, 155, 60, 0.1) 100%);
    border: 1px solid rgba(200, 155, 60, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.cat-icon-link:hover .cat-icon-circle {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(200, 155, 60, 0.25);
}

.cat-icon-link span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.cat-icon-link:hover span {
    color: var(--primary);
}

.blog-featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    background: var(--white);
    border: 1px solid var(--border-light);
    min-height: 400px;
    transition: var(--transition);
}

.blog-featured-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-featured-card .blog-img-wrap {
    flex: 1.2;
    min-height: 100%;
}

.blog-featured-card .blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.bookmark-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.bookmark-btn:hover {
    background: var(--primary);
}

.blog-grid-card {
    border: none !important;
    background: transparent !important;
}

.blog-grid-card .blog-img-wrap {
    border-radius: var(--radius-md);
}

.blog-cat-sm {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-title-sm {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-title-sm a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-title-sm a:hover {
    color: var(--primary);
}

.blog-meta-sm {
    font-size: 0.8rem;
    color: var(--text);
}

.blog-read-link-sm {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.blog-read-link-sm:hover {
    color: var(--dark);
    letter-spacing: 1px;
}

.blog-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.search-widget form {
    display: flex;
}

.search-widget input {
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.search-widget button {
    background: var(--primary);
    border: 1px solid var(--primary);
    padding: 0 16px;
    border-radius: 0 4px 4px 0;
    color: var(--dark);
}

.widget-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-cat-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.widget-cat-list li a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition-fast);
}

.widget-cat-list li a:hover {
    color: var(--primary);
}

.popular-post-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.popular-post-item:last-child {
    margin-bottom: 0;
}

.popular-post-item img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.pop-post-info h6 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.4;
}

.pop-post-info h6 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.pop-post-info h6 a:hover {
    color: var(--primary);
}

.pop-date {
    font-size: 0.75rem;
    color: var(--text);
}

.widget-socials {
    display: flex;
    gap: 12px;
}

.widget-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.widget-socials a:hover {
    background: var(--primary);
    color: var(--dark);
}

@media(max-width: 991px) {
    .blog-featured-card {
        flex-direction: column;
    }

    .blog-featured-content {
        padding: 30px;
    }
}

/* ======================================================
   INTERNATIONAL DESTINATIONS - Custom Styles
   ====================================================== */

.intl-dest-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.intl-dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 155, 60, 0.25);
}

.intl-dest-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.intl-dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.intl-dest-card:hover .intl-dest-img {
    transform: scale(1.08);
}

.intl-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(45, 42, 38, 0) 40%,
            rgba(45, 42, 38, 0.65) 100%);
    pointer-events: none;
}

.intl-dest-country-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 253, 248, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.intl-dest-meta-top {
    position: absolute;
    top: 16px;
    right: 16px;
}

.intl-dest-rating {
    background: rgba(45, 42, 38, 0.85);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.intl-dest-rating i {
    color: var(--primary-light);
    font-size: 0.75rem;
}

.intl-dest-rating small {
    opacity: 0.75;
    font-weight: 400;
    font-size: 0.7rem;
}

.intl-dest-body {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.intl-dest-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--dark);
    margin: 0 0 6px 0;
    font-weight: 700;
    line-height: 1.2;
}

.intl-dest-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.intl-dest-desc {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

.intl-highlight-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intl-highlights {
    flex-grow: 1;
}

.intl-highlight-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.intl-dest-footer {
    margin-top: auto;
}

.why-intl-section {
    position: relative;
    overflow: hidden;
}

.why-intl-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.why-intl-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(232, 201, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.intl-stat-box {
    transition: var(--transition);
    border: 1px solid rgba(200, 155, 60, 0.15);
}

.intl-stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 155, 60, 0.4);
    background: rgba(255, 255, 255, 0.14) !important;
}

.venue-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
}

.venue-type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 155, 60, 0.2);
}

.venue-type-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.12), rgba(200, 155, 60, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.venue-type-icon i {
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.venue-type-card:hover .venue-type-icon {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: rotate(-6deg) scale(1.05);
}

.venue-type-card:hover .venue-type-icon i {
    color: var(--dark);
}

.venue-type-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 700;
}

.venue-type-count {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(200, 155, 60, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
}

.venue-type-desc {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.6;
}

.btn-outline-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-outline-luxury:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 155, 60, 0.6);
    color: var(--primary-light);
}

/* ======================================================
   HOMEPAGE RESPONSIVE STYLES
   Complete mobile-first breakpoints for all homepage sections
   ====================================================== */

/* ---- WCU Cards (Why Couples Choose Us) ---- */
.wcu-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.wcu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 155, 60, 0.2);
}

.wcu-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.1), rgba(232, 201, 106, 0.2));
    border: 1px solid rgba(200, 155, 60, 0.2);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.wcu-card:hover .wcu-icon {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: scale(1.1) rotate(-6deg);
}

.wcu-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.wcu-desc {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* ---- Experience Cards ---- */
.exp-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.exp-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-card:hover .exp-img {
    transform: scale(1.08);
}

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.7) 0%, transparent 60%);
}

.exp-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ---- Real Weddings Cards ---- */
.rw-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: block;
    height: 100%;
}

.rw-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
    display: block;
}

.rw-card:hover .rw-img {
    transform: scale(1.05);
}

.rw-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 42, 38, 0.45);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.rw-card:hover .rw-overlay {
    opacity: 1;
}

.rw-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
}

/* ---- Journey Section ---- */
.journey-wrapper {
    position: relative;
    padding: 10px 0;
}

.journey-line {
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    z-index: 0;
}

.journey-line-bg {
    position: absolute;
    inset: 0;
    background: var(--border-light);
}

.journey-line-progress {
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    width: 0%;
    transition: width 1.5s ease;
}

.journey-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.journey-item {
    flex: 1;
    text-align: center;
    padding: 0 8px;
}

.journey-step {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.journey-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.journey-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(200, 155, 60, 0.2);
    color: var(--primary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.journey-item:hover .journey-icon {
    background: var(--gold-gradient);
    color: var(--dark);
    border-color: transparent;
    transform: scale(1.1);
}

.journey-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.journey-desc {
    font-size: 0.78rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* ---- Vendor scroll items ---- */
.vendor-scroll-item {
    flex: 0 0 calc(20% - 0.8rem);
    scroll-snap-align: start;
    min-width: 160px;
}

/* ======================================================
   BREAKPOINTS
   ====================================================== */

/* ---- Tablet (≤991px) ---- */
@media (max-width: 991px) {

    /* Section spacing */
    .section-pad {
        padding: 48px 0;
    }

    /* Hero */
    .hero-section {
        min-height: 70vh;
        max-height: 560px;
        padding-top: 70px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 0.88rem;
        max-width: 520px;
    }

    /* Cards - 2 column fallback handled by Bootstrap col-md-6 */
    .rw-img {
        height: 200px;
    }

    /* Journey - 2 row wrap */
    .journey-line {
        display: none;
    }

    .journey-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .journey-item {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 120px;
    }

    /* Vendor scroll */
    .vendor-scroll-item {
        flex: 0 0 calc(33.333% - 0.7rem);
        min-width: 140px;
    }

    /* Why Choose section - stack columns */
    .why-choose-us-strip .col-lg-5,
    .why-choose-us-strip .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ---- Mobile (≤767px) ---- */
@media (max-width: 767px) {

    /* Section spacing */
    .section-pad {
        padding: 36px 0;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    /* Hero */
    .hero-section {
        min-height: 60vh;
        max-height: 500px;
        padding-top: 64px;
        padding-bottom: 30px;
    }

    .hero-content {
        padding: 20px 16px 30px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.84rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn-primary-luxury,
    .hero-buttons .btn-white-luxury {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    /* WCU Cards - 2 columns already via col-md-6 */
    .wcu-card {
        padding: 22px 16px;
    }

    .wcu-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .wcu-title {
        font-size: 0.95rem;
    }

    /* Experience cards - 2 col via col-md-6 */
    .exp-img-wrap {
        aspect-ratio: 3/2;
    }

    .exp-title {
        font-size: 0.9rem;
    }

    /* Real weddings - 2 col via col-md-6 */
    .rw-img {
        height: 170px;
    }

    /* Journey - 2 cols */
    .journey-row {
        gap: 20px;
    }

    .journey-item {
        flex: 0 0 calc(50% - 10px);
    }

    .journey-step {
        width: 54px;
        height: 54px;
    }

    .journey-icon {
        width: 54px;
        height: 54px;
        font-size: 1.2rem;
    }

    .journey-title {
        font-size: 0.9rem;
    }

    .journey-desc {
        font-size: 0.75rem;
    }

    /* Vendor scroll */
    .vendor-scroll-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 130px;
    }

    /* Feature cards grid - full width */
    section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ---- Small Mobile (≤575px) ---- */
@media (max-width: 575px) {

    /* Section spacing */
    .section-pad {
        padding: 28px 0;
    }

    /* Hero */
    .hero-section {
        min-height: 55vh;
        max-height: 460px;
        padding-top: 60px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-buttons {
        width: 100%;
        padding: 0 8px;
    }

    .hero-buttons .btn-primary-luxury,
    .hero-buttons .btn-white-luxury {
        max-width: 100%;
        font-size: 0.82rem;
        padding: 12px 20px;
    }

    /* Section heading */
    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem) !important;
    }

    .section-subtitle {
        font-size: 0.84rem;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    /* WCU - 1 col on xs */
    .wcu-card {
        padding: 20px 14px;
    }

    /* Experience cards */
    .exp-img-wrap {
        aspect-ratio: 16/9;
    }

    /* Real weddings - 1 col */
    .rw-img {
        height: 200px;
    }

    /* Journey - 1 col on xs */
    .journey-item {
        flex: 0 0 calc(50% - 10px);
    }

    /* Vendor carousel - 1 item */
    .vendor-scroll-item {
        flex: 0 0 calc(100% - 1rem);
    }

    /* Section padding tweaks */
    .signature-experiences .row>div,
    .real-weddings .row>div,
    .why-choose-us-strip .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Real weddings - force single col */
    .real-weddings .col-xl {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .rw-img {
        height: 220px;
        border-radius: var(--radius-md);
    }

    .hero-content {
        padding: 20px 16px 30px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.84rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn-primary-luxury,
    .hero-buttons .btn-white-luxury {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    /* WCU Cards - 2 columns already via col-md-6 */
    .wcu-card {
        padding: 22px 16px;
    }

    .wcu-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .wcu-title {
        font-size: 0.95rem;
    }

    /* Experience cards - 2 col via col-md-6 */
    .exp-img-wrap {
        aspect-ratio: 3/2;
    }

    .exp-title {
        font-size: 0.9rem;
    }

    /* Real weddings - 2 col via col-md-6 */
    .rw-img {
        height: 170px;
    }

    /* Journey - 2 cols */
    .journey-row {
        gap: 20px;
    }

    .journey-item {
        flex: 0 0 calc(50% - 10px);
    }

    .journey-step {
        width: 54px;
        height: 54px;
    }

    .journey-icon {
        width: 54px;
        height: 54px;
        font-size: 1.2rem;
    }

    .journey-title {
        font-size: 0.9rem;
    }

    .journey-desc {
        font-size: 0.75rem;
    }

    /* Vendor scroll */
    .vendor-scroll-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 130px;
    }

    /* Feature cards grid - full width */
    section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ---- Small Mobile (≤575px) ---- */
@media (max-width: 575px) {

    /* Section spacing */
    .section-pad {
        padding: 28px 0;
    }

    /* Hero */
    .hero-section {
        min-height: 55vh;
        max-height: 460px;
        padding-top: 100px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-buttons {
        width: 100%;
        padding: 0 8px;
    }

    .hero-buttons .btn-primary-luxury,
    .hero-buttons .btn-white-luxury {
        max-width: 100%;
        font-size: 0.82rem;
        padding: 12px 20px;
    }

    /* Section heading */
    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem) !important;
    }

    .section-subtitle {
        font-size: 0.84rem;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    /* WCU - 1 col on xs */
    .wcu-card {
        padding: 20px 14px;
    }

    /* Experience cards */
    .exp-img-wrap {
        aspect-ratio: 16/9;
    }

    /* Real weddings - 1 col */
    .rw-img {
        height: 200px;
    }

    /* Journey - 1 col on xs */
    .journey-item {
        flex: 0 0 calc(50% - 10px);
    }

    /* Vendor carousel - 1 item */
    .vendor-scroll-item {
        flex: 0 0 calc(100% - 1rem);
    }

    /* Section padding tweaks */
    .signature-experiences .row>div,
    .real-weddings .row>div,
    .why-choose-us-strip .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Real weddings - force single col */
    .real-weddings .col-xl {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .rw-img {
        height: 220px;
        border-radius: var(--radius-md);
    }


    /* Stats strip numbers smaller */
    .stat-strip-number {
        font-size: 1.2rem;
    }

    .stat-strip-label {
        font-size: 0.65rem;
    }

    /* Brute Force Mobile Journey Centering Override */
    .journey-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 30px !important;
    }

    .journey-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .journey-step {
        margin: 0 auto 15px auto !important;
        float: none !important;
    }

}

/* ======================================================
   WHY COUPLES CHOOSE US (Strip version)
   ====================================================== */
.wcu-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 24px;
    border: none;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.wcu-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.5s ease;
}

.wcu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 155, 60, 0.15);
}

.wcu-card:hover::before {
    width: 100%;
}

.wcu-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.wcu-card:hover .wcu-icon {
    transform: scale(1.1);
}

.wcu-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.wcu-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}