/* ========== CSS Reset & Base ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #1e3a5f;
    --color-primary-dark: #152a45;
    --color-secondary: #f97316;
    --color-secondary-dark: #ea580c;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-800: #1f2937;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ========== Consent Overlay ========== */
.consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.consent-overlay.hidden { display: none; }

.consent-modal {
    background-color: var(--color-white);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.consent-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 24px 32px;
    border-radius: 16px 16px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.consent-header h2 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.consent-header h2 svg { width: 28px; height: 28px; }

.consent-body { padding: 32px; }

.consent-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-gray-200);
}

.consent-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.consent-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consent-section p {
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.consent-section ul { margin-left: 20px; margin-bottom: 12px; }

.consent-section ul li {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px;
}

.consent-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.consent-highlight {
    background-color: var(--color-gray-50);
    border-left: 4px solid var(--color-secondary);
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
}

.consent-highlight p { margin-bottom: 0; font-size: 13px; }

.consent-footer {
    padding: 24px 32px;
    background-color: var(--color-gray-50);
    border-radius: 0 0 16px 16px;
    text-align: center;
}

.consent-footer .btn {
    min-width: 200px;
    padding: 16px 48px;
    font-size: 18px;
}

.consent-footer p {
    margin-top: 12px;
    font-size: 12px;
    color: var(--color-text-light);
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.header.scrolled .nav-link { color: var(--color-text); }
.header.scrolled .nav-link:hover { color: var(--color-secondary); }
.header.scrolled .logo { color: var(--color-primary); }

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span { color: var(--color-secondary); }

.nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    border-radius: 6px;
}

.nav-link:hover { color: var(--color-secondary); }
.nav-link.active { color: var(--color-secondary); }

.header-cta { display: flex; align-items: center; gap: 16px; }

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}

.header.scrolled .header-contact { color: var(--color-text); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg { width: 28px; height: 28px; color: var(--color-white); }
.header.scrolled .mobile-menu-btn svg { color: var(--color-text); }

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(249, 115, 22, 0.2);
    color: var(--color-secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span { color: var(--color-secondary); }

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat { text-align: left; }

.hero-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Section Styles ========== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--color-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
}

/* ========== Services Section ========== */
.services {
    padding: 100px 0;
    background-color: var(--color-gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--color-gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-secondary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon svg { width: 40px; height: 40px; color: var(--color-white); }

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 15px;
}

.service-link:hover { gap: 12px; }

/* ========== About Section ========== */
.about { padding: 100px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.about-feature { display: flex; align-items: flex-start; gap: 12px; }

.about-feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature-icon svg { width: 14px; height: 14px; color: var(--color-white); }

.about-feature span {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
}

.about-image { position: relative; }

.about-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main svg { width: 120px; height: 120px; color: rgba(255, 255, 255, 0.2); }

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.about-experience-number { font-size: 48px; font-weight: 800; line-height: 1; }

.about-experience-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ========== Promise Section ========== */
.promise {
    padding: 100px 0;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.promise .section-badge { background-color: rgba(255, 255, 255, 0.1); color: var(--color-white); }
.promise .section-title { color: var(--color-white); }
.promise .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.promise-card {
    text-align: center;
    padding: 32px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.promise-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.promise-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.promise-icon svg { width: 32px; height: 32px; color: var(--color-white); }

.promise-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }

.promise-card p { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }

/* ========== CTA Section ========== */
.cta {
    padding: 100px 0;
    background-color: var(--color-gray-50);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* ========== Footer ========== */
.footer {
    background-color: var(--color-gray-800);
    color: var(--color-white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.7;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover { background-color: var(--color-secondary); }

.footer-social svg { width: 20px; height: 20px; color: var(--color-white); }

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 15px; }
.footer-links a:hover { color: var(--color-secondary); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 14px; }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a { color: rgba(255, 255, 255, 0.5); font-size: 14px; }
.footer-legal a:hover { color: var(--color-secondary); }

/* ========== Mobile Menu ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--color-white);
    z-index: 2000;
    padding: 80px 24px 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active { right: 0; }

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-close svg { width: 24px; height: 24px; color: var(--color-text); }

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-nav-link:hover { color: var(--color-secondary); }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

/* ========== Page Hero (for inner pages) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Legal Content (Privacy, Terms, SMS) ========== */
.legal-content {
    padding: 80px 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-gray-200);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.legal-section p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    color: var(--color-text-light);
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

.legal-highlight {
    background-color: var(--color-gray-50);
    border-left: 4px solid var(--color-secondary);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
}

.legal-highlight p {
    margin-bottom: 0;
}

.legal-highlight h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.legal-highlight ul {
    margin-bottom: 0;
}

/* ========== Story Section (About page) ========== */
.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.story-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.story-image-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.story-image-placeholder span {
    font-size: 18px;
    font-weight: 600;
}

/* ========== Stats Section (About page) ========== */
.stats-section {
    padding: 60px 0;
    background-color: var(--color-gray-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Values Section (About page) ========== */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========== Team Section (About page) ========== */
.team-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    text-align: center;
}

.team-content {
    max-width: 700px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.team-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ========== Contact Section ========== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.contact-info-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--color-secondary);
}

/* ========== Contact Form ========== */
.contact-form-wrapper {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    background-color: var(--color-white);
    transition: var(--transition);
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
    border-color: #ef4444;
}

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

/* ========== SMS Consent Box ========== */
.sms-consent-box {
    background-color: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.sms-consent-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.sms-consent-header svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.sms-disclosure {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-200);
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.sms-disclosure a {
    color: var(--color-secondary);
    font-weight: 500;
}

.sms-disclosure a:hover {
    text-decoration: underline;
}

/* ========== Form Footer ========== */
.form-footer {
    text-align: center;
}

.form-footer .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
}

.form-legal {
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-text-light);
}

.form-legal a {
    color: var(--color-secondary);
}

.form-legal a:hover {
    text-decoration: underline;
}

/* ========== Form Success ========== */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: #22c55e;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* ========== About Home Section (index page) ========== */
.about-home {
    padding: 100px 0;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.about-image-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.about-image-placeholder span {
    font-size: 18px;
    font-weight: 600;
}

/* ========== Promise Section (index page) ========== */
.promise-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.promise-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}

.promise-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    line-height: 1.7;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.promise-item {
    text-align: center;
    padding: 32px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.promise-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.promise-item .promise-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.promise-item .promise-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.promise-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.promise-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========== Consent Content (simplified for legal pages) ========== */
.consent-content {
    padding: 32px;
}

.consent-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.consent-content > p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.consent-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.consent-links a {
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 14px;
}

.consent-links a:hover {
    text-decoration: underline;
}

.consent-content .btn {
    width: 100%;
    margin-bottom: 16px;
}

.consent-content > p:last-child {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ========== Section Header h2 ========== */
.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
}

/* ========== About Feature SVG ========== */
.about-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 42px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image { order: -1; }
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav, .header-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding-top: 100px; }
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .hero-stat-number { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 32px; }
    .about-features { grid-template-columns: 1fr; }
    .about-experience { position: relative; bottom: 0; right: 0; margin-top: 24px; }
    .promise-grid { grid-template-columns: 1fr; }
    .cta h2 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .consent-header, .consent-body, .consent-footer { padding: 20px; }
    .consent-header h2 { font-size: 20px; }
    .page-hero { padding: 120px 0 60px; }
    .page-hero h1 { font-size: 32px; }
    .legal-content { padding: 40px 0; }
    .legal-section h2 { font-size: 20px; }
    .story-content h2 { font-size: 28px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item .stat-number { font-size: 36px; }
    .values-grid { grid-template-columns: 1fr; }
    .team-content h2 { font-size: 28px; }
    .contact-info h2 { font-size: 24px; }
    .contact-form-wrapper { padding: 24px; }
    .contact-form-wrapper h2 { font-size: 22px; }
    .form-row { grid-template-columns: 1fr; }
    .consent-content { padding: 24px; }
    .consent-content h2 { font-size: 20px; }
    .section-header h2 { font-size: 32px; }
}
