/* --- Global Reset & Variables --- */
:root {
    --primary-color: #0066ff;    /* Trustworthy Blue */
    --hover-color: #0052cc;
    --dark-bg: #0b132b;          /* Sleek Dark Navy */
    --light-bg: #f8fafc;         /* Crisp Soft White */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html, body {
    overflow-x: hidden;
    min-height: 100%;
}

body {
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navbar --- */
.navbar {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: #f1f5f9;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: white;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 100px 0;
    min-height: 560px;
    background-image: url('ChatGPT Image Jun 1, 2026, 02_47_26 PM.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

.hero-grid {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 420px;
}

.hero-text {
    max-width: 640px;
    background: rgba(11, 19, 43, 0.75);
    padding: 36px 36px 32px;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-text h1,
.hero-text p,
.hero-actions {
    color: white;
}

.hero-text h1 span {
    color: #ffffff;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.85);
}

.badge {
    background: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-bg);
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid #cbd5e1;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #f8fafc;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    justify-items: stretch;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 32px 24px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Contact/Booking Section --- */
.contact {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-box {
    background: var(--dark-bg);
    color: white;
    padding: 56px;
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 32px;
}

.info-item {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.contact-form {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    color: var(--text-main);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--hover-color);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px 0;
    background: #070d1e;
    color: #64748b;
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 968px) {
    .hero-grid, .contact-box {
        grid-template-columns: 1fr;
    }
    .nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        padding: 0;
    }
    .nav-links li {
        margin: 0;
    }
    .hero-text h1 {
        font-size: 2.1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary,
    .btn-secondary,
    .btn-nav {
        width: 100%;
    }
    .service-card {
        padding: 24px;
    }
    .contact-box {
        padding: 32px;
    }
    .contact-form {
        padding: 24px;
    }
    .contact-info h2 {
        font-size: 1.85rem;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 16px 0;
    }
    .hero {
        padding: 40px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-header h2 {
        font-size: 1.9rem;
    }
    .hero-text p,
    .service-card p,
    .contact-info p,
    .info-item {
        font-size: 0.95rem;
    }
}