/* --- Global Styles & Variables --- */
:root {
    --primary-color: #00AEEF; /* Bright Blue from logo */
    --dark-grey: #4A4A4A;      /* Dark Grey from logo text */
    --light-grey: #f4f7f6;
    --white: #ffffff;
    --text-color: #555;
    --heading-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --body-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --secondary-color:#3182ce;
    --accent-color:#ffb703;
    
    --gray-50:#f9fafb;
    --gray-100:#f3f4f6;
    --gray-200:#e5e7eb;
    --gray-300:#d1d5db;
    --gray-600:#4b5563;
    
    --space-4:0.75rem;
    --space-8:2rem;
    --space-16:4rem;
    
    --radius-lg:12px;
    --radius-xl:16px;
    --radius-full:9999px;
    
    --font-size-lg:1.125rem;
    --font-size-xl:1.25rem;
    --font-size-2xl:1.5rem;
    --font-size-4xl:2.25rem;
    --font-size-5xl:3rem;
    
    --shadow-base:0 2px 10px rgba(0,0,0,.06);
    --shadow-lg:0 8px 24px rgba(0,0,0,.12);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
}

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

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--dark-grey);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-grey);
}

/* --- Header & Navigation --- */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

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

.logo {
    height: 56px;
    width: auto;
}

.navbar nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar nav li {
    margin-left: 25px;
}

.navbar nav a {
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 16px;
}

.nav-phone {
    font-weight: bold;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #0095c7;
    border-color: #0095c7;
    color: var(--white);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-grey);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: url('images/hero-background.jpg') no-repeat center center/cover;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero-section .highlight {
    color: var(--primary-color);
}

.hero-section .subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--white);
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* --- About Section --- */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-text li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.about-text li::before {
    content: '✔';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* --- Trust Indicators --- */
.trust-indicators {
    padding: 60px 0;
    background-color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 30px 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--white);
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-color);
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
}

.contact-section p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-grey);
}

.form-group input, .form-group textarea, .form-group select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group select {
    background-color: var(--white);
    cursor: pointer;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
    font-size: 18px;
    padding: 15px;
    margin-bottom: 15px;
}

.contact-note {
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
}

.contact-note a {
    color: var(--primary-color);
    font-weight: bold;
}

/* --- Footer --- */
.footer {
    background-color: var(--dark-grey);
    color: #cccccc;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer a {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

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

.footer-info p {
    margin: 0 0 5px;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    margin-bottom: 10px;
}

.footer-brand-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 1.1;
}
.footer-brand-name span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--primary-color);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-description {
    color: #b3b3b3;
    margin: 0 0 14px;
    max-width: 38ch;
    line-height: 1.5;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #5a5a5a;
    padding-top: 20px;
    font-size: 14px;
}

/* --- Thank You Page --- */
.thankyou-section {
    padding: 100px 0;
    background-color: var(--light-grey);
    text-align: center;
}
.thankyou-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-base);
}
.thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 44px;
    line-height: 80px;
    margin: 0 auto 24px;
}
.thankyou-card h1 {
    font-size: 32px;
    margin: 0 0 16px;
}
.thankyou-card p {
    font-size: var(--font-size-lg);
    color: var(--text-color);
    margin: 0 auto 28px;
    max-width: 460px;
}
.thankyou-card .btn {
    margin: 0 8px;
}

/* --- Simple Page Styles (Terms/Privacy) --- */
.simple-page {
    padding: 60px 0;
}
.simple-page .container {
    max-width: 800px;
}
.simple-page h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.simple-page h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.simple-page p {
    margin-bottom: 15px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
    }
    .navbar nav {
        margin-top: 15px;
        width: 100%;
    }
    .navbar nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .navbar nav li {
        margin: 6px 12px;
    }
    .hero-section h1 {
        font-size: 36px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Disclosure Page Specific Styles --- */

.page-header {
    background-color: var(--gray-100);
    padding: var(--space-16) 0;
    text-align: center;
}
.page-header h1 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.025em;
    margin-bottom: var(--space-4);
}
.page-header p {
    margin-top: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--font-size-lg);
    color: var(--gray-600);
}

.disclosure-section {
    background-color: var(--white);
    padding: var(--space-16) 0;
}
.disclosure-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-8);
}
.disclosure-card {
    background-color: var(--gray-50);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-base);
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}
.disclosure-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--secondary-color);
}
.disclosure-card .icon-wrapper {
    height: 4rem;
    width: 4rem;
    border-radius: var(--radius-full);
    background-color: rgba(49, 130, 206, 0.1);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.disclosure-card .icon-wrapper i {
    font-size: 1.5rem;
}
.disclosure-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.disclosure-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.final-note {
    margin-top: 4rem;
    background-color: #0c4a6e;
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}
.final-note h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.final-note p {
    font-size: var(--font-size-lg);
    color: #e6eef5;
}
.final-note .icon-wrapper {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--accent-color);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.final-note .icon-wrapper i {
    font-size: 1.5rem;
}

.final-note .contact-prompt a {
    color: var(--white) !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
}

/* Optional: Add hover effect */
.final-note .contact-prompt a:hover {
    color: var(--accent-color) !important;
    text-decoration: none !important;
}

/* --- Responsive Styles for Disclosure Page --- */
@media (min-width: 768px) {
    .page-header h1 { font-size: var(--font-size-5xl); }
    .disclosure-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Compatibility for current navbar markup */
.navbar .nav-container{display:flex;justify-content:space-between;align-items:center;}
.nav-logo img{height:56px;width:auto;} /* same as .logo */
.nav-links ul{list-style:none;margin:0;padding:0;display:flex;align-items:center;}
.nav-links li{margin-left:25px;}
.nav-links a{color:var(--dark-grey);font-weight:500;font-size:16px;}
.nav-contact{font-weight:bold;}

.section-header{text-align:center;margin-bottom:var(--space-8);}
.section-title{font-size:2rem;margin:0 0 .5rem;}
.section-subtitle{color:var(--gray-600);margin:0;}
.fade-in-up{opacity:0;animation:fade-in-up .4s ease-out both;}
@keyframes fade-in-up{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}

.final-note .reference-list a,
.final-note .reference-list a:link,
.final-note .reference-list a:visited,
.final-note .reference-list a:hover,
.final-note .reference-list a:focus,
.final-note .reference-list a:active {
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: underline;
}

.final-note .reference-list a:hover {
    color: var(--accent-color) !important;
}