/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #1a2a5e;
    --navy-dark: #0f1a3d;
    --pink: #e8a0a0;
    --pink-light: #f5d5d5;
    --pink-pale: #fdf0f0;
    --white: #ffffff;
    --text: #333;
    --text-light: #666;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pink-light);
    transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(26,42,94,0.1); }
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo-img { height: 55px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--navy);
    font-weight: 500; font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 10px 22px; border-radius: 25px;
}
.nav-cta:hover { background: var(--pink) !important; }
.hamburger {
    display: none; background: none; border: none;
    font-size: 1.5rem; cursor: pointer; color: var(--navy);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2d4a8a 100%);
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 24px 80px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232,160,160,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 20%, rgba(232,160,160,0.1) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-tag {
    display: inline-block;
    background: rgba(232,160,160,0.2);
    color: var(--pink-light);
    border: 1px solid rgba(232,160,160,0.4);
    padding: 8px 20px; border-radius: 25px;
    font-size: 0.9rem; font-weight: 500; margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white); line-height: 1.2; margin-bottom: 24px;
}
.hero-sub {
    font-size: 1.15rem; color: #c8d4f0;
    max-width: 600px; margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    background: var(--pink); color: var(--navy-dark);
    padding: 14px 32px; border-radius: 30px;
    text-decoration: none; font-weight: 600; font-size: 1rem;
    transition: all 0.3s; display: inline-block;
}
.btn-primary:hover { background: var(--pink-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,160,160,0.4); }
.btn-secondary {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 32px; border-radius: 30px;
    text-decoration: none; font-weight: 600; font-size: 1rem;
    transition: all 0.3s; display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    color: var(--pink);
    font-weight: 600; font-size: 0.85rem;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 12px;
}
.section-tag-light {
    display: inline-block;
    color: var(--pink-light);
    font-weight: 600; font-size: 0.85rem;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--navy); margin-bottom: 16px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text .section-tag { display: block; }
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--navy); margin-bottom: 20px;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.about-stats { display: flex; gap: 32px; margin-top: 36px; }
.stat { text-align: center; }
.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--navy); margin-bottom: 4px;
}
.stat p { color: var(--pink); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.about-cards { display: flex; flex-direction: column; gap: 24px; }
.vm-card {
    background: var(--pink-pale);
    border: 1px solid var(--pink-light);
    border-left: 4px solid var(--pink);
    padding: 28px; border-radius: 12px;
}
.vm-icon { font-size: 2rem; margin-bottom: 12px; }
.vm-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
.vm-card p { color: var(--text-light); font-size: 0.97rem; }

/* ===== PRODUCTS ===== */
.products { padding: 100px 0; background: var(--pink-pale); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
    background: var(--white);
    border-radius: 16px; padding: 36px 28px;
    box-shadow: 0 2px 20px rgba(26,42,94,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,42,94,0.12); }
.product-card.featured {
    background: var(--navy);
    color: var(--white);
}
.product-card.featured h3 { color: var(--white); }
.product-card.featured p { color: #c8d4f0; }
.product-card.featured ul li { color: var(--pink-light); }
.product-card.featured ul li::before { background: var(--pink); }
.product-number {
    font-size: 3.5rem; font-weight: 800;
    color: var(--pink-light); line-height: 1;
    margin-bottom: 8px; font-family: 'Playfair Display', serif;
}
.product-card.featured .product-number { color: rgba(232,160,160,0.3); }
.product-icon { font-size: 2.2rem; margin-bottom: 12px; }
.product-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 10px; font-weight: 700; }
.product-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.product-card ul { list-style: none; }
.product-card ul li {
    color: var(--text); font-size: 0.92rem;
    padding: 5px 0; padding-left: 16px; position: relative;
}
.product-card ul li::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pink);
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: #c8d4f0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(232,160,160,0.2);
    border-radius: 16px; padding: 36px 28px; text-align: center;
    transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.12); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { color: var(--pink-light); font-size: 1.15rem; margin-bottom: 12px; font-weight: 600; }
.why-card p { color: #a0b0d0; font-size: 0.95rem; line-height: 1.7; }

/* ===== VALUES ===== */
.values { padding: 100px 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-item {
    text-align: center; padding: 32px 20px;
    border-radius: 12px; border: 1px solid var(--pink-light);
    transition: all 0.3s;
}
.value-item:hover {
    background: var(--pink-pale);
    border-color: var(--pink);
    transform: translateY(-4px);
}
.value-icon { font-size: 2.2rem; margin-bottom: 12px; }
.value-item h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; font-weight: 700; }
.value-item p { color: var(--text-light); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--pink-pale); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
    font-size: 1.5rem; width: 52px; height: 52px;
    background: var(--navy); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-item h4 { color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.contact-item a, .contact-item p { color: var(--text-light); text-decoration: none; font-size: 0.97rem; }
.contact-item a:hover { color: var(--pink); }
.contact-form-wrapper {
    background: var(--white); border-radius: 16px;
    padding: 40px; box-shadow: 0 4px 30px rgba(26,42,94,0.08);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--navy); font-weight: 500; margin-bottom: 8px; font-size: 0.93rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--pink-light);
    border-radius: 10px; font-size: 0.97rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--pink);
}
.form-group textarea { resize: vertical; }
.btn-submit {
    width: 100%; padding: 14px;
    background: var(--navy); color: var(--white);
    border: none; border-radius: 30px;
    font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.btn-submit:hover { background: var(--pink); color: var(--navy-dark); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark); color: #a0b0d0;
    padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 60px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.93rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; font-weight: 600; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: #a0b0d0; text-decoration: none; font-size: 0.93rem; transition: color 0.2s; }
.footer ul li a:hover { color: var(--pink); }
.footer-contact p { margin-bottom: 10px; font-size: 0.93rem; }
.footer-contact a { color: #a0b0d0; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--pink); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0; text-align: center;
    font-size: 0.88rem; color: #6a7a9a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .products-grid, .why-grid, .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-stats { gap: 20px; }
}
@media (max-width: 600px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .nav-links.open { display: flex; }
    .hamburger { display: block; }
    .products-grid, .why-grid, .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
}
