/* ====================================
   CSS Variables & Reset
   ==================================== */
:root {
    --primary-color: #00A86B;
    --primary-dark: #008555;
    --primary-light: #E8F5F1;
    --secondary-color: #1A4D7D;
    --secondary-dark: #0F3A5F;
    --accent-color: #FF6B35;
    --text-dark: #1A1A2E;
    --text-medium: #4A4A5E;
    --text-light: #6E6E7E;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #1A2332;
    --border-color: #E0E0E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ====================================
   Container & Layout
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   Navigation
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--bg-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--bg-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #1A4D7D 0%, #0F3A5F 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 168, 107, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--bg-white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
}

.hero-title .highlight {
    color: var(--primary-color);
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.quote-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-align: center;
    margin-top: 1rem;
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.badge-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.badge-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ====================================
   Stats Section
   ==================================== */
.stats {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    margin: 0 auto 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* ====================================
   Mission Section
   ==================================== */
.mission {
    background: var(--primary-light);
    padding: 80px 0;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    font-family: 'Raleway', sans-serif;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ====================================
   Benefits Section
   ==================================== */
.benefits {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ====================================
   Trust Section
   ==================================== */
.trust-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.trust-logo {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ====================================
   Process Preview
   ==================================== */
.process-preview {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ====================================
   Testimonials
   ==================================== */
.testimonials {
    padding: 80px 0;
    background: var(--primary-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ====================================
   Page Header
   ==================================== */
.page-header {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--bg-white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ====================================
   How It Works - Step Sections
   ==================================== */
.work-step {
    padding: 80px 0;
    background: var(--bg-white);
}

.work-step.alternate {
    background: var(--bg-light);
}

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

.work-step.alternate .step-content {
    direction: rtl;
}

.work-step.alternate .step-text {
    direction: ltr;
}

.step-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-num {
    color: var(--bg-white);
    font-size: 2rem;
    font-weight: 800;
}

.step-text h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.step-text h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.step-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ====================================
   How Benefits Section
   ==================================== */
.how-benefits {
    padding: 80px 0;
    background: var(--primary-light);
    text-align: center;
}

.how-benefits .section-title {
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* ====================================
   FAQ Section
   ==================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ====================================
   Plans Page
   ==================================== */
.plans-quote {
    padding: 60px 0;
    background: var(--bg-light);
}

.quote-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
}

.quote-box h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.inline-quote-form .form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.inline-quote-form .btn-primary {
    width: 100%;
}

/* ====================================
   Plans Grid
   ==================================== */
.plans-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.plan-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.plan-tagline {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.feature-item:last-child {
    border-bottom: none;
}

.btn-plan {
    width: 100%;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Raleway', sans-serif;
}

.btn-plan:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ====================================
   Comparison Table
   ==================================== */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.table-wrapper {
    overflow-x: auto;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: var(--primary-light);
}

/* ====================================
   Why Us Page
   ==================================== */
.trust-section-detailed {
    padding: 80px 0;
    background: var(--bg-white);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.badge-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.badge-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.badge-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ====================================
   Reviews Section
   ==================================== */
.reviews-section {
    padding: 80px 0;
    background: var(--primary-light);
}

.review-highlight {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.stars-large {
    font-size: 2rem;
    color: #FFB800;
    margin-bottom: 1.5rem;
}

.review-highlight blockquote {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.review-author strong {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.review-author span {
    color: var(--text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.review-card .stars {
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-card strong {
    color: var(--text-dark);
}

/* ====================================
   Partners Section
   ==================================== */
.partners-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.partner-spotlight {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 3rem;
}

.partner-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.partner-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.partner-logo-large {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
}

/* ====================================
   Team Section
   ==================================== */
.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-image {
    margin: 3rem 0;
}

.team-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.team-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ====================================
   Community Section
   ==================================== */
.community-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.charity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.charity-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.charity-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.charity-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ====================================
   Difference Section
   ==================================== */
.difference-section {
    padding: 80px 0;
    background: var(--primary-light);
}

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

.difference-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.difference-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diff-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.difference-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.difference-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ====================================
   Contact Page
   ==================================== */
.contact-header {
    background-image: linear-gradient(rgba(26, 77, 125, 0.9), rgba(15, 58, 95, 0.9)), 
                      url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.char-count {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.form-success p {
    color: var(--text-medium);
}

/* ====================================
   Contact Info Cards
   ==================================== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-color);
}

.info-card h4 {
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.info-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.info-detail svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.phone-number {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.availability {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.resource-links {
    list-style: none;
}

.resource-links li {
    margin-bottom: 0.8rem;
}

.resource-links a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.resource-links a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

/* ====================================
   Animations
   ==================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .benefits-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid,
    .badges-grid,
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-content {
        grid-template-columns: 1fr;
    }
    
    .work-step.alternate .step-content {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-spotlight {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-grid,
    .inline-quote-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .process-grid,
    .testimonials-grid,
    .stats-grid,
    .badges-grid,
    .trust-logos,
    .reviews-grid,
    .team-values,
    .charity-grid,
    .difference-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .table-wrapper {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
}
