/* ============================================================
   Carasso Nadlan – Landing Page Template
   Minimal RTL responsive baseline. Replace with project design.
   ============================================================ */

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

html {
    font-family: 'Arial', 'Heebo', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1a1a1a;
}

body {
    background: #f5f5f5;
    min-height: 100vh;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== Hero ===== */
.hero {
    text-align: center;
    padding: 40px 20px;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 12px; }
.hero .tagline { font-size: 1.25rem; color: #555; }

/* ===== Form ===== */
.form-container {
    max-width: 480px;
    margin: 40px auto;
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus {
    outline: 2px solid #0066cc;
    border-color: transparent;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #555;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

button#btnSubmit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: #0066cc;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

button#btnSubmit:hover:not(:disabled) {
    background: #0052a3;
}

button#btnSubmit:disabled {
    background: #999;
    cursor: wait;
}

/* ===== Footer ===== */
.footer {
    text-align: center;
    padding: 40px 20px 20px;
    color: #666;
    font-size: 0.9rem;
}

.footer a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 8px;
}

.footer a:hover { text-decoration: underline; }

.phone-cta {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 16px;
    background: #0066cc;
    color: #fff !important;
    border-radius: 8px;
    font-weight: bold;
}

.disclaimer { margin-top: 16px; font-size: 0.75rem; color: #888; }

/* ===== Thank You Page ===== */
.thank-you-container {
    text-align: center;
    padding: 80px 20px;
}

.thank-you-container h1 { font-size: 3rem; margin-bottom: 16px; color: #0066cc; }
.thank-you-message { font-size: 1.25rem; margin-bottom: 32px; }

.back-link {
    display: inline-block;
    padding: 12px 24px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

/* ============================================================
   Responsive breakpoints (per Carasso standard)
   ============================================================ */

/* 1025px - 1440px: scaled desktop */
@media (max-width: 1440px) and (min-width: 1025px) {
    /* project-specific adjustments here */
}

/* 769px - 1024px: tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero h1 { font-size: 2rem; }
}

/* ≤ 768px: mobile */
@media (max-width: 768px) {
    .container { padding: 12px; }
    .hero { padding: 24px 12px; }
    .hero h1 { font-size: 1.75rem; }
    .hero .tagline { font-size: 1rem; }
    .form-container { padding: 20px; margin: 20px auto; }
    .thank-you-container h1 { font-size: 2rem; }
}
