/* ========================================
   Global Styles & Variables
   ======================================== */
:root {
    --primary-color: #4A90E2;
    --primary-dark: #357ABD;
    --primary-light: #6BA3E8;
    --secondary-color: #ffffff;
    --text-dark: #2C3E50;
    --text-medium: #5A6C7D;
    --text-light: #7F8C9A;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E1E8ED;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --error-color: #E74C3C;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

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

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 1.8rem;
}

.logo-text {
    color: var(--text-dark);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background-color: var(--bg-light);
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-header {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E8F4F8 100%);
}

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

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Trust Strip
   ======================================== */
.trust-strip {
    padding: 60px 0;
    background-color: white;
}

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

.trust-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

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

.trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ========================================
   Common Sections
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   Issues Section
   ======================================== */
.issues {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.issue-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.issue-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.issue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.issue-card:hover .issue-image img {
    transform: scale(1.05);
}

.issue-title {
    padding: 15px 20px 10px;
    font-size: 1rem;
    color: var(--text-dark);
}

.issue-desc {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ========================================
   Brands Section
   ======================================== */
.brands {
    padding: 80px 0;
    background-color: white;
}

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

.brands-section:last-child {
    margin-bottom: 0;
}

.brands-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-medium);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brands-secondary {
    opacity: 0.85;
}

.brand-card {
    background-color: var(--bg-light);
    padding: 25px 15px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.brand-card:hover {
    background-color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.brand-more {
    background-color: var(--primary-light);
    color: white;
    font-weight: 700;
}

/* ========================================
   Process Section
   ======================================== */
.process {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr 80px;
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.process-step:last-child {
    margin-bottom: 0;
}

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

.step-content {
    padding-top: 5px;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-desc {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

/* ========================================
   Lead Form Section
   ======================================== */
.lead-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    padding: 50px 50px 30px;
    background-color: var(--bg-light);
    text-align: center;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-benefit i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.lead-form {
    padding: 40px 50px 50px;
}

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

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

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-family: inherit;
}

.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 rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.privacy-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.privacy-note p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    display: block;
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: white;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   Terms Section
   ======================================== */
.terms {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.terms-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.terms-section {
    margin-bottom: 35px;
}

.terms-section:last-of-type {
    margin-bottom: 20px;
}

.terms-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section h3 i {
    color: var(--primary-color);
}

.terms-section p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
}

.terms-section ul li {
    padding: 10px 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.terms-section ul li:last-child {
    border-bottom: none;
}

.terms-note {
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-sm);
    color: var(--text-medium);
}

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

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.footer-title i {
    color: var(--primary-color);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 500;
}

.footer-heading {
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links i {
    color: var(--primary-color);
    width: 18px;
}

.footer-links a {
    color: #B8C5D0;
    transition: var(--transition);
}

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

.footer-address {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-service-note {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    gap: 10px;
}

.footer-service-note i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-service-note p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: #B8C5D0;
    font-size: 0.95rem;
}

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

.footer-copyright {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   Mobile Bottom Bar
   ======================================== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 999;
}

.mobile-action {
    flex: 1;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.mobile-call {
    background-color: var(--success-color);
    color: white;
}

.mobile-call:hover {
    background-color: #229954;
    color: white;
}

.mobile-book {
    background-color: var(--primary-color);
    color: white;
}

.mobile-book:hover {
    background-color: var(--primary-dark);
}

.mobile-action i {
    font-size: 1.3rem;
}

.mobile-action span {
    font-size: 0.85rem;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .issues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Header */
    .nav {
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 400px;
        opacity: 1;
        margin-top: 16px;
    }
    
    .btn-header {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding: 50px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-image {
        order: -1;
    }
    
    /* Trust Strip */
    .trust-strip {
        padding: 40px 0;
    }
    
    .trust-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Issues */
    .issues {
        padding: 50px 0;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Brands */
    .brands {
        padding: 50px 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Process */
    .process {
        padding: 50px 0;
    }
    
    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }
    
    .step-icon {
        display: none;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.15rem;
    }
    
    .step-desc {
        font-size: 0.95rem;
    }
    
    /* Form */
    .lead-form-section {
        padding: 50px 0;
    }
    
    .form-intro,
    .lead-form {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    /* FAQ */
    .faq {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
    }
    
    /* Terms */
    .terms {
        padding: 50px 0;
    }
    
    .terms-content {
        padding: 30px 25px;
    }
    
    .terms-title {
        font-size: 1.6rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Mobile Bottom Bar */
    .mobile-bottom-bar {
        display: flex;
    }
    
    /* Add padding to body to prevent content being hidden behind bottom bar */
    body {
        padding-bottom: 70px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .location-badge {
        display: none;
    }
}

/* High contrast for accessibility */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #2563EB;
        --text-medium: #374151;
        --border-color: #9CA3AF;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-bottom-bar,
    .hero-cta,
    .lead-form-section {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
}