/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

:root {
    --navy: #0a0a5e;
    --navy-dark: #06064a;
    --gold: #d4b14a;
    --light-bg: #f1f1f1;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

/* ========== HEADER ========== */
.header {
    background: var(--navy);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 95px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.btn-quote {
    background: #fff;
    color: var(--navy);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #fff;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-quote:hover {
    background: transparent;
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
    display: block;
}

/* ========== HERO SLIDER ========== */
.hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.btn-primary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 40px;
    border: 2px solid #fff;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.dot.active {
    background: #fff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    font-size: 22px;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.6);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ========== SUB PAGE BANNER ========== */
.page-banner {
    position: relative;
    height: 50vh;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.page-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 64px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 80px 5%;
    background: var(--light-bg);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
    pointer-events: none;
}

.about-image img {
    max-height: 460px;
    margin: 0 auto;
    object-fit: contain;
}

.about-content h2 {
    color: var(--navy);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: #333;
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.btn-book {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 14px 40px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-book:hover {
    background: var(--navy-dark);
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 80px 5%;
    background: var(--navy);
    color: #fff;
}

.section-header {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-img {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.service-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(220,220,220,0.35) 50%, transparent 70%);
    pointer-events: none;
}

.service-img img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
}

.service-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 14px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.service-info p {
    font-size: 14px;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 18px;
}

.service-features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    padding-left: 22px;
    position: relative;
}

.service-features li::before {
    content: '◉';
    position: absolute;
    left: 0;
    color: var(--navy);
    font-size: 12px;
}

.btn-small {
    background: var(--navy);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    margin-top: auto;
    transition: background 0.3s;
}

.btn-small:hover {
    background: var(--navy-dark);
}

.more-services {
    text-align: center;
    margin-top: 30px;
}

.more-services a {
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 3px;
    transition: opacity 0.3s;
}

.more-services a:hover {
    opacity: 0.8;
}

/* ========== RENT PAGE ========== */
.rent-section {
    padding: 60px 5%;
    background: #fff;
}

.rent-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 500;
}

.rent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 70px 5%;
    background: #eceaf3;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.info-block h2,
.quote-block h2 {
    color: var(--navy);
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.quote-block h2 {
    text-align: center;
}

.info-card {
    border: 2px solid var(--navy);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-card i {
    color: var(--navy);
    font-size: 20px;
    background: var(--navy);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    color: var(--navy);
    font-size: 17px;
    font-weight: 600;
}

.info-text span {
    color: #444;
    font-size: 14px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #b9b9c5;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
}

.full-width {
    grid-column: 1 / -1;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 14px 50px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
}

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

.map-section {
    max-width: 1200px;
    margin: 40px auto 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}

/* ========== ABOUT PAGE EXTENDED ========== */
.about-page-section {
    padding: 70px 5%;
    background: var(--light-bg);
}

.about-page-section .about-wrapper {
    grid-template-columns: 1fr 1.3fr;
}

.about-features {
    margin-top: 20px;
}

.about-features p {
    margin-bottom: 14px;
}

/* ========== BOOKING PAGE ========== */
.booking-section {
    padding: 70px 5%;
    background: #fff;
    min-height: 50vh;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f7f7fb;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.booking-form h2 {
    color: var(--navy);
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.booking-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    padding: 14px 16px;
    border: 1px solid #b9b9c5;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    font-family: inherit;
    outline: none;
    width: 100%;
}

.booking-form textarea {
    grid-column: 1 / -1;
    min-height: 110px;
    resize: vertical;
}

.booking-form .btn-submit {
    grid-column: 1 / -1;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy);
    color: #fff;
    padding: 60px 5% 20px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand img {
    height: 110px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: var(--navy);
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 22px;
    font-weight: 700;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #fff;
    font-size: 15px;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--gold);
}

.footer-info p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info p i {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
    color: #ddd;
}

.footer-bottom span {
    color: var(--gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .nav-menu { gap: 30px; }
    .nav-menu a { font-size: 16px; }
    .slide-content h1 { font-size: 38px; }
    .services-grid,
    .rent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .about-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: var(--navy);
        width: 75%;
        height: 100vh;
        padding: 90px 30px 30px;
        gap: 25px;
        transition: right 0.4s ease;
        z-index: 998;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .btn-quote {
        display: none;
    }

    .logo img { height: 70px; }

    .hero { height: 60vh; min-height: 400px; }
    .slide-content h1 { font-size: 28px; }
    .slide-content p { font-size: 14px; }

    .page-banner h1 { font-size: 38px; }
    .page-banner { height: 35vh; min-height: 260px; }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid,
    .rent-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 { font-size: 30px; }
    .about-content h2 { font-size: 28px; }
    .rent-title { font-size: 30px; }

    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-links { justify-content: center; }
    .footer-info p { justify-content: center; }

    .contact-form { grid-template-columns: 1fr; }
    .booking-form .form-grid { grid-template-columns: 1fr; }

    .slider-arrow { width: 36px; height: 36px; font-size: 16px; }
    .slider-arrow.prev { left: 8px; }
    .slider-arrow.next { right: 8px; }
}

@media (max-width: 480px) {
    .header { padding: 12px 4%; }
    .slide-content h1 { font-size: 24px; }
    .btn-primary { padding: 10px 26px; font-size: 14px; }
    .section-header h2 { font-size: 26px; }
    .page-banner h1 { font-size: 30px; letter-spacing: 1px; }
    .about-image { padding: 18px; }
    .booking-form { padding: 24px; }
}
