/* ==========================================================================
   SimbaCareUSA Premium Global Stylesheet
   File: /assets/css/style.css
   ========================================================================== */

/* Reset */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Root Variables */
:root{
    --bg:#ffffff;
    --bg-soft:#f8fafc;
    --text:#111827;
    --text-light:#6b7280;
    --border:#e5e7eb;
    --primary:#0f766e;
    --primary-hover:#115e59;
    --dark:#0b1220;
    --radius:16px;
    --shadow:0 10px 30px rgba(0,0,0,.06);
    --container:1200px;
}

/* Base */
html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--bg);
    color:var(--text);
    font-size:16px;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

input,
textarea,
button{
    font:inherit;
}

/* Layout */
.container{
    width:100%;
    max-width:var(--container);
    margin:0 auto;
    padding:0 20px;
}

section{
    padding:80px 0;
}

.alt-bg{
    background:var(--bg-soft);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
}

.site-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:76px;
    gap:20px;
}

.logo{
    font-size:26px;
    font-weight:800;
    color:var(--dark);
    letter-spacing:-0.5px;
}

.main-nav ul{
    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav a{
    font-weight:600;
    color:var(--text);
    transition:.2s ease;
}

.main-nav a:hover,
.main-nav a.active{
    color:var(--primary);
}

.cta-btn,
.btn-primary{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:14px 22px;
    border-radius:12px;
    font-weight:700;
    transition:.2s ease;
    border:none;
    cursor:pointer;
}

.cta-btn:hover,
.btn-primary:hover{
    background:var(--primary-hover);
    transform:translateY(-1px);
}

.btn-secondary{
    display:inline-block;
    padding:14px 22px;
    border:1px solid var(--border);
    border-radius:12px;
    font-weight:700;
    transition:.2s ease;
}

.btn-secondary:hover{
    border-color:var(--primary);
    color:var(--primary);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section,
.page-hero{
    padding:100px 0;
    background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.hero-content,
.page-hero{
    max-width:760px;
}

.hero-badge{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 14px;
    border-radius:999px;
    background:#ecfeff;
    color:var(--primary);
    font-size:14px;
    font-weight:700;
}

h1{
    font-size:56px;
    line-height:1.1;
    letter-spacing:-1px;
    margin-bottom:18px;
    color:var(--dark);
}

.hero-content p,
.page-hero p{
    font-size:20px;
    color:var(--text-light);
    max-width:680px;
}

.hero-actions{
    margin-top:30px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.section-head h2,
.content-block h2{
    font-size:40px;
    line-height:1.2;
    margin-bottom:14px;
    color:var(--dark);
}

.section-head p,
.content-block p{
    color:var(--text-light);
    font-size:18px;
}

/* Cards */
.card-grid,
.trust-grid,
.footer-grid,
.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.resource-card,
.trust-box,
.newsletter-box,
.contact-form-box,
.contact-info{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px;
    box-shadow:var(--shadow);
}

.resource-card h3{
    font-size:24px;
    line-height:1.3;
    margin-bottom:12px;
}

.resource-card p,
.trust-box p,
.contact-info p{
    color:var(--text-light);
}

.resource-card:hover{
    transform:translateY(-4px);
    transition:.25s ease;
}

/* Content Blocks */
.content-block{
    max-width:860px;
    margin:0 auto;
}

.content-block p{
    margin-bottom:18px;
}

.legal-list{
    margin-top:14px;
    padding-left:18px;
}

.legal-list li{
    list-style:disc;
    margin-bottom:10px;
    color:var(--text-light);
}

/* Forms */
form{
    margin-top:20px;
}

.form-group{
    margin-bottom:18px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
}

input,
textarea{
    width:100%;
    border:1px solid var(--border);
    border-radius:12px;
    padding:14px 16px;
    background:#fff;
    outline:none;
}

input:focus,
textarea:focus{
    border-color:var(--primary);
}

/* Newsletter */
.newsletter-box{
    text-align:center;
    max-width:760px;
    margin:0 auto;
}

.newsletter-box h2{
    font-size:40px;
    margin-bottom:12px;
}

.newsletter-box p{
    color:var(--text-light);
}

.newsletter-box form{
    display:flex;
    gap:12px;
    margin-top:24px;
    justify-content:center;
    flex-wrap:wrap;
}

.newsletter-box input{
    max-width:360px;
}

/* Footer */
.site-footer{
    background:var(--dark);
    color:#fff;
    padding:70px 0 30px;
}

.footer-grid{
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:30px;
}

.footer-logo{
    font-size:28px;
    margin-bottom:14px;
}

.footer-col p,
.footer-links a{
    color:rgba(255,255,255,.75);
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a:hover{
    color:#fff;
}

.footer-col h4{
    margin-bottom:14px;
}

.footer-col input{
    background:#111827;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    margin-bottom:12px;
}

.footer-col button{
    width:100%;
    border:none;
    background:var(--primary);
    color:#fff;
    padding:14px;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:rgba(255,255,255,.6);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1024px){

    h1{
        font-size:46px;
    }

    .card-grid,
    .trust-grid,
    .footer-grid,
    .contact-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:768px){

    .main-nav{
        display:none;
    }

    h1{
        font-size:38px;
    }

    .section-head h2,
    .content-block h2,
    .newsletter-box h2{
        font-size:32px;
    }

    .hero-content p,
    .page-hero p{
        font-size:18px;
    }

    .card-grid,
    .trust-grid,
    .footer-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero-section,
    .page-hero,
    section{
        padding:70px 0;
    }

    .hero-actions{
        flex-direction:column;
        align-items:flex-start;
    }

    .newsletter-box form{
        flex-direction:column;
    }

    .newsletter-box input,
    .newsletter-box button{
        width:100%;
        max-width:100%;
    }
}

@media (max-width:480px){

    .logo{
        font-size:22px;
    }

    h1{
        font-size:32px;
    }

    .container{
        padding:0 16px;
    }
}