* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(145deg, #fff9f0 0%, #ffe8e0 100%);
    font-family: 'Quicksand', sans-serif;
    color: #2a2a2a;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ----- MODERN ANIMATIONS ----- */
@keyframes floatGlow {
    0% { filter: drop-shadow(0 5px 15px rgba(255, 110, 130, 0.3)); transform: translateY(0px); }
    50% { filter: drop-shadow(0 20px 25px rgba(255, 80, 150, 0.6)); transform: translateY(-8px); }
    100% { filter: drop-shadow(0 5px 15px rgba(255, 110, 130, 0.3)); transform: translateY(0px); }
}

@keyframes softShine {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

@keyframes growPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes bounceSoft {
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-7px); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeZoom {
    0% { 
        opacity: 0; 
        transform: scale(1);
    }
    5% { 
        opacity: 1; 
        transform: scale(1.05);
    }
    20% { 
        opacity: 1; 
        transform: scale(1.1);
    }
    25% { 
        opacity: 0; 
        transform: scale(1.15);
    }
    100% { opacity: 0; }
}

@keyframes underline {
    to { transform: scaleX(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(247, 183, 49, 0.2); }
    50% { box-shadow: 0 0 30px rgba(247, 183, 49, 0.4); }
}

.hover-glow:hover {
    animation: floatGlow 1.8s infinite ease-in-out;
}

/* ----- HEADER (from header.php concept) ----- */
.logo-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 2rem 0.5rem 1.5rem;
    border-radius: 80px 20px 80px 20px;
    box-shadow: 15px 15px 0 #fdc5b0, 0 10px 20px -5px #fcaa8f;
    border: 3px solid #ffeae0;
    transition: all 0.3s;
    /*animation: floatGlow 4s infinite;*/
}

.logo-group:hover {
    transform: scale(1.02) rotate(-0.5deg);
    box-shadow: 20px 20px 0 #fcb8a0;
}

.logo-icon {
    font-size: 3.8rem;
    background: linear-gradient(145deg, #a56abd, #e36b8d, #f7b26a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(4px 8px 0 rgba(235, 150, 120, 0.4));
    animation: bounceSoft 3.2s infinite;
}

.logo-text {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #bf4b6b, #d87e5b, #e6b065);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
}
.logo-text span {
    background: linear-gradient(145deg, #677fe7, #b568b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.call-chip {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    box-shadow: 0 18px 25px -12px #fb8e7a;
    border: 2px solid #ffcfba;
    font-weight: 700;
    font-size: 1.3rem;
    transition: 0.2s;
}
.call-chip i {
    color: #f8594b;
    margin-right: 8px;
}
.call-chip:hover {
    background: #ffffff;
    box-shadow: 0 0 25px #ff9f8c;
}

.city-selector-header {
    background: #fbdec7;
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    border: 2px dashed #ff9467;
    transition: 0.2s;
}
.city-selector-header:hover {
    background: #ffe1d0;
    border: 2px solid #ff6f61;
}

.sparkle-badge {
    background: #fdd8b1;
    padding: 0.5rem 2rem;
    border-radius: 40px;
    font-size: 1.5rem;
    border: 3px solid white;
    rotate: -1deg;
    box-shadow: 0 0 15px #fec0a0;
}

/* ----- HERO SECTION (UPGRADED WITH HEIGHT CONTROL) ----- */
.hero-splash {
    position: relative;
    width: 100%;
    min-height: 300px;
    max-height: 300px;
    /*background-color: #1a1a1a;*/
    display: flex;
    flex-direction: column;
    color: #fff;
    overflow: hidden;
    /*margin: 10px 0 4rem 0;*/
    /*border-radius: 60px 60px 60px 60px;*/
    box-shadow: 25px 25px 0 rgba(251, 142, 97, 0.2), 0 0 50px #ffb694;
    border: 2px solid white;
    transition: height 0.5s ease;
}

/* Height Control Buttons */
.height-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 5px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.2);
}

.height-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.height-btn:hover {
    background: #f7b731;
    color: #000;
    transform: scale(1.1);
}

/* Floating Language */
.floating-lang {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 15;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Hero Gallery with Crossfade */
.hero-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeZoom 20s infinite ease-in-out;
    transform: scale(1);
    will-change: opacity, transform;
}

.hero-gallery img:nth-child(1) { animation-delay: 0s; }
.hero-gallery img:nth-child(2) { animation-delay: 5s; }
.hero-gallery img:nth-child(3) { animation-delay: 10s; }
.hero-gallery img:nth-child(4) { animation-delay: 15s; }

/* Dark overlay with gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Hero Text Content */
.hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideUp 1s ease;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-text h1 span {
    color: #f7b731;
    position: relative;
    display: inline-block;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f7b731;
    transform: scaleX(0);
    animation: underline 1s ease forwards 0.5s;
}
 .city-hero {
            background: linear-gradient(135deg, rgba(255, 229, 213, 0.95), rgba(255, 221, 204, 0.95));
            backdrop-filter: blur(10px);
            border-radius: 70px 20px 70px 20px;
            padding: 0rem 3rem;
            margin: 2rem 0 3rem;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .city-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
            pointer-events: none;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .city-hero h1 {
            font-size: 3.5rem;
            background: linear-gradient(145deg, #b12c5a, #d15565, #fa8c6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .city-hero p {
            font-size: 1.2rem;
            color: #6b4e3a;
            line-height: 1.6;
            max-width: 80%;
        }
/* City Selector */
.city-selector-wrapper {
    margin: 2rem auto;
    position: relative;
    display: inline-block;
}

.animated-city-pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 1rem 2.5rem;
    border-radius: 70px;
    font-size: 1.4rem;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.animated-city-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.animated-city-pill:hover {
    background: rgba(247, 183, 49, 0.3);
    border-color: #f7b731;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(247, 183, 49, 0.3);
}

.animated-city-pill:hover::before {
    left: 100%;
}

.animated-city-pill i {
    color: #f7b731;
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

.animated-city-pill .city-name {
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 40px;
}

.animated-city-pill .arrow {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

/* City Dropdown */
.city-dropdown {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 1rem;
    min-width: 250px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(247, 183, 49, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.city-selector-wrapper.active .city-dropdown {
    opacity: 1;
    visibility: visible;
    top: 110%;
}

.city-option {
    padding: 0.8rem 1.5rem;
    color: #333;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-option:hover {
    background: #f7b731;
    color: white;
    transform: translateX(5px);
}

.city-option i {
    width: 20px;
    color: #f7b731;
    transition: all 0.2s ease;
}

.city-option:hover i {
    color: white;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    flex-wrap: wrap;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    padding: 1.5rem 2.5rem;
    border-radius: 80px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: slideUp 1s ease 0.3s both;
}

.stats-row span {
    font-weight: 700;
    color: #f7b731;
    font-size: 1.8rem;
    display: inline-block;
    margin-right: 5px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Destination Link */
.dest-link {
    margin: 2rem 0;
    font-size: 1.3rem;
}

.dest-link a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 2rem;
    border-radius: 40px;
    background: rgba(247, 183, 49, 0.2);
    border: 1px solid rgba(247, 183, 49, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dest-link a:hover {
    background: #f7b731;
    color: #000;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(247, 183, 49, 0.4);
}

.dest-link a i {
    transition: transform 0.3s ease;
}

.dest-link a:hover i {
    transform: translateX(5px);
}

/* Hero Badge Group */
.hero-badge-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.hero-badge {
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-badge:active::after {
    width: 300px;
    height: 300px;
}

.badge-primary {
    background: #f7b731;
    color: #1a1a1a;
    box-shadow: 0 15px 35px rgba(247, 183, 49, 0.3);
}

.badge-secondary {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid #f7b731;
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.badge-primary:hover {
    background: #ffc107;
}

.badge-secondary:hover {
    background: #f7b731;
    color: #1a1a1a;
}

/* Corner Datetime */
.corner-datetime {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 15;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    display: flex;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: glow 2s infinite;
}

.corner-datetime i {
    color: #f7b731;
    margin-right: 5px;
}

/* Subtitle */
.subtitle {
    font-size: 1.4rem;
    margin: 1.5rem 0;
    color: rgba(255,255,255,0.9);
}

.subtitle i {
    color: #f7b731;
    animation: bounce 4s infinite;
}

/* ----- SECTION TITLES ----- */
.section-title, .home-title2 {
    font-size: 2.6rem;
    margin: 3rem 0 2rem;
    display: inline-block;
    background: #ffe06b;
    padding: 0.2rem 3rem 0.2rem 1.8rem;
    border-radius: 0 50px 50px 0;
    box-shadow: 10px 8px 0 #ffb086, 0 0 30px #fd9e7b;
    letter-spacing: -0.5px;
    transition: 0.2s;
}
.section-title:hover, .home-title2:hover {
    transform: translateX(5px);
    background: #ffdb5c;
}

/* ----- CITIES GRID (modern card style) ----- */
.cities-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem -12px 3rem;
}
.city-col {
    flex: 0 0 25%;
    padding: 0 12px;
    margin-bottom: 2rem;
}
.city-card {
    border-radius: 30px;
    overflow: hidden;
    background: white;
    box-shadow: 15px 15px 0 #ffd4c2;
    transition: 0.25s;
    height: 100%;
    border: 3px solid #ffe0d0;
    text-align: center;
}
.city-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 18px 22px 0 #fdba9e, 0 0 35px #fca68a;
}
.city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #f9dad0;
}
.city-card-content {
    padding: 1.5rem 1.2rem 1.8rem;
    text-align: center;
}
.city-card-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(145deg, #b24b6f, #ec8550);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.city-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.city-links a {
    text-decoration: none;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    background: #f9dad0;
    color: #b24b6f;
    transition: 0.2s;
    font-size: 0.9rem;
}
.city-links a:last-child {
    background: #ffb347;
    color: #2e2a28;
}
.city-links a:hover { filter: brightness(0.95); }

/* magazine banner */
.magazine-banner {
    margin: 2.5rem 0 3rem;
}
.magazine-banner img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 80px 20px 80px 20px;
    border: 8px solid white;
    box-shadow: 20px 20px 0 #fec6ad, 0 0 60px #ffaa8c;
    transition: 0.3s;
}
.magazine-banner img:hover { box-shadow: 20px 20px 0 #f5a38d, 0 0 70px #ff9770; }

/* card rows (blogs, real weddings) */
.card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 2rem 0;
}
.blog-card, .rw-card {
    flex: 1 1 calc(25% - 22px);
    min-width: 240px;
    background: white;
    border-radius: 40px 10px 40px 10px;
    overflow: hidden;
    box-shadow: 12px 12px 0 #fccbb7;
    border: 3px solid #ffcfba;
    transition: all 0.3s;
}
.blog-card:hover, .rw-card:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 18px 18px 0 #fcaa88, 0 0 35px #febaa0;
}
.blog-card img, .rw-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 6px solid #ffbaba;
}
.card-content {
    padding: 1.2rem 1.2rem 1.5rem;
}
.card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #b0455c;
}
.card-content p {
    color: #5e4b43;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    background: #fceed8;
    padding: 0.5rem;
    border-radius: 30px;
}
.card-content a {
    color: #d64161;
    font-weight: 600;
    text-decoration: none;
}
.header-with-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0 1rem;
}
.see-all-btn {
    background: #d9879f;
    padding: 0.5rem 2rem;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    box-shadow: 0 0 25px #feb69b;
    transition: 0.2s;
}
.see-all-btn:hover {
    background: #c2687c;
    box-shadow: 0 0 40px #ff8a7a;
}

/* HOW IT WORKS (modern) */
.hw-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 3rem 0;
    background: #fee4cb;
    border-radius: 80px 20px 80px 20px;
    padding: 3rem 2rem;
    box-shadow: inset 0 -5px 0 #fcb8a0, 0 25px 0 -8px #fbdec2;
}
.hw-item {
    flex: 1 1 200px;
    background: rgba(255,255,250,0.7);
    backdrop-filter: blur(3px);
    border-radius: 60px 10px 60px 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 3px solid white;
    transition: 0.3s;
}
.hw-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.03);
    box-shadow: 0 0 40px #feb9a0;
}
.step-image-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #ffe9df;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px dashed #d4af37;
}
.step-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.step-number {
    background: #d64161;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-weight: 800;
    border: 2px solid white;
}
.hw-item h3 {
    font-size: 1.7rem;
    color: #c0435a;
    margin: 0.5rem 0 0.5rem;
}
.hw-item p {
    background: #fceed8;
    border-radius: 50px;
    padding: 0.4rem;
}

/* PHOTO STRIP with heart overlay */
.photo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 2.5rem 0;
}
.photo-strip-item {
    flex: 1 1 calc(20% - 20px);
    min-width: 170px;
    border-radius: 40px 10px 40px 10px;
    overflow: hidden;
    position: relative;
    border: 5px solid #ffe9e3;
    box-shadow: 0 15px 0 #ffbe85;
    transition: 0.3s;
}
.photo-strip-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 0 #fc9f7a, 0 0 45px #feb095;
}
.photo-strip-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 36px 6px 36px 6px;
}
.photo-strip-item:hover img { transform: scale(1.05); }
.photo-strip-item .photo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, #d6416180, transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    color: white;
    font-weight: bold;
    opacity: 0;
    transition: 0.2s;
}
.photo-strip-item:hover .photo-overlay { opacity: 1; }

/* wedding site block */
.wed-site-block {
    background: linear-gradient(130deg, #b6dcfe, #fbcfc4);
    border-radius: 30px 60px 30px 60px;
    padding: 2.5rem 3rem;
    margin: 4rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.wed-site-text {
    flex: 2 1 300px;
}
.wed-site-text h2 {
    font-size: 2.8rem;
    background: rgba(255, 248, 200, 0.8);
    display: inline-block;
    padding: 0.3rem 2rem;
    border-radius: 60px;
}
.wed-site-text p {
    font-size: 1.2rem;
    background: rgba(0,0,0,0.02);
    backdrop-filter: blur(2px);
    padding: 1.3rem;
    border-radius: 40px;
}
.wed-site-badge {
    flex: 1 1 200px;
    background: #b23b5c;
    color: white;
    font-size: 2rem;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 100px 20px 100px 20px;
    rotate: 2deg;
    border: 5px solid #fbf46a;
}

/* press row */
.press-row {
    display: flex;
    gap: 2rem 3rem;
    flex-wrap: wrap;
    justify-content: center;
    background: #ffedd0;
    padding: 1.8rem;
    border-radius: 100px 20px 100px 20px;
    margin: 3rem 0;
    border: 2px dashed #f5ac9b;
    font-weight: 600;
    font-size: 1.5rem;
    color: #b24b6f;
}
.press-logo {
    font-size: 2rem;
    font-weight: 700;
    background: white;
    padding: 0.3rem 1.8rem;
    border-radius: 60px;
    border: 2px dashed #ff9467;
}

/* social cards */
.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 2rem 0;
    justify-content: center;
}
.social-card-mini {
    background: white;
    border-radius: 40px 10px 40px 10px;
    padding: 0.7rem 2rem 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 2px solid #ffe0d4;
    box-shadow: 10px 10px 0 #fec7b0;
    font-weight: 600;
    flex: 1 1 220px;
    transition: 0.3s;
}
.social-card-mini:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 16px 16px 0 #fdab8b, 0 0 40px #feb79b;
}
.social-card-mini i {
    font-size: 3rem;
    background: linear-gradient(145deg, #dc6b8b, #f5a36c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.social-card-mini span {
    font-weight: 700;
    font-size: 1.5rem;
}
.social-card-mini button {
    background: #c2687c;
    border: none;
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    margin-left: auto;
    border: 2px solid white;
    cursor: pointer;
    transition: 0.2s;
}
.social-card-mini button:hover {
    background: #e06e5f;
    box-shadow: 0 0 30px #ffa07a;
}

/* helpline/discount strip */
.help-strip {
    display: flex;
    flex-wrap: wrap;
    background: #ffedd0;
    border-radius: 100px 20px 100px 20px;
    padding: 2rem 2.5rem;
    margin: 3.5rem 0;
    align-items: center;
    justify-content: space-around;
    border: 3px solid white;
    box-shadow: 10px 10px 0 #ffc4a2;
}

/* final india block */
.india-block {
    background: #fecbb5;
    border-radius: 70px;
    padding: 2.5rem 3rem;
    margin: 2rem 0;
    border: 4px solid white;
    box-shadow: inset 0 -4px 10px #ffa880;
}

/* ===== STEPS ROW (how it works) ===== */
.steps-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.step-card {
    background: #fffcf9;
    flex: 1 1 200px;
    min-width: 180px;
    border-radius: 50px 20px 50px 20px;
    padding: 2rem 1.5rem;
    box-shadow: 15px 15px 0 #ffd4c2;
    border: 2px solid white;
    text-align: center;
}

.step-card i {
    font-size: 3.4rem;
    background: linear-gradient(45deg, #f26b5e, #f6ae7a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-card h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #c0435a;
    margin: 0.5rem 0 0.5rem;
}

.step-card p {
    background: #fceed8;
    border-radius: 30px;
    padding: 0.6rem;
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

/* ===== BROWSE VENUES & VENDORS ===== */
.browse-venues {
    background: #fee4cb;
    border-radius: 80px 20px 80px 20px;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    box-shadow: inset 0 -5px 0 #fcb8a0, 0 25px 0 -8px #fbdec2;
}

.browse-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    flex-wrap: wrap;
}

.flair-icon {
    background: #af5f9b;
    color: white;
    border-radius: 60px;
    padding: 0.8rem 2rem;
    font-size: 1.8rem;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vendor-item {
    background: white;
    border-radius: 30px 10px 30px 10px;
    padding: 1rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid #fdc5a2;
}

.vendor-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 30px 10px 0 0;
    border-bottom: 6px solid #ffbaba;
}

.vendor-item h4 {
    font-size: 1.7rem;
    color: #bb4f6b;
    margin: 0.5rem 0 0.2rem;
}

.price-badge {
    background: #a6d0fa;
    padding: 0.2rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid white;
}

/* ===== WEDDING PHOTOS SECTION ===== */
.wedding-photos-section {
    background: #fdd8df;
    border-radius: 40px 40px 0 0;
    padding: 2rem;
    box-shadow: 0 20px 0 #fcc1b2;
    margin: 3rem 0;
}

.photo-masonry {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.photo-masonry img {
    width: calc(25% - 1rem);
    min-width: 150px;
    flex: 1 1 auto;
    height: 180px;
    object-fit: cover;
    border-radius: 40px 10px 40px 10px;
    border: 5px solid #ffe9e3;
    box-shadow: 0 15px 0 #ffbe85;
}

/* ===== GUEST / SOCIAL WEBSITE ===== */
.guest-website-special {
    background: linear-gradient(130deg, #b6dcfe, #fbcfc4);
    border-radius: 30px 60px 30px 60px;
    padding: 3rem;
    margin: 4rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.guest-text {
    flex: 2 1 300px;
}

.guest-text h2 {
    font-size: 2.8rem;
    background: rgba(255, 248, 200, 0.8);
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 60px;
}

.guest-text p {
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(2px);
    padding: 1.5rem;
    border-radius: 40px;
}

.guest-badge {
    flex: 1 1 200px;
    background: #b23b5c;
    color: white;
    font-size: 2rem;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 100px 20px 100px 20px;
    rotate: 2deg;
    border: 5px solid #fbf46a;
}

/* ===== HELP & DISCOUNT ===== */
.help-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #ffedd0;
    padding: 2rem 2.5rem;
    border-radius: 100px 20px 100px 20px;
    margin: 3rem 0 2rem;
}

.discount-big {
    background: #f1592b;
    color: white;
    font-size: 2.5rem;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    border: 4px solid #ffea86;
}

.call-now {
    font-size: 2rem;
    background: #8b5d9c;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 10px 10px #fbad8e;
}

/* ===== INDIA STATS ===== */
.india-stats {
    margin: 2rem 0;
    background: #fecebc;
    border-radius: 50px;
    padding: 2rem 3rem;
}

/* ----- FOOTER ----- */
.footer {
    margin-top: 4rem;
    background: linear-gradient(115deg, #fecfba, #ffdbb5);
    border-radius: 80px 20px 80px 20px;
    padding: 2.8rem 3rem 2.5rem;
    box-shadow: 0 -8px 0 #fdb697, 0 30px 0 -12px #fecbb0;
    border: 4px solid white;
     width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
   
    box-sizing: border-box;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-about {
    flex: 2 1 260px;
}

.footer-about .logo-mini {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 2rem;
    font-weight: 700;
    background: white;
    padding: 0.3rem 1.8rem 0.3rem 1rem;
    border-radius: 60px 10px 60px 10px;
    width: fit-content;
    margin-bottom: 1.2rem;
    border: 2px solid #ff9366;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.8rem;
    border-left: 10px solid #f8594b;
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin: 0.8rem 0;
    font-size: 1.2rem;
}
.footer-links i {
    margin-right: 10px;
    color: #b0455c;
}

.footer-social .social-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 2.5rem;
    margin-top: 0.5rem;
}
.social-icons a {
    color: #6d3b5e;
    transition: 0.1s;
}
.social-icons a:hover {
    color: #f04f6b;
    transform: scale(1.1);
}

.footer-copyright {
    text-align: center;
    font-size: 1.2rem;
    padding-top: 2rem;
    border-top: 3px dotted #ffaf8a;
    margin-top: 1rem;
}

/* Main Menu */
.main-menu {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.main-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    gap: 35px;
}

.main-menu ul li a {
    text-decoration: none;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

.main-menu ul li a:hover {
    color: #e91e63;
}

/* utility */
.mb-4 { margin-bottom: 1.5rem; }
.img-fluid { max-width: 100%; height: auto; }
.row { display: flex; flex-wrap: wrap; }
.col-sm-4 { flex: 0 0 33.333%; padding: 0 15px; }

/* Responsive */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1000px) {
    .city-col { flex: 0 0 50%; }
    .blog-card, .rw-card { flex: 1 1 calc(50% - 22px); }
    
    .hero-splash {
        height: 100vh;
        min-height: 700px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 40px;
    }
    
    .stat-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .col-sm-4 { flex: 0 0 100%; }
    
    .corner-datetime {
        bottom: 15px;
        right: 15px;
        flex-direction: column;
        gap: 5px;
        padding: 0.5rem 1rem;
    }
    
    .animated-city-pill {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .hero-badge {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .hero-splash { 
        padding: 1rem;
        border-radius: 30px;
    }
    .city-col { flex: 0 0 100%; }
    .blog-card, .rw-card { flex: 1 1 100%; }
    .browse-header { flex-direction: column; align-items: start; }
    .guest-website-special { padding: 2rem; }
    .guest-text h2 { font-size: 2rem; }
    .photo-masonry img { width: calc(50% - 1rem); }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .floating-lang {
        top: 15px;
        left: 15px;
        padding: 0.3rem 1rem;
        font-size: 0.9rem;
    }
    
    .height-controls {
        top: 15px;
        right: 15px;
    }
    
    .height-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}