/* ============================================
   GOLDEN YEARS CONNECT - ROMANTIC THEME
   Colors: Burgundy (#6B1D2F) | Rose Gold (#D4A5A5) 
           Warm Cream (#FFF8F0) | Soft Blush (#F7E6E6)
   Fonts: Playfair Display (serif) + Raleway (sans-serif)
   ============================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;600;700&display=swap');

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #3d2c2c;
    background: #FFF8F0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #6B1D2F;
    transition: all 0.4s ease;
}

a:hover {
    color: #D4A5A5;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- DECORATIVE DIVIDER ---------- */
.divider {
    text-align: center;
    font-size: 1.8rem;
    color: #D4A5A5;
    letter-spacing: 8px;
    margin: 10px 0 20px;
    opacity: 0.6;
}

/* ---------- ADVERTORIAL BADGE ---------- */
.advertorial-badge {
    background: linear-gradient(135deg, #1a0f0f 0%, #3d1a1a 100%);
    color: #D4A5A5;
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #D4A5A5;
    font-family: 'Raleway', sans-serif;
    position: relative;
}

.advertorial-badge::after {
    content: '✦';
    margin-left: 12px;
    color: #f1c40f;
}

.advertorial-badge::before {
    content: '✦';
    margin-right: 12px;
    color: #f1c40f;
}

/* ---------- HEADER ---------- */
header {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(107, 29, 47, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 165, 165, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #3d2c2c;
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 700;
    color: #6B1D2F;
    font-style: italic;
}

.logo small {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    font-weight: 300;
    color: #D4A5A5;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -4px;
}

nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

nav a {
    padding: 8px 18px;
    color: #3d2c2c;
    font-weight: 500;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D4A5A5;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 60%;
}

nav a:hover {
    background: rgba(212, 165, 165, 0.15);
    color: #6B1D2F;
}

nav a.active {
    background: #6B1D2F;
    color: #FFF8F0;
    box-shadow: 0 4px 15px rgba(107, 29, 47, 0.25);
}

nav a.active::after {
    display: none;
}

/* ---------- HERO SECTION ---------- */
.hero {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 60px 0 70px;
    align-items: center;
    min-height: 500px;
    position: relative;
}

.hero::before {
    content: '❤️';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 4rem;
    opacity: 0.08;
    animation: floatHeart 6s ease-in-out infinite;
}

@keyframes floatHeart {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-image {
    flex: 1 1 380px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero-couple.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(107, 29, 47, 0.15);
    position: relative;
    border: 4px solid rgba(212, 165, 165, 0.3);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 29, 47, 0.1) 0%, transparent 70%);
}

.hero-image .placeholder-text {
    background: rgba(107, 29, 47, 0.7);
    backdrop-filter: blur(4px);
    color: #FFF8F0;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 300;
    border: 1px solid rgba(212, 165, 165, 0.3);
    z-index: 1;
}

.hero-text {
    flex: 1 1 380px;
}

.hero-text .romantic-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
    opacity: 0.7;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #3d2c2c;
}

.hero-text h1 span {
    font-weight: 700;
    color: #6B1D2F;
    font-style: italic;
}

.hero-text p {
    font-size: 1.15rem;
    color: #5a4a4a;
    margin-bottom: 28px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, #6B1D2F 0%, #8B2A3F 100%);
    color: #FFF8F0;
    padding: 15px 44px;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(107, 29, 47, 0.35);
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(107, 29, 47, 0.45);
    color: #FFF8F0;
}

.btn-outline {
    background: transparent;
    color: #6B1D2F;
    box-shadow: inset 0 0 0 2px #6B1D2F;
}

.btn-outline:hover {
    background: #6B1D2F;
    color: #FFF8F0;
    box-shadow: 0 6px 25px rgba(107, 29, 47, 0.3);
}

.hero-text .trust-badge {
    margin-top: 18px;
    font-size: 0.9rem;
    color: #8a7a7a;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-text .trust-badge span {
    color: #6B1D2F;
    font-weight: 600;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6px;
    color: #3d2c2c;
}

.section-title span {
    font-weight: 700;
    color: #6B1D2F;
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    color: #8a7a7a;
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
}

/* ---------- FEATURES GRID ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 10px 0 20px;
}

.feature-card {
    background: white;
    padding: 35px 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(212, 165, 165, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4A5A5, #6B1D2F, #D4A5A5);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 29, 47, 0.08);
}

.feature-card .icon {
    font-size: 3.2rem;
    margin-bottom: 12px;
    display: block;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #3d2c2c;
}

.feature-card p {
    color: #7a6a6a;
    font-size: 0.95rem;
    font-weight: 300;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 10px 0 20px;
}

.testimonial-card {
    background: white;
    padding: 30px 28px;
    border-radius: 16px;
    border-left: 5px solid #D4A5A5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(107, 29, 47, 0.06);
}

.testimonial-card .quote-icon {
    color: #D4A5A5;
    font-size: 2.2rem;
    opacity: 0.4;
    margin-bottom: -10px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.02rem;
    color: #3d2c2c;
    font-weight: 300;
}

.testimonial-card .author {
    margin-top: 14px;
    font-style: normal;
    font-weight: 700;
    color: #6B1D2F;
    font-size: 1rem;
}

.testimonial-card .location {
    font-style: normal;
    font-size: 0.85rem;
    color: #8a7a7a;
    font-weight: 300;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: linear-gradient(135deg, #1a0f0f 0%, #3d1a1a 40%, #6B1D2F 100%);
    color: white;
    padding: 65px 30px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '❤️';
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 12rem;
    opacity: 0.04;
}

.cta-section::after {
    content: '❤️';
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 8rem;
    opacity: 0.04;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.cta-section h2 span {
    font-weight: 700;
    color: #f1c40f;
    font-style: italic;
}

.cta-section p {
    font-size: 1.1rem;
    color: #d4c0c0;
    font-weight: 300;
    margin-bottom: 28px;
}

.cta-section .btn {
    background: #f1c40f;
    color: #3d2c2c;
    box-shadow: 0 6px 30px rgba(241, 196, 15, 0.3);
}

.cta-section .btn:hover {
    background: #f7d44a;
    box-shadow: 0 10px 40px rgba(241, 196, 15, 0.4);
    color: #3d2c2c;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
    background: linear-gradient(135deg, #1a0f0f 0%, #3d1a1a 50%, #6B1D2F 100%);
    color: white;
    padding: 55px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '✦';
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 3rem;
    opacity: 0.06;
}

.page-header::after {
    content: '✦';
    position: absolute;
    bottom: 20%;
    right: 5%;
    font-size: 3rem;
    opacity: 0.06;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
}

.page-header h1 span {
    font-weight: 700;
    color: #f1c40f;
    font-style: italic;
}

.page-header p {
    color: #d4c0c0;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 8px auto 0;
}

/* ---------- CONTENT AREA ---------- */
.content-area {
    padding: 30px 0 60px;
}

.content-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 35px 0 12px;
    color: #3d2c2c;
}

.content-area h2 span {
    font-weight: 700;
    color: #6B1D2F;
    font-style: italic;
}

.content-area p {
    margin-bottom: 14px;
    color: #4a3a3a;
    font-weight: 300;
}

.content-area ul, .content-area ol {
    margin: 12px 0 18px 24px;
    color: #4a3a3a;
    font-weight: 300;
}

.content-area li {
    margin-bottom: 6px;
}

/* ---------- CONTACT FORM ---------- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.contact-form-wrapper {
    flex: 1 1 420px;
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.contact-form-wrapper h2 span {
    font-weight: 700;
    color: #6B1D2F;
    font-style: italic;
}

.contact-form {
    background: white;
    padding: 38px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(212, 165, 165, 0.15);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #3d2c2c;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: #6B1D2F;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid #eee8e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    background: #FFFCF9;
    color: #3d2c2c;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4A5A5;
    box-shadow: 0 0 0 4px rgba(212, 165, 165, 0.15);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group .hint {
    font-size: 0.8rem;
    color: #8a7a7a;
    margin-top: 4px;
    font-weight: 300;
}

/* ---------- CONTACT INFO SIDEBAR ---------- */
.contact-info-wrapper {
    flex: 1 1 300px;
}

.contact-info-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.contact-info-wrapper h2 span {
    font-weight: 700;
    color: #6B1D2F;
    font-style: italic;
}

.contact-info-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(212, 165, 165, 0.15);
}

.contact-info-card .info-item {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0e8e0;
}

.contact-info-card .info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-card .info-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4A5A5;
    font-weight: 600;
}

.contact-info-card .info-item .value {
    font-size: 1.05rem;
    color: #3d2c2c;
    font-weight: 400;
    margin-top: 2px;
}

.contact-info-card .info-item .value a {
    color: #6B1D2F;
}

.contact-info-card .info-item .value a:hover {
    color: #D4A5A5;
}

/* ---------- SUCCESS MODAL (POPUP) ---------- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s ease;
}

.modal-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    max-width: 520px;
    width: 92%;
    padding: 45px 40px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '❤️';
    position: absolute;
    top: -40px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.05;
}

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

.modal-content .checkmark {
    font-size: 4.5rem;
    background: linear-gradient(135deg, #6B1D2F, #D4A5A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: popIn 0.6s ease;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #6B1D2F;
    margin: 10px 0 8px;
}

.modal-content p {
    color: #5a4a4a;
    font-weight: 300;
    margin-bottom: 6px;
}

.modal-content .email-highlight {
    font-weight: 600;
    color: #6B1D2F;
    background: #f7e6e6;
    padding: 2px 12px;
    border-radius: 20px;
    display: inline-block;
}

.modal-content .btn-close-modal {
    margin-top: 24px;
    background: #6B1D2F;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content .btn-close-modal:hover {
    background: #8B2A3F;
    transform: scale(1.03);
}

/* ---------- FOOTER ---------- */
footer {
    background: linear-gradient(135deg, #1a0f0f 0%, #2a1a1a 100%);
    color: #b0a0a0;
    padding: 50px 0 25px;
    margin-top: 50px;
    border-top: 2px solid rgba(212, 165, 165, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 165, 0.06);
}

.footer-grid h4 {
    font-family: 'Playfair Display', serif;
    color: #f0e0e0;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 14px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 7px;
}

.footer-grid ul li a {
    color: #9a8a8a;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-grid ul li a:hover {
    color: #D4A5A5;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-bottom .disclosure {
    color: #6a5a5a;
    max-width: 700px;
    margin: 10px auto 0;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.footer-bottom .hearts {
    color: #D4A5A5;
    letter-spacing: 4px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    nav {
        justify-content: center;
        gap: 2px;
    }

    nav a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 30px 0 40px;
        gap: 30px;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .advertorial-badge {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 6px 0;
    }

    .advertorial-badge::before,
    .advertorial-badge::after {
        display: none;
    }
}