/* Variables & Reset */
:root {
    --coral: #F43F5E;
    --coral-light: #FB7185;
    --cyan: #06B6D4;
    --bg-light: #FFF7F7;
    --text-dark: #3F1D1D;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(63, 29, 29, 0.08);
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.coral-text { color: var(--coral); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}
.btn:hover {
    background: var(--coral-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.4);
}
.btn-nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-form { width: 100%; margin-top: 10px; }

/* Navigation */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 247, 247, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(244, 63, 94, 0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
}
.logo i { color: var(--coral); font-size: 1.8rem; }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--coral); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger .bar { width: 25px; height: 3px; background: var(--text-dark); border-radius: 5px; transition: 0.3s; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.8), rgba(219, 216, 216, 0.6)), url('https://i.pinimg.com/736x/59/bc/57/59bc57e90eee8b29c16fcf3ed1c6c829.jpg') no-repeat center center/cover;
    color: var(--white);
    padding-top: 80px;
}
.hero-content { max-width: 800px; }
.sub-heading {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--coral-light);
    margin-bottom: 15px;
    font-weight: 600;
}
.main-heading {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}
.desc { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* Sections General */
.section { padding: 100px 0; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.section-subtitle { margin-bottom: 50px; color: #666; }
.center { text-align: center; }

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.about-item i { font-size: 1.5rem; color: var(--coral); margin-bottom: 10px; }
.about-item h3 { font-size: 1.1rem; margin-bottom: 5px; }

/* Stats Section */
.stats-section {
    background: var(--text-dark);
    color: var(--white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item h3 { font-size: 3rem; color: var(--coral); margin-bottom: 5px; }
.stat-item p { font-size: 1.1rem; opacity: 0.8; }

/* Cards Grid (Features, Services, Reviews) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.05);
}
.card:hover {
    transform: translateY(-10px);
    border-color: var(--coral);
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--coral), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
    font-size: 2.5rem;
    color: var(--coral);
    margin-bottom: 20px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: #666; font-size: 0.95rem; }

/* Process Section */
.process-section { background: var(--white); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border: 2px solid var(--coral);
    color: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.process-step:hover .step-number {
    background: var(--coral);
    color: var(--white);
    transform: rotate(360deg);
}

/* Booking Section */
.booking-section { background: linear-gradient(135deg, #fff7f7 0%, #ffffff 100%); }
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.booking-list { list-style: none; margin-top: 20px; }
.booking-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.booking-list i { color: var(--cyan); }

/* Forms */
.booking-form, .contact-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}
.booking-form h3 { margin-bottom: 20px; color: var(--coral); }
.input-group { margin-bottom: 15px; }
.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-color: var(--coral);
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover { color: var(--coral); }
.faq-question i { transition: transform 0.3s ease; color: var(--coral); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 20px 20px; color: #666; }

/* Reviews */
.review-card .stars { color: var(--coral); margin-bottom: 15px; }
.review-card p { font-style: italic; margin-bottom: 15px; }
.reviewer { font-weight: 600; color: var(--text-dark); }

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.contact-item i {
    font-size: 1.5rem;
    color: var(--coral);
    background: var(--bg-light);
    padding: 15px;
    border-radius: 50%;
}
.contact-item h4 { margin-bottom: 5px; }

/* Footer */
.footer {
    background: var(--text-dark);
    color: #ccc;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--coral); padding-left: 5px; }
.footer-about p { margin: 15px 0; font-size: 0.9rem; }
.footer .logo { color: var(--white); }
.socials { display: flex; gap: 15px; }
.socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}
.socials a:hover { background: var(--coral); }
.subscribe-form { display: flex; margin-top: 15px; }
.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}
.subscribe-form button {
    background: var(--coral);
    color: var(--white);
    border: none;
    padding: 0 15px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: var(--transition);
}
.subscribe-form button:hover { background: var(--coral-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.footer-bottom-content ul { display: flex; gap: 20px; list-style: none; }
.footer-bottom-content a { color: #ccc; text-decoration: none; }
.footer-bottom-content a:hover { color: var(--coral); }

/* Legal Pages */
.legal-section { padding-top: 140px; background: var(--white); min-height: 100vh; }
.legal-container { max-width: 800px; }
.legal-updated { color: #888; font-style: italic; margin-bottom: 30px; }
.legal-block { margin-bottom: 30px; }
.legal-block h2 { font-size: 1.5rem; margin-bottom: 10px; color: var(--coral); }
.legal-block ul { padding-left: 20px; margin-top: 10px; }
.legal-block li { margin-bottom: 5px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive Design */
@media (max-width: 992px) {
    .main-heading { font-size: 3rem; }
    .card-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container, .booking-container, .contact-wrapper { grid-template-columns: 1fr; }
    .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 0;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 15px 0; }
    .hamburger { display: flex; }
    .btn-nav { display: none; }
    
    .main-heading { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .card-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 10px; text-align: center; }
    .footer-bottom-content ul { justify-content: center; }
}