/* assets/css/style.css */
:root {
    --navy: #1D3150;
    --teal: #2AAAB0;
    --white: #ffffff;
    --light-gray: #f4f6f8;
    --dark-gray: #333;
    --font-main: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-main); line-height: 1.6; color: var(--dark-gray); background-color: var(--light-gray); }

/* Utility Classes */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; cursor: pointer; border: none; font-size: 16px; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #1f8a8f; transform: translateY(-2px); }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.bg-light { background: var(--light-gray); }

/* Header */
header { background: var(--white); padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: var(--navy); text-decoration: none; }
.logo span { color: var(--teal); }
nav ul { list-style: none; display: flex; gap: 30px; padding: 0; margin: 0; }
nav a { text-decoration: none; color: var(--navy); font-weight: 500; }
nav a:hover { color: var(--teal); }

/* Hero Section */
.hero { background: var(--navy); color: var(--white); padding: 100px 0; text-align: center; }
.hero h1 { font-size: 48px; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 20px; color: #cbd5e1; margin-bottom: 40px; }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.hero .btn-outline { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.hero .btn-outline:hover { background: var(--white); color: var(--navy); }
.hero-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; align-items: center; text-align: left; }
.hero-copy .hero-eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; color: #9ad9db; margin-bottom: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; }
.hero-quiz { display: flex; justify-content: center; }
.quiz-card { background: rgba(255,255,255,0.08); padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.15); max-width: 360px; }
.quiz-card h3 { font-size: 22px; margin-bottom: 10px; }
.quiz-card p { font-size: 16px; color: #d5dee9; margin-bottom: 20px; }
.quiz-buttons { display: grid; gap: 10px; }
.quiz-buttons .btn { width: 100%; text-align: center; }
.quiz-skip { color: #d5dee9; text-decoration: underline; font-weight: 500; text-align: center; margin-top: 10px; }
.quiz-proof { margin-top: 20px; font-size: 14px; color: #bcd0e5; }

/* Vehis Widget Section */
.vehis-section { background: var(--white); }
.vehis-container {
    width: 100%;
    min-height: 800px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}
#v-embed { width: 100% !important; border: none; min-height: 800px; }

/* Offer Grid */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.card { background: var(--white); border: 1px solid #eee; border-radius: 12px; padding: 30px; transition: 0.3s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--teal); }
.card-icon { font-size: 40px; margin-bottom: 20px; color: var(--teal); }
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p { flex-grow: 1; color: #666; margin-bottom: 20px; }
.card-meta { font-size: 14px; color: #8b97a7; margin-bottom: 20px; }

/* Segments */
.segment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.segment-card { background: var(--white); border-radius: 16px; padding: 30px; border: 1px solid #e6ebf1; display: flex; flex-direction: column; gap: 20px; }
.segment-card ul { padding-left: 20px; color: #5f6b7a; }
.segment-card li { margin-bottom: 8px; }
.segment-badge { display: inline-block; background: var(--navy); color: var(--white); padding: 4px 12px; border-radius: 999px; font-size: 12px; letter-spacing: 0.08em; }
.segment-badge-light { background: var(--teal); }
.segment-header h3 { color: var(--navy); margin-top: 10px; }

/* Trust */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.trust-card { background: var(--white); padding: 25px; border-radius: 12px; border: 1px solid #e8edf3; }
.trust-card h3 { color: var(--navy); margin-bottom: 10px; }
.logo-strip { margin-top: 30px; text-align: center; color: #7d8a9b; font-weight: 500; }

/* Calculator */
.calculator-box { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); max-width: 600px; margin: 40px auto 0; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--navy); }
.form-control { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 16px; font-family: var(--font-main); }
.calc-result { margin-top: 30px; padding: 20px; background: var(--navy); color: var(--white); border-radius: 8px; text-align: center; }
.rate-amount { font-size: 32px; font-weight: bold; color: var(--teal); margin: 10px 0; }

.section-cta { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 25px; color: #6b7280; }

/* Contact Form */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 40px; }
.contact-info h3 { color: var(--navy); margin-bottom: 20px; }
.info-item { display: flex; align-items: center; margin-bottom: 20px; font-size: 16px; }
.info-item .icon { width: 40px; height: 40px; background: #e0f2f3; color: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; font-size: 18px; }
.contact-form { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; margin-top: 40px; }
.blog-card { background: var(--white); padding: 25px; border-radius: 12px; border: 1px solid #e8edf3; display: flex; flex-direction: column; gap: 12px; }
.blog-card a { color: var(--teal); font-weight: 600; text-decoration: none; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; margin-top: 40px; }
.testimonial-card { background: var(--white); padding: 25px; border-radius: 12px; border: 1px solid #e8edf3; }
.testimonial-card p { color: #4b5563; margin-bottom: 15px; }

/* Alerts */
.alert { padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* Footer */
footer { background: var(--navy); color: var(--white); padding: 50px 0; text-align: center; margin-top: auto; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero { text-align: left; padding: 80px 0; }
    .hero-actions { flex-direction: column; }
    .contact-wrapper { grid-template-columns: 1fr; }
    nav ul { display: none; }
    .container { padding: 0 15px; }
}
