/* --- 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;
}

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: 75px;
    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 {
    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 input:focus, .form-group textarea: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: #a9a9a9;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 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-links h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-description {
    color: #a9a9a9;
}

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

/* --- 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;
    }
    .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;
    }
}