/* 
 * ULTRA ZEN ASSURANCES Landing Page Styles
 * 
 * Color Palette based on logo:
 * - Primary Blue: #2667c9
 * - Secondary Blue: #3d91ff
 * - Turquoise: #4cd6cc
 * - Dark Blue: #121b40
 * - Light Blue: #eaf2ff
 * - Background: #f7faff
 * - Dark Text: #222638
 * - Light Text: #f7faff
 */

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2667c9;
    --primary-dark: #1b4d9e;
    --primary-light: #4284e6;
    --secondary: #3d91ff;
    --turquoise: #4cd6cc;
    --turquoise-dark: #36b8af;
    --dark-blue: #121b40;
    --light-blue: #eaf2ff;
    --background: #f7faff;
    --text-dark: #222638;
    --text-medium: #505770;
    --text-light: #f7faff;
    --gray-light: #e5e9f2;
    --gray-medium: #c0c6d9;
    --gray-dark: #7a8399;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --radius: 8px;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-turquoise: linear-gradient(135deg, var(--secondary) 0%, var(--turquoise) 100%);
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

h1 {
    font-size: 4.2rem;
    margin-bottom: 2.4rem;
}

h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
}

h4 {
    font-size: 2rem;
    margin-bottom: 1.4rem;
}

p {
    margin-bottom: 1.6rem;
}

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

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

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 4rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-turquoise);
    margin: 1.6rem auto 0;
    border-radius: 2px;
}

/* ===== LAYOUT HELPERS ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

section {
    padding: 8rem 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn i {
    margin-right: 0.8rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow);
}

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

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

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gray-medium);
    color: var(--text-dark);
}

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

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

.btn-white:hover {
    background-color: var(--light-blue);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-large);
    transition: var(--transition);
}

.btn-circle:hover {
    transform: scale(1.1);
    color: var(--text-light);
}

.btn-circle i {
    font-size: 2.4rem;
    margin: 0;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

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

.header.scrolled {
    background-color: var(--text-light);
    box-shadow: var(--shadow);
    padding: 1.2rem 0;
}

.logo {
    display: block;
    width: 180px;
}

.logo svg, .logo img {
    width: 100%;
    height: auto;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.phone i {
    color: var(--primary);
    font-size: 1.8rem;
    margin-right: 0.8rem;
}

.phone-number {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
}

.phone-number:hover {
    color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.4rem;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('https://pixabay.com/get/gd9a2876d6a9871645a90eaa065ca3c270c2a96a9db28a28b6ac0644ff334f5728f0e381422b96cf314e7f9e2b331ff128218cba38e435cb1e8160b18d54a7095_1280.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 0;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 27, 64, 0.9) 0%, rgba(18, 27, 64, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 650px;
    margin-top: 5rem;
    z-index: 2;
}

.hero h1 {
    color: var(--text-light);
    margin-bottom: 2.4rem;
}

.hero h1 span {
    display: block;
    color: var(--turquoise);
    font-weight: 500;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 1.6rem;
}

/* ===== INSURANCE TYPES SECTION ===== */
.insurance-types {
    background-color: var(--background);
}

.insurance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.2rem;
}

.insurance-card {
    background-color: var(--text-light);
    padding: 3.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.insurance-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2.4rem;
    border-radius: 50%;
    background: var(--gradient-turquoise);
    color: var(--text-light);
}

.insurance-icon i {
    font-size: 3.6rem;
}

.insurance-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.6rem;
}

.insurance-card p {
    color: var(--text-medium);
    margin-bottom: 2.4rem;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background-color: var(--light-blue);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3.2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.4rem;
    height: 6.4rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.benefit-icon i {
    font-size: 2.8rem;
}

.benefit-item h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

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

/* ===== QUOTE FORM SECTION ===== */
.quote-form {
    background-color: var(--background);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--text-light);
    padding: 4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 3.2rem;
}

.form-header h2 {
    margin-bottom: 1.2rem;
}

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

/* Form Steps Navigation */
.form-steps-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.2rem;
    position: relative;
}

.form-steps-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: var(--gray-light);
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
    width: 33%;
    text-align: center;
}

.step-number {
    background-color: var(--text-light);
    border: 2px solid var(--gray-light);
    color: var(--gray-dark);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.step-text {
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin-top: 0.8rem;
    transition: var(--transition);
}

.step.active .step-number {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--text-light);
}

.step.active .step-text {
    color: var(--primary);
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Form Elements */
.form-group {
    margin-bottom: 2.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

input, select, textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(38, 103, 201, 0.1);
}

small {
    display: block;
    margin-top: 0.6rem;
    font-size: 1.2rem;
    color: var(--text-medium);
}

.date-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.radio-group, .checkbox-group {
    margin-top: 1rem;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
}

.radio-label input, .checkbox-label input {
    width: auto;
    margin-right: 1rem;
}

.radio-label span, .checkbox-label span {
    font-weight: 400;
}

/* Insurance-specific form fields */
.insurance-fields {
    display: none;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 3.2rem;
}

/* Form Status Messages */
.form-status {
    margin-top: 2.4rem;
    text-align: center;
}

.success-message, .error-message {
    display: none;
    padding: 1.6rem;
    border-radius: var(--radius);
    margin-top: 2.4rem;
}

.success-message {
    background-color: rgba(76, 214, 204, 0.1);
    color: var(--turquoise-dark);
}

.error-message {
    background-color: rgba(239, 71, 67, 0.1);
    color: #ef4743;
}

.success-message i, .error-message i {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

/* ===== ABOUT US SECTION ===== */
.about-us {
    background-color: var(--light-blue);
}

.about-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 2.4rem;
}

.about-content h2::after {
    margin-left: 0;
}

.tagline {
    font-style: italic;
    font-weight: 600;
    color: var(--primary);
}

.company-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.2rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(18, 27, 64, 0.9) 0%, rgba(18, 27, 64, 0) 100%);
    color: var(--text-light);
    transition: var(--transition);
}

.gallery-content h3 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.gallery-content p {
    margin-bottom: 1.6rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-content {
    background: linear-gradient(to top, rgba(18, 27, 64, 0.95) 0%, rgba(18, 27, 64, 0.7) 100%);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-content p,
.gallery-item:hover .gallery-content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CONTACT BANNER ===== */
.contact-banner {
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
    padding: 6rem 0;
}

.banner-content h2 {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.banner-content p {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    width: 140px;
    margin-bottom: 2rem;
}

.footer-logo svg, .footer-logo img {
    width: 100%;
    height: auto;
}

.company-details p {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: var(--gray-medium);
}

.company-details a {
    color: var(--gray-light);
}

.company-details a:hover {
    color: var(--turquoise);
}

.footer-links h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray-medium);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* ===== STICKY CONTACT BUTTON ===== */
.sticky-contact {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 999;
    display: none;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .about-us .container {
        grid-template-columns: 1fr;
    }
    
    .company-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .contact-info {
        display: none;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .form-container {
        padding: 3rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sticky-contact {
        display: block;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .insurance-cards,
    .benefits-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-steps-nav {
        margin-bottom: 2.4rem;
    }
    
    .step {
        width: 3.6rem;
        height: 3.6rem;
        font-size: 1.4rem;
    }
    
    .date-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}
