/* Management Page Styles
================================================== */

/* Hero Section - bottom left positioning */
.management-hero .main-search-inner {
    position: absolute;
    top: auto !important;
    bottom: 80px !important;
    left: 60px;
    right: auto;
    transform: none !important;
    text-align: left;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    padding-bottom: 0;
    filter: none;
    z-index: 10;
}

.management-hero .hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFC21F;
    margin-bottom: 12px;
    text-shadow: none;
}

.management-hero .hero-title {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.management-hero .hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 24px;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 500px;
}

.management-hero .hero-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    border: none;
    border-radius: 30px;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.management-hero .hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
    background: white;
    color: #333;
}

/* Gradient overlay for hero - BEHIND the text */
.management-hero .video-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.management-hero .video-container {
    z-index: 0;
}

/* Mobile hero */
@media (max-width: 768px) {
    .management-hero .main-search-inner {
        bottom: 50px !important;
        left: 20px;
        right: 20px;
    }

    .management-hero .hero-label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .management-hero .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .management-hero .hero-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .management-hero .hero-cta-btn {
        padding: 12px 24px;
        font-size: 11px;
    }
}

/* ================================================== */
/* Value Props Section - Dark theme with gold accents */
/* ================================================== */
.value-props-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
}

.value-props-section .value-prop {
    text-align: center;
    padding: 0 15px;
}

.value-props-section .value-prop-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #FFC21F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-props-section .value-prop-icon i {
    font-size: 32px;
    color: #FFC21F;
}

.value-props-section .value-prop:hover .value-prop-icon {
    background: #FFC21F;
}

.value-props-section .value-prop:hover .value-prop-icon i {
    color: #1a1a2e;
}

.value-props-section .value-prop h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.value-props-section .value-prop p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 991px) {
    .value-props-section .value-prop {
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .value-props-section {
        padding: 50px 20px;
    }

    .value-props-section .value-prop {
        margin-bottom: 40px;
    }

    .value-props-section .value-prop:last-child {
        margin-bottom: 0;
    }

    .value-props-section .value-prop-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .value-props-section .value-prop-icon i {
        font-size: 28px;
    }

    .value-props-section .value-prop h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .value-props-section .value-prop p {
        font-size: 12px;
    }
}

/* Parallax CTA section */
.management-cta {
    position: relative;
}

.management-cta .text-content {
    position: relative;
    z-index: 999;
    padding: 80px 0;
}

/* Ensure the parallax overlay stays behind the text */
.management-cta .parallax-overlay {
    z-index: 1 !important;
}

.management-cta .cta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.management-cta .cta-title {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.management-cta .cta-phone {
    font-size: 16px;
    opacity: 0.9;
}

.management-cta .cta-phone a {
    color: #FFC21F;
    text-decoration: none;
}

.management-cta .cta-phone a:hover {
    color: #fff;
}

/* Why CalCoastal section */
.why-calcoastal-section {
    padding: 80px 0;
    background: #fff;
}

.why-calcoastal-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.why-calcoastal-section .section-divider {
    width: 60px;
    height: 3px;
    background: #FFC21F;
    margin: 0 auto 50px;
}

.why-calcoastal-section .benefit-item {
    margin-bottom: 35px;
    padding-left: 25px;
    border-left: 3px solid #FFC21F;
}

.why-calcoastal-section .benefit-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-calcoastal-section .benefit-item h4 i {
    color: #FFC21F;
    font-size: 24px;
    flex-shrink: 0;
}

.why-calcoastal-section .benefit-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials section */
.testimonials-section {
    background: #f9f9f9;
    padding: 75px 0;
}

.testimonials-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.testimonials-section .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* Application form section */
.application-section {
    padding: 75px 0;
}

.application-section .section-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.application-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
}

.application-section .sidebar-textbox p {
    color: #666;
    line-height: 1.7;
}

.application-section .contact-details {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.application-section .contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.application-section .contact-details i {
    font-size: 24px;
    color: #3b82b8;
    width: 30px;
}

.application-section .contact-details strong {
    color: #333;
}

.application-section .contact-details a {
    color: #3b82b8;
    text-decoration: none;
}

.application-section .contact-details a:hover {
    color: #FFC21F;
}

/* Form styling */
.application-section input[type="text"],
.application-section input[type="email"],
.application-section input[type="tel"],
.application-section textarea {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.application-section input[type="text"]:focus,
.application-section input[type="email"]:focus,
.application-section input[type="tel"]:focus,
.application-section textarea:focus {
    border-color: #3b82b8;
    outline: none;
}

/* Use site button styling */
.application-section input[type="submit"].submit {
    background-color: #3b82b8;
    width: 100%;
    margin-top: 10px;
}

/* Required field indicators */
.application-section .required-indicator {
    color: #FFC21F;
    margin-left: 2px;
}

.application-section label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.application-section .form-group {
    margin-bottom: 15px;
}

.application-section .form-note {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

.application-section .form-note span {
    color: #FFC21F;
}

/* ================================================== */
/* Homeowner Application Modal */
/* ================================================== */
.apply-modal {
    max-width: 550px;
    padding: 0;
    background: #fff;
    border-radius: 8px;
}

.apply-modal .remodal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
    color: #999;
}

.apply-modal .remodal-close:hover {
    color: #333;
}

.apply-modal-content {
    padding: 40px 35px;
    text-align: center;
}

.apply-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.apply-modal-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.apply-form-group {
    margin-bottom: 15px;
}

.apply-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.apply-form-col {
    flex: 1;
}

.apply-modal input[type="text"],
.apply-modal input[type="email"],
.apply-modal input[type="tel"],
.apply-modal textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 15px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.apply-modal input[type="text"]:focus,
.apply-modal input[type="email"]:focus,
.apply-modal input[type="tel"]:focus,
.apply-modal textarea:focus {
    border-color: #3b82b8;
    outline: none;
}

.apply-form-note {
    font-size: 12px;
    color: #999;
    margin: 15px 0;
    text-align: left;
}

.apply-form-note span {
    color: #FFC21F;
}

/* Modal submit uses site button styling */
.apply-modal button.button.submit {
    width: 100%;
    background-color: #3b82b8;
    margin-top: 5px;
}

.apply-modal-contact {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.apply-modal-contact a {
    color: #FFC21F;
    font-weight: 600;
    text-decoration: none;
}

.apply-modal-contact a:hover {
    color: #1a1a2e;
}

@media (max-width: 500px) {
    .apply-modal-content {
        padding: 30px 20px;
    }

    .apply-modal-title {
        font-size: 24px;
    }

    .apply-form-row {
        flex-direction: column;
        gap: 0;
    }

    .apply-form-col {
        margin-bottom: 15px;
    }

    .apply-form-col:last-child {
        margin-bottom: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .why-calcoastal-section {
        padding: 50px 0;
    }

    .why-calcoastal-section .section-title {
        font-size: 28px;
    }

    .why-calcoastal-section .benefit-item {
        padding-left: 20px;
    }

    .why-calcoastal-section .benefit-item h4 {
        font-size: 18px;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section .section-title {
        font-size: 28px;
    }

    .testimonials-section .testimonial-box {
        margin: 0 10px;
    }

    .application-section {
        padding: 50px 0;
    }

    .application-section .section-title {
        font-size: 26px;
    }

    .management-cta .cta-title {
        font-size: 32px;
    }
}
