@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-main: #0B1120; /* Very deep navy/black */
    --bg-card: #151E32; /* Slightly lighter card background */
    --primary: #38bdf8; /* Sky Blue */
    --secondary: #818cf8; /* Indigo */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: #fff; }
.text-primary-custom { color: var(--primary) !important; }
.text-muted-custom { color: var(--text-muted) !important; line-height: 1.7; }
.section-padding { padding: 90px 0; }
.section-title { font-size: 2.5rem; margin-bottom: 15px; }

/* Gradient Text */
.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar-custom {
    background-color: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar-brand { font-size: 24px; font-weight: 700; color: #fff !important; }
.nav-link { color: var(--text-main) !important; font-weight: 500; margin: 0 12px; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.navbar-toggler { background: var(--bg-card); border-color: var(--border-color); }
.navbar-toggler-icon { filter: invert(1); }

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff; border: none; padding: 12px 30px; border-radius: 8px;
    font-weight: 600; transition: all 0.3s;
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3); color: #fff; }

.btn-outline-custom {
    background: transparent; color: #fff; border: 1px solid var(--border-color);
    padding: 12px 30px; border-radius: 8px; font-weight: 600; transition: all 0.3s;
}
.btn-outline-custom:hover { background: var(--border-color); color: #fff; }

/* Hero Section */
.hero-section {
    padding-top: 140px; padding-bottom: 80px;
    position: relative;
}

/* Booking Form Card */
.booking-card {
    background: #ffffff; /* White card for high contrast and trust */
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.booking-card label { color: #334155; font-weight: 600; font-size: 14px; }
.booking-card .form-control {
    background: #f8fafc; border: 1px solid #cbd5e1; padding: 12px 15px; border-radius: 8px; color: #0f172a;
}
.booking-card .form-control:focus { border-color: var(--primary); box-shadow: none; }
.booking-card h3 { color: #0f172a; }

/* Content Cards (Services, Testimonials, etc.) */
.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}
.icon-wrapper {
    width: 65px; height: 65px; border-radius: 12px;
    background: rgba(56, 189, 248, 0.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 25px;
}

/* FAQ Accordion */
.accordion-item {
    background-color: var(--bg-card); border: 1px solid var(--border-color) !important;
    border-radius: 8px !important; margin-bottom: 15px; overflow: hidden;
}
.accordion-button {
    background-color: transparent !important; color: #fff !important;
    font-weight: 600; padding: 20px; box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--primary) !important; }
.accordion-button::after { filter: brightness(0) invert(1); }
.accordion-body { color: var(--text-muted); padding: 0 20px 20px; }

/* Contact Forms */
.contact-input {
    background: var(--bg-main); border: 1px solid var(--border-color);
    color: #fff; padding: 15px 20px; border-radius: 8px;
}
.contact-input:focus { border-color: var(--primary); background: var(--bg-main); color: #fff; box-shadow: none;}
.contact-input::placeholder { color: #64748b; }

/* Footer */
.footer-section { background-color: var(--bg-card); padding: 70px 0 30px; border-top: 1px solid var(--border-color); }
.footer-link { color: var(--text-muted); text-decoration: none; display: block; margin-bottom: 12px; transition: 0.3s; }
.footer-link:hover { color: var(--primary); transform: translateX(5px); }
.social-btn {
    width: 40px; height: 40px; border-radius: 8px; background: var(--border-color);
    display: inline-flex; align-items: center; justify-content: center; color: #fff;
    text-decoration: none; margin-right: 10px; transition: 0.3s;
}
.social-btn:hover { background: var(--primary); }