/* ===== Global Variables & Reset ===== */
:root {
    --emerald-dark: #059669;
    --emerald-light: #34D399;
    --amber: #FBBF24;
    --light-bg: #F9FAFB;
    --dark-bg: #111827;
    --text-color: #374151;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--dark-bg); font-weight: 600; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Reusable Components ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn-primary {
    background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-light));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4); }
.btn-secondary {
    background: transparent;
    color: var(--emerald-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--emerald-dark);
}
.btn-secondary:hover { background: var(--emerald-dark); color: var(--white); }

section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; text-transform: capitalize; }
.section-title p { color: #6B7280; max-width: 600px; margin: 0 auto; }
.highlight { color: var(--emerald-dark); }

/* ===== Animations ===== */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== Navbar ===== */
nav {
    background: rgba(249, 250, 251, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 700; color: var(--dark-bg); }
.logo i { color: var(--emerald-dark); font-size: 1.8rem; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; transition: var(--transition); position: relative; }
.nav-links a:hover { color: var(--emerald-dark); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--emerald-dark); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--dark-bg); }

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(120deg, var(--light-bg) 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-sub { display: inline-block; background: rgba(5, 150, 105, 0.1); color: var(--emerald-dark); padding: 8px 16px; border-radius: 30px; font-weight: 500; margin-bottom: 20px; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; margin-bottom: 30px; color: #4B5563; }
.hero-buttons { display: flex; gap: 20px; }
.hero-img { position: relative; animation: float 6s ease-in-out infinite; }
.hero-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* ===== 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: 0 10px 30px rgba(0,0,0,0.1); }
.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.about-box { background: var(--white); padding: 20px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-left: 4px solid var(--emerald-dark); }
.about-box h4 { color: var(--emerald-dark); margin-bottom: 8px; }

/* ===== Stats Section ===== */
.stats { background: var(--dark-bg); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h2 { font-size: 3rem; color: var(--amber); margin-bottom: 10px; }
.stat-item p { color: #9CA3AF; }

/* ===== Features & Services ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-top: 4px solid transparent;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-top-color: var(--emerald-dark); }
.card i { font-size: 2.5rem; color: var(--emerald-dark); margin-bottom: 20px; }
.card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.card p { color: #6B7280; font-size: 0.95rem; }

/* ===== Process Section ===== */
.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step::before { content: ''; position: absolute; top: 40px; left: 50%; width: 100%; height: 2px; background: var(--emerald-light); z-index: 0; }
.process-step:last-child::before { display: none; }
.step-number { width: 80px; height: 80px; background: var(--white); border: 2px solid var(--emerald-dark); color: var(--emerald-dark); 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(--emerald-dark); color: var(--white); transform: scale(1.1); }

/* ===== Booking Form ===== */
.booking { background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-light)); color: var(--white); }
.booking .section-title h2, .booking .section-title p { color: var(--white); }
.booking-form { background: var(--white); padding: 40px; border-radius: 20px; max-width: 800px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dark-bg); }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #D1D5DB; border-radius: 8px; font-family: 'Poppins', sans-serif; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--emerald-dark); box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1); }

/* ===== FAQ Section ===== */
.faq-item { background: var(--white); margin-bottom: 15px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; font-size: 1.1rem; }
.faq-question i { transition: var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--emerald-dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 20px; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ===== Reviews ===== */
.review-card { background: var(--white); padding: 30px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: relative; }
.review-card i.quote { font-size: 2rem; color: var(--amber); margin-bottom: 15px; }
.review-stars { color: var(--amber); margin-bottom: 15px; }
.review-author { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.review-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }

/* ===== Contact Section ===== */
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-info-item { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.contact-info-item i { width: 50px; height: 50px; background: var(--light-bg); color: var(--emerald-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-map iframe { width: 100%; height: 300px; border: 0; border-radius: 16px; margin-top: 20px; }

/* ===== Footer ===== */
footer { background: var(--dark-bg); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.footer-col p, .footer-col a { color: #9CA3AF; margin-bottom: 10px; display: block; transition: var(--transition); }
.footer-col a:hover { color: var(--emerald-light); padding-left: 5px; }
.subscribe-form { display: flex; margin-top: 15px; }
.subscribe-form input { flex: 1; padding: 10px; border: none; border-radius: 5px 0 0 5px; }
.subscribe-form button { padding: 10px 20px; background: var(--emerald-dark); color: var(--white); border: none; border-radius: 0 5px 5px 0; cursor: pointer; transition: var(--transition); }
.subscribe-form button:hover { background: var(--amber); color: var(--dark-bg); }
.footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom a { color: #9CA3AF; margin-left: 20px; }
.footer-bottom a:hover { color: var(--emerald-light); }

/* ===== Legal Pages ===== */
.legal-content { max-width: 900px; margin: 0 auto; padding: 60px 20px; background: var(--white); border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.legal-content h2 { margin-top: 30px; margin-bottom: 15px; color: var(--emerald-dark); }
.legal-content p { margin-bottom: 15px; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero-container, .about-container, .contact-container { grid-template-columns: 1fr; }
    .hero-img { display: none; }
    .stats-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step::before { display: none; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
    .stats-grid, .grid-3, .form-grid, .about-boxes { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}