/* ============================================
   SENIOR WELLNESS HEALTH - CLEAN & PROFESSIONAL
   Colors: Teal (#2c6e6e) | Gold (#c9a84c)
           White (#ffffff) | Light Gray (#f7f7f5)
   ============================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Georgia&family=Open+Sans:wght@300;400;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #2d2d2d;
    background: #fcfbf9;
}

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

a {
    text-decoration: none;
    color: #2c6e6e;
    transition: all 0.3s ease;
}

a:hover {
    color: #c9a84c;
}

/* ---------- ADVERTORIAL BADGE ---------- */
.advertorial-badge {
    background: #1a2a2a;
    color: #c9a84c;
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 3px solid #c9a84c;
    font-family: 'Open Sans', sans-serif;
}

/* ---------- HEADER ---------- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 110, 110, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

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

.logo {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a2a2a;
}

.logo span {
    font-weight: 700;
    color: #c9a84c;
}

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

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

nav a {
    padding: 8px 18px;
    color: #2d2d2d;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(44, 110, 110, 0.08);
    color: #2c6e6e;
}

nav a.active {
    background: #2c6e6e;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(44, 110, 110, 0.25);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    background: #2c6e6e;
    color: #ffffff;
    padding: 15px 44px;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(44, 110, 110, 0.3);
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(44, 110, 110, 0.4);
    color: #ffffff;
    background: #235a5a;
}

.btn-gold {
    background: #c9a84c;
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    background: #b8953a;
    box-shadow: 0 10px 35px rgba(201, 168, 76, 0.4);
}

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

.hero-image {
    flex: 1 1 380px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(44, 110, 110, 0.12);
    border: 4px solid rgba(201, 168, 76, 0.15);
}

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

.hero-text .icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.hero-text h1 {
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #1a2a2a;
}

.hero-text h1 span {
    font-weight: 700;
    color: #c9a84c;
}

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

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

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

/* ---------- SECTIONS ---------- */
.section-title {
    font-family: Georgia, serif;
    font-size: 2.6rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6px;
    color: #1a2a2a;
}

.section-title span {
    font-weight: 700;
    color: #c9a84c;
}

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

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

.feature-card {
    background: #ffffff;
    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(201, 168, 76, 0.12);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(44, 110, 110, 0.08);
}

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

.feature-card h3 {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1a2a2a;
}

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

/* ---------- PRODUCTS ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    padding: 10px 0 20px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(44, 110, 110, 0.08);
}

.product-card .product-image {
    height: 200px;
    background: #e8e4de;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #999;
    background-size: cover;
    background-position: center;
}

.product-card .product-body {
    padding: 25px 25px 30px;
}

.product-card .product-body .category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a84c;
    font-weight: 700;
}

.product-card .product-body h3 {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    color: #1a2a2a;
    margin: 4px 0 6px;
}

.product-card .product-body .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c6e6e;
}

.product-card .product-body p {
    color: #6a6a6a;
    font-weight: 300;
    font-size: 0.95rem;
    margin: 8px 0 12px;
}

.product-card .product-body ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px;
}

.product-card .product-body ul li {
    padding: 4px 0 4px 28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232c6e6e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") left center no-repeat;
    background-size: 16px;
    font-size: 0.9rem;
    color: #3d3d3d;
}

.product-card .product-body .guarantee {
    font-size: 0.85rem;
    color: #c9a84c;
    font-weight: 600;
    margin: 8px 0 15px;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: linear-gradient(135deg, #1a2a2a 0%, #2c6e6e 100%);
    color: #ffffff;
    padding: 65px 30px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0 20px;
}

.cta-section .cta-badge {
    background: #c9a84c;
    color: #1a2a2a;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

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

.cta-section h2 span {
    font-weight: 700;
    color: #c9a84c;
}

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

/* ---------- PAGE HEADER ---------- */
.page-header {
    background: linear-gradient(135deg, #1a2a2a 0%, #2c6e6e 100%);
    color: #ffffff;
    padding: 55px 0 50px;
    text-align: center;
}

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

.page-header h1 span {
    font-weight: 700;
    color: #c9a84c;
}

.page-header p {
    color: #d0d0d0;
    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: Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 35px 0 12px;
    color: #1a2a2a;
}

.content-area h2 span {
    font-weight: 700;
    color: #c9a84c;
}

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

.content-area ul {
    margin: 12px 0 18px 24px;
    color: #3d3d3d;
    font-weight: 300;
}

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

/* ---------- BLOG ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(44, 110, 110, 0.08);
}

.blog-card .blog-image {
    height: 180px;
    background: #e8e4de;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #999;
    background-size: cover;
    background-position: center;
}

.blog-card .blog-body {
    padding: 20px 22px 25px;
}

.blog-card .blog-body .category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a84c;
    font-weight: 700;
}

.blog-card .blog-body h3 {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: #1a2a2a;
    margin: 4px 0 6px;
}

.blog-card .blog-body .meta {
    font-size: 0.8rem;
    color: #999;
}

.blog-card .blog-body p {
    color: #6a6a6a;
    font-weight: 300;
    font-size: 0.95rem;
    margin: 8px 0 12px;
}

.blog-card .blog-body .read-more {
    font-weight: 600;
    color: #2c6e6e;
}

.blog-card .blog-body .read-more:hover {
    color: #c9a84c;
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
    background: #ffffff;
    padding: 38px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.12);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a2a2a;
    font-size: 0.9rem;
}

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

.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: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: #fffcf9;
    color: #2d2d2d;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c6e6e;
    box-shadow: 0 0 0 4px rgba(44, 110, 110, 0.1);
}

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

/* ---------- SUCCESS MODAL ---------- */
.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;
}

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

.modal-content {
    background: #ffffff;
    max-width: 480px;
    width: 92%;
    padding: 45px 40px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.modal-content .checkmark {
    font-size: 4.5rem;
    background: linear-gradient(135deg, #2c6e6e, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.modal-content h3 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a2a;
    margin: 10px 0 8px;
}

.modal-content p {
    color: #5a5a5a;
    font-weight: 300;
}

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

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

.modal-content .btn-close-modal:hover {
    background: #235a5a;
    transform: scale(1.02);
}

/* ---------- FOOTER ---------- */
footer {
    background: #1a2a2a;
    color: #b0b0b0;
    padding: 50px 0 25px;
    margin-top: 50px;
    border-top: 3px solid #c9a84c;
}

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

.footer-grid h4 {
    font-family: Georgia, serif;
    color: #f0f0f0;
    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: #9a9a9a;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-form {
        padding: 20px;
    }

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