/* Elegant Landing Page Styles - inspired by Nice Maids */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2c3e50;
    /* Deep elegant blue */
    --accent-color: #d4af37;
    /* Soft gold */
    --text-color: #4a4a4a;
    --bg-light: #f9fbfd;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}

.lp-section {
    padding: 100px 0;
}

.hero-lp {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../img/images/bright-clean-modern-bedroom-scandinavian-style.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-lp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(44, 62, 80, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn-elegant {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.cta-btn-elegant:hover {
    background-color: #c4a02d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

/* Form Styling */
.elegant-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.text-booking {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 30px 0 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    color: var(--primary-color);
}

.form-control,
.select {
    height: 55px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fcfcfc;
    width: 100%;
    margin-bottom: 15px;
}

.form-control:focus,
.select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

textarea.form-control {
    height: auto;
}

/* Panel List Buttons (Radios/Checkboxes) */
.panel-list-btn {
    margin-bottom: 15px;
}

.panel-list-btn input[type="radio"],
.panel-list-btn input[type="checkbox"] {
    display: none;
}

.panel-list-btn label {
    display: block;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
}

.panel-list-btn input:checked+label {
    border-color: var(--accent-color);
    background: #fdfaf0;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.1);
}

.panel-list-btn label img {
    max-width: 50px;
    margin-bottom: 10px;
}

/* Services Cards */
.card-elegant {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
    margin-bottom: 30px;
}

.card-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-elegant img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body-elegant {
    padding: 30px;
}

/* Feature Icons */
.feature-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-lp .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-lp .accordion-button {
    padding: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    background: var(--white);
    border: none;
}

.faq-lp .accordion-button:focus {
    box-shadow: none;
}

.faq-lp .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background: #fdfaf0;
    box-shadow: none;
}

.faq-lp .accordion-body {
    padding: 25px;
    background: #fff;
    color: #666;
}

/* Footer Section */
.footer-lp {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-lp h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-lp a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-lp a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Utility */
.text-accent {
    color: var(--accent-color);
}

.bg-light {
    background-color: var(--bg-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lp-section {
        padding: 60px 0;
    }

    .hero-lp {
        height: auto;
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .elegant-form-container {
        padding: 25px;
        margin-top: 30px;
    }
}

/* Contact Widget */
.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.contact-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.contact-trigger:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: #c4a02d;
}

.contact-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.contact-widget.active .contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    text-decoration: none;
}

.contact-option-text {
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.contact-option-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-option:hover .contact-option-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Reviews Section */
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0;
    color: var(--primary-color);
}

.author-info span {
    font-size: 0.8rem;
    color: #999;
}

/* Call to Action Banner */
.cta-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    border-radius: 20px;
    margin: 40px 0;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Sticky Widget Mobile Bottom Bar Alternative */
@media (max-width: 576px) {
    .contact-widget {
        bottom: 20px;
        right: 20px;
    }
}