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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow-x: hidden;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.05) 0%, rgba(255, 192, 203, 0.05) 100%);
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Flower animations removed for performance optimization */

/* ========== MODERN 2026 ANIMATIONS ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c41e3a;
}

.logo-text {
    background: linear-gradient(135deg, #c41e3a, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover {
    color: #c41e3a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c41e3a, #ff69b4);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active Navigation Indicator */
.nav-link.active {
    color: #c41e3a;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Hamburger animation when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    margin-top: 60px;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 182, 193, 0.05) 50%,
        rgba(255, 192, 203, 0.08) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    width: 100%;
    max-width: 950px;
    position: relative;
    z-index: 1;
}

.invitation-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.99) 0%, 
        rgba(250, 250, 255, 1) 100%);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 100px 60px;
    box-shadow: 
        0 30px 100px rgba(196, 30, 58, 0.12),
        0 0 40px rgba(196, 30, 58, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.02);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(196, 30, 58, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.invitation-card:hover {
    box-shadow: 
        0 40px 120px rgba(196, 30, 58, 0.18),
        0 0 50px rgba(196, 30, 58, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 3px rgba(0, 0, 0, 0.03);
    transform: translateY(-8px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(252, 250, 255, 1) 100%);
}

.invitation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
}

.invitation-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(196, 30, 58, 0.2), 
        transparent);
}

.card-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.invitation-text {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #c41e3a;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #c41e3a 0%, #d63a54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
    animation: fadeInDown 0.8s ease-out;
}

.invitation-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.6;
}

/* ========== WEDDING ORNAMENTS & DECORATIONS ========== */
.ornament {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: #c41e3a;
    letter-spacing: 8px;
    margin: 20px 0;
    opacity: 0.7;
    animation: fadeInUp 0.8s ease-out;
}

.ornament-top {
    animation-delay: 0.2s;
}

.ornament-bottom {
    animation-delay: 0.4s;
}

.decoration-line {
    position: absolute;
    height: 2px;
    left: 60px;
    right: 60px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #c41e3a 20%, 
        #c41e3a 80%, 
        transparent 100%);
    opacity: 0.4;
    z-index: 1;
}

.decoration-line.decoration-top {
    top: 30px;
}

.decoration-line.decoration-bottom {
    bottom: 30px;
}

.frame-decoration {
    font-size: 1.2rem;
    color: #c41e3a;
    letter-spacing: 6px;
    margin: 15px 0;
    opacity: 0.6;
    z-index: 1;
}

.divider-ornament {
    font-size: 1.5rem;
    color: #c41e3a;
    margin: 20px 0;
    opacity: 0.7;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.3s;
}

.date-ornament {
    font-size: 1.3rem;
    color: #c41e3a;
    letter-spacing: 4px;
    margin: 15px 0;
    opacity: 0.6;
}

/* ========== NAMES SECTION ENHANCEMENT ========== */
.name-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.02) 0%, 
        rgba(255, 192, 203, 0.03) 100%);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.name-card:hover {
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.05) 0%, 
        rgba(255, 192, 203, 0.05) 100%);
}

.name-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
}

.name-parents {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #c41e3a;
    margin: 0;
    font-weight: 600;
    font-style: italic;
}

.names-section {
    position: relative;
    z-index: 1;
    margin: 70px 0;
}

.couple-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    flex-direction: column;
}

.groom-card {
    order: 1;
    width: 100%;
    max-width: 350px;
}

.bride-card {
    order: 3;
    width: 100%;
    max-width: 350px;
}

.groom,
.bride {
    margin-bottom: 30px;
}

.name-prefix {
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.groom-name,
.bride-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    background: linear-gradient(135deg, #c41e3a 0%, #d63a54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin: 0;
    letter-spacing: 0;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.ampersand-text {
    font-family: 'Sacramento', cursive;
    font-size: 4.5rem;
    background: linear-gradient(135deg, #c41e3a 0%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    width: 100%;
    text-align: center;
    order: 2;
}

.event-details {
    position: relative;
    z-index: 1;
    margin: 60px 0;
    padding: 50px 0;
    border-top: 2px solid rgba(196, 30, 58, 0.12);
    border-bottom: 2px solid rgba(196, 30, 58, 0.12);
    background: linear-gradient(90deg, 
        rgba(196, 30, 58, 0.02) 0%,
        transparent 50%,
        rgba(196, 30, 58, 0.02) 100%);
    border-radius: 10px;
}

.event-date {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.date-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #c41e3a;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInLeft 0.8s ease-out 0.3s both;
}

.date-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #c41e3a 0%, #d63a54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    line-height: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.date-month {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #c41e3a;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.date-year {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.ampersand {
    margin: 30px 0;
    font-size: 3rem;
    color: #c41e3a;
    opacity: 0.6;
}

.ampersand svg {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(196, 30, 58, 0.2));
}

.card-footer {
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.invitation-message {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #555;
    margin: 0 0 45px 0;
    line-height: 1.9;
    letter-spacing: 0.5px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.special-message {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #c41e3a;
    margin: 30px 0;
    padding: 20px;
    text-align: center;
    line-height: 1.8;
    font-weight: 600;
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.05) 0%, 
        rgba(255, 192, 203, 0.05) 100%);
    border-radius: 8px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    border-top: 2px solid rgba(196, 30, 58, 0.3);
    border-bottom: 2px solid rgba(196, 30, 58, 0.3);
}

.event-date,
.event-location {
    font-size: 1.1rem;
    color: #333;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icon-calendar,
.icon-location {
    font-size: 1.5rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-share {
    padding: 14px 35px;
    border: 2px solid #c41e3a;
    background: white;
    color: #c41e3a;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.1);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-share:hover {
    background: linear-gradient(135deg, #c41e3a, #d63a54);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.35);
    border-color: #d63a54;
}

.btn-share:active {
    transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.btn-copy {
    border-color: #ff69b4;
    color: #ff69b4;
}

.btn-copy:hover {
    background: #ff69b4;
}

/* ========== EVENT SECTION (AKAD & RESEPSI) ========== */
.event-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.05) 0%, rgba(196, 30, 58, 0.03) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 40px 20px;
}

.event-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-title-center {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #c41e3a;
    margin-bottom: 80px;
    position: relative;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 2;
}

.section-title-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c41e3a, #ff69b4);
    margin: 15px auto 0;
    border-radius: 2px;
}

.events-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.event-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(250, 250, 255, 1) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(196, 30, 58, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(196, 30, 58, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(196, 30, 58, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(252, 250, 255, 1) 100%);
}

.event-header {
    background: linear-gradient(135deg, #c41e3a 0%, #d63a54 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.event-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.event-date-time {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.event-day {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.event-time {
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.95;
}

.event-content {
    padding: 40px 30px;
}

.event-details-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-details h4 {
    color: #c41e3a;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.location-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.location-address {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.location-link {
    display: inline-block;
    color: #c41e3a;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: #d63a54;
    text-decoration: underline;
}

.event-map {
    width: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.event-map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
}

/* ========== GLOSSY SECTION EFFECT ========== */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ========== COUNTDOWN SECTION ========== */
.countdown-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(255, 182, 193, 0.05) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 40px 20px;
}

.countdown-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #c41e3a;
    margin-bottom: 60px;
    position: relative;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 2;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c41e3a, #ff69b4);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Two-column section layout */
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.section-left .section-title {
    font-family: 'Cormorant Garamond', serif;
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 700;
    color: #c41e3a;
}

.section-left .section-title::after {
    margin: 15px 0 0 0;
}

.section-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.countdown-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.05) 0%, rgba(255, 192, 203, 0.05) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 40px 20px;
}

.gallery-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery-swiper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    width: 400px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.swiper-slide:hover img {
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background: #c41e3a;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #c41e3a;
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: #c41e3a;
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1rem;
}

/* ========== PRAYERS SECTION ========== */
.prayers-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(255, 192, 203, 0.05) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 40px 20px;
}

.prayers-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.prayers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.prayer-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #c41e3a;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.prayer-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(196, 30, 58, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 1);
}

.prayer-card h3 {
    color: #c41e3a;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.arabic-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    direction: rtl;
    text-align: right;
    padding: 15px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 10px;
}

.translation {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== COMMENTS SECTION ========== */
.comments-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.05) 0%, rgba(196, 30, 58, 0.03) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 40px 20px;
}

.comments-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.comment-form-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.comment-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #c41e3a, #ff69b4);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.comments-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.comment-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #c41e3a;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    animation: slideIn 0.3s ease;
    transition: all 0.3s ease;
}

.comment-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment-name {
    color: #c41e3a;
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

.comment-date {
    color: #999;
    font-size: 0.85rem;
}

.comment-message {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 50px auto 30px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 14px;
    border: 2px solid #c41e3a;
    background: white;
    color: #c41e3a;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    min-width: 44px;
    text-align: center;
}

.pagination-btn:hover:not(.active) {
    background: rgba(196, 30, 58, 0.1);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #c41e3a, #d63a54);
    color: white;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.pagination-btn:active:not(.active) {
    transform: translateY(0);
}

.comments-info {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    color: #666;
}

.comments-info p {
    margin: 0;
    font-size: 0.95rem;
}

.comments-info strong {
    color: #c41e3a;
    font-weight: 700;
}

/* ========== RSVP SECTION ========== */
.rsvp-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(255, 192, 203, 0.05) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 40px 20px;
}

.rsvp-section::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rsvp-form-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.rsvp-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
    user-select: none;
}

.radio-label:hover {
    background: rgba(196, 30, 58, 0.05);
}

.radio-label input[type="radio"] {
    cursor: pointer;
    accent-color: #c41e3a;
    width: 18px;
    height: 18px;
}

.radio-label span {
    color: #555;
    font-weight: 500;
}

.rsvp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #c41e3a;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(196, 30, 58, 0.2);
    background: rgba(255, 255, 255, 1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 10px;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #c41e3a, #ff69b4);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer p {
    margin: 10px 0;
}

.footer-doa {
    font-style: italic;
    opacity: 0.9;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    /* Navigation changes for tablet/mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(196, 30, 58, 0.1);
        border-left: 4px solid #c41e3a;
        padding-left: 16px;
    }

    .hamburger {
        display: flex;
    }

    .invitation-card {
        padding: 50px 30px;
    }

    .invitation-text {
        font-size: 2rem;
    }

    .ornament {
        font-size: 1.2rem;
        letter-spacing: 6px;
        margin: 15px 0;
    }

    .frame-decoration {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .divider-ornament {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    .name-card {
        padding: 18px;
    }

    .name-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .name-parents {
        font-size: 1rem;
    }

    .special-message {
        font-size: 1.05rem;
        padding: 18px;
        margin: 25px 0;
    }

    .decoration-line {
        left: 45px;
        right: 45px;
    }

    .groom-name,
    .bride-name {
        font-size: 2.5rem;
    }

    .ampersand-text {
        font-size: 2.5rem;
    }

    .date-number {
        font-size: 2.5rem;
    }

    .invitation-message {
        font-size: 1.05rem;
    }

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

    /* 2-Column Layout to Single Column */
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-left .section-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .section-left .section-title::after {
        margin: 15px auto 0;
    }

    /* Event Section Responsive */
    .events-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .event-details-map {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-map {
        min-height: 250px;
    }    .section-description {
        text-align: center;
        margin-bottom: 30px;
    }

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

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

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-date {
        margin-top: 5px;
    }

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

    .gallery-swiper {
        max-width: 100%;
    }

    .swiper-slide {
        width: 300px !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .hero {
        padding: 80px 15px 30px;
        margin-top: 60px;
    }

    .hero-content {
        width: 100%;
    }

    .invitation-card {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .invitation-text {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .couple-names {
        gap: 15px;
        margin: 30px 0;
    }

    .groom-name,
    .bride-name {
        font-size: 2rem;
    }

    .ampersand-text {
        font-size: 2rem;
    }

    .event-details {
        margin: 35px 0;
        padding: 30px 0;
    }

    .date-number {
        font-size: 2.2rem;
    }

    .invitation-message {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .special-message {
        font-size: 0.95rem;
        padding: 15px;
        margin: 20px 0;
    }

    .ornament {
        font-size: 0.95rem;
        letter-spacing: 4px;
        margin: 12px 0;
    }

    .frame-decoration {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .divider-ornament {
        font-size: 0.95rem;
        margin: 12px 0;
    }

    .name-card {
        padding: 15px;
    }

    .name-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .name-parents {
        font-size: 0.9rem;
    }

    .decoration-line {
        left: 30px;
        right: 30px;
        height: 1.5px;
    }

    .groom-name,
    .bride-name {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .ampersand-text {
        font-size: 1.5rem;
        margin: 0 10px;
    }

    .ampersand {
        margin: 20px 0;
        font-size: 2rem;
    }

    .name-subtitle {
        font-size: 0.9rem;
    }

    .ampersand {
        margin: 20px 0;
        font-size: 2rem;
    }

    .wedding-details {
        font-size: 0.9rem;
    }

    .section {
        padding: 60px 15px;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    /* 2-Column Layout adjustments for mobile */
    .section-left .section-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .countdown-item {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .prayer-card {
        padding: 20px;
        border-radius: 12px;
    }

    .prayer-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .arabic-text {
        font-size: 0.95rem;
        padding: 12px;
    }

    .translation {
        font-size: 0.9rem;
    }

    .comment-form {
        padding: 20px;
    }

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

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .btn-submit {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .comment-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .comment-header {
        flex-direction: column;
        gap: 5px;
    }

    .comment-name {
        font-size: 1rem;
    }

    .comment-date {
        font-size: 0.8rem;
    }

    .comment-message {
        font-size: 0.9rem;
    }

    .rsvp-form {
        padding: 20px;
    }

    .radio-group {
        gap: 10px;
    }

    .radio-label {
        font-size: 0.95rem;
        padding: 10px;
    }

    .rsvp-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-value {
        font-size: 1.8rem;
    }

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

    .gallery-swiper {
        max-width: 100%;
        padding: 30px 0;
    }

    .swiper-slide {
        width: 280px !important;
        aspect-ratio: 1;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .footer {
        padding: 30px 15px;
        font-size: 0.9rem;
    }

    /* Event Section Mobile */
    .section-title-center {
        font-size: 1.8rem;
    }

    .event-card {
        border-radius: 15px;
    }

    .event-header {
        padding: 30px 20px;
    }

    .event-name {
        font-size: 1.5rem;
    }

    .event-content {
        padding: 25px 20px;
    }

    .event-details-map {
        gap: 20px;
    }

    .event-details h4 {
        font-size: 1rem;
    }

    .location-name {
        font-size: 1.1rem;
    }

    .location-address {
        font-size: 0.9rem;
    }

    .event-map {
        min-height: 250px;
    }
}

/* Extra Small Devices (< 360px) */
@media (max-width: 360px) {
    .invitation-card {
        padding: 30px 15px;
    }

    .invitation-text {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    .couple-names {
        gap: 10px;
        margin: 20px 0;
    }

    .groom-name,
    .bride-name {
        font-size: 1.6rem;
    }

    .ampersand-text {
        font-size: 1.5rem;
        margin: 0 10px;
    }

    .event-details {
        margin: 25px 0;
        padding: 20px 0;
    }

    .date-day,
    .date-month {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .date-number {
        font-size: 1.8rem;
    }

    .invitation-message {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

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

    .section-left .section-title {
        font-size: 1.2rem;
    }

    .countdown {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .countdown-item {
        padding: 15px 10px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .swiper-slide {
        width: 240px !important;
    }

    .prayer-card {
        padding: 15px;
    }

    .comment-form,
    .rsvp-form {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
    }

    .btn-submit {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Responsive Ornaments & Decorations */
    .ornament {
        font-size: 1rem;
        letter-spacing: 5px;
        margin: 10px 0;
    }

    .frame-decoration {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .divider-ornament {
        font-size: 1rem;
        margin: 12px 0;
    }

    .name-card {
        padding: 15px;
        gap: 8px;
    }

    .name-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .name-parents {
        font-size: 0.9rem;
    }

    .special-message {
        font-size: 0.95rem;
        padding: 15px;
        margin: 20px 0;
    }

    .decoration-line {
        left: 30px;
        right: 30px;
        height: 1.5px;
    }
}
