* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0A0A0A;
    color: #F5F5F5;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text h1, .nav-links a, .price-card h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== HEADER ========== */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #D4AF37;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37, #F5C542);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 10px;
    color: #B8860B;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #F5F5F5;
    transition: 0.3s;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
    color: #D4AF37;
}

.btn-start {
    background: linear-gradient(135deg, #D4AF37, #F5C542);
    color: #1A1A1A !important;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    transition: 0.3s;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    background: #D4AF37;
    color: #1A1A1A;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content h2 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content h2 span {
    color: #D4AF37;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #F5C542);
    color: #1A1A1A;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #1A1A1A;
}

/* ========== SERVICES SECTION ========== */
.services-section, .how-it-works {
    background: #1A1A1A;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #D4AF37;
}

.section-sub {
    text-align: center;
    color: #AAAAAA;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #111111;
    padding: 40px 24px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: 0.3s;
}

.service-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.service-card i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
}

/* ========== FEATURED WEDDING ========== */
.featured-wedding {
    padding: 80px 0;
    background: #0A0A0A;
}

.wedding-card {
    background: #111111;
    border: 1px solid #D4AF37;
    border-radius: 40px;
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wedding-card h3 {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 16px;
}

.wedding-card .date {
    font-size: 28px;
    margin: 20px 0;
    color: #F5F5F5;
}

/* ========== SAMPLE INVITATION CARD (Dynamic from DB) ========== */
.invitation-preview {
    background: #0D0D0D;
    padding: 60px 0;
}

.preview-card {
    max-width: 600px;
    margin: 0 auto;
    background: #1A1A1A;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #D4AF37;
    text-align: center;
    transition: 0.3s;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.preview-header {
    margin-bottom: 20px;
}

.preview-header .icon {
    color: #D4AF37;
    font-size: 24px;
}

.preview-header h3 {
    color: #D4AF37;
    font-size: 28px;
    margin-top: 10px;
}

.preview-message {
    color: #AAAAAA;
    margin: 20px 0;
    font-style: italic;
    font-size: 16px;
}

.preview-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.countdown-item {
    background: #D4AF37;
    color: #1A1A1A;
    padding: 15px 20px;
    border-radius: 15px;
    min-width: 85px;
    text-align: center;
}

.countdown-number {
    font-size: 28px;
    font-weight: bold;
}

.countdown-label {
    font-size: 11px;
    text-transform: uppercase;
}

.preview-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.preview-footer p {
    color: #D4AF37;
    font-size: 13px;
    font-style: italic;
}

/* ========== QUICK FORM ========== */
.quick-form-section {
    padding: 80px 0;
    background: #1A1A1A;
}

.form-box {
    max-width: 600px;
    margin: 0 auto;
    background: #111111;
    border: 1px solid #D4AF37;
    border-radius: 32px;
    padding: 50px;
    text-align: center;
}

.form-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #D4AF37;
}

.form-box input {
    width: 100%;
    padding: 14px 18px;
    margin: 12px 0;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: 28px;
    color: #F5F5F5;
}

.form-box input:focus {
    outline: none;
    border-color: #D4AF37;
}

.form-box .note {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}

/* ========== HOW IT WORKS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37, #F5C542);
    color: #1A1A1A;
    font-size: 32px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.text-center {
    text-align: center;
}

/* ========== FOOTER ========== */
footer {
    background: #1A1A1A;
    color: #AAAAAA;
    padding: 60px 0 30px;
    border-top: 1px solid #D4AF37;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h4 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.footer-col a {
    color: #AAAAAA;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: #D4AF37;
}

.social-icons a {
    display: inline-block;
    margin-right: 20px;
    font-size: 20px;
    color: #AAAAAA;
}

.social-icons a:hover {
    color: #D4AF37;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #2A2A2A;
    font-size: 12px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 850px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .hero-content h2 {
        font-size: 32px;
    }
    .container {
        padding: 0 20px;
    }
    .services-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    .preview-countdown {
        gap: 10px;
    }
    .countdown-item {
        padding: 10px 15px;
        min-width: 70px;
    }
    .countdown-number {
        font-size: 20px;
    }
    .logo-img {
        height: 35px;
    }
    .logo-text h1 {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .logo {
        gap: 8px;
    }
    .logo-img {
        height: 30px;
    }
    .logo-text h1 {
        font-size: 18px;
    }
    .logo-text span {
        font-size: 8px;
    }
}