:root {

    --color-primary: #0A192F;

    --color-accent: #D4AF37;

    --color-accent-hover: #b8972e;

    --color-light: #F9F6F0;

    --color-dark: #112240;

    --color-text: #2C3E50;

    --color-white: #FFFFFF;


    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;


    --fz-base: 18px;

    --fz-xl: clamp(2.5rem, 5vw, 4rem);
    --fz-lg: clamp(1.8rem, 4vw, 2.5rem);
    --fz-md: clamp(1.3rem, 2vw, 1.5rem);


    --shadow-sm: 0 4px 6px rgba(10, 25, 47, 0.08);
    --shadow-md: 0 8px 24px rgba(10, 25, 47, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fz-base);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.section {
    padding: 5rem 0;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-heading h2 {
    font-size: var(--fz-lg);
    margin-bottom: 1rem;
}

.bg-light {
    background-color: var(--color-light);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-primary {
    background-color: var(--color-primary);
}

.text-white {
    color: var(--color-white) !important;
}

.text-white h2,
.text-white h3 {
    color: var(--color-white);
}

.text-accent {
    color: var(--color-accent);
}


.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);

}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-accent);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn i,
.btn .icon {
    margin-right: 0.5rem;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    padding: 1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 150;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    position: relative;
}

.main-logo {
    z-index: 200;
}

.logo-accent {
    color: var(--color-accent);
}


.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--color-primary);
    cursor: pointer;
    position: relative;
    z-index: 200;
}


.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-cta .btn-sticky {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}


.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 2rem;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
}

.hero-title {
    color: var(--color-white);
    font-size: var(--fz-xl);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
}


.booking-bar {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.5rem;
}

.input-group {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    width: 100%;
    min-width: 0;
    height: 3.2rem;
    background-color: var(--color-white);
}


.input-group input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
}

.booking-form .btn {
    flex: 1;
    min-width: 200px;
}


@media (max-width: 430px) {
    .flex-text {
        font-size: 1.6rem !important;
    }
}

.why-us {
    text-align: center;
    font-size: var(--fz-lg);
    margin-bottom: 3.5rem;
}

.booking-247-banner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0;
}

.booking-247-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .booking-247-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.booking-247-text {
    flex: 1;
}

.booking-247-text h2 {
    color: var(--color-white);
    font-size: var(--fz-lg);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.booking-247-text p {
    color: var(--color-white);
    opacity: 0.85;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .booking-247-text p {
        font-size: 1.1rem;
        margin: 0;
    }
}

.booking-247-action {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .booking-247-action {
        width: auto;
        max-width: none;
        margin: 0;
        flex-shrink: 0;
    }
}

.booking-247-action .btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    padding: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    animation: pulse 2s infinite;
}

@media (min-width: 992px) {
    .booking-247-action .btn {
        display: inline-flex;
        width: auto;
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
        gap: 0.8rem;
    }
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-light);
    color: var(--color-accent);
    font-size: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}


.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

@media (min-width: 800px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.package-card {
    background: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.package-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 20px;
    font-size: 0.9rem;
}

.package-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-list {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.package-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.package-list i {
    color: var(--color-accent);
    margin-top: 0.3rem;
    margin-right: 0.8rem;
}

.package-footer {
    margin-top: auto;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--color-light);
}

.gallery-item .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease-out;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover .gallery-caption {
    bottom: 1.5rem;
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: -2rem;
    left: 1.5rem;
    right: 1.5rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.only-on-desktop2 {
    display: none;
}


@media (min-width: 768px) {
    .item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .item-wide {
        grid-column: span 2;
    }

    .only-on-desktop2 {
        display: block;
    }
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1rem;
}

.stars {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #003B95;
    color: #FFFFFF;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-info,
.contact-form-container {
    flex: 1 1 500px;
    padding: 4rem;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-method i {
    font-size: 2rem;
    color: var(--color-accent);
}

.contact-method span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-method strong {
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #000000 !important;
    background-color: #ffffff !important;
    -webkit-appearance: none;
    appearance: none;
}


.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 0 1 auto;
    max-width: 350px;
}

.footer h4 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.creator-info {
    margin-top: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.creator-info a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.creator-info a:hover {
    color: var(--color-accent);
}


.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.simple-form {
    margin-top: 2rem;
}


@media (max-width: 992px) {
    .menu-toggle {
        display: block;

    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem;
        box-shadow: none;
        transition: left 0.4s ease;
        z-index: 100;
    }

    .nav-link {
        font-size: 1.27rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        margin-top: 0px;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-title {
        margin-bottom: 3rem;
    }

    .contact-info,
    .contact-form-container {
        padding: 3rem 2rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-col {
        max-width: 500px;
        flex: 1 1 100%;
    }
}

@media (max-width: 885px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .booking-form {
        flex-direction: column;
    }

    .booking-form .input-group {
        width: 100%;
    }

    .nav-cta .btn-sticky {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 4rem 0;
    }
}

.only-on-mobile {
    display: none;
}

@media (max-width: 480px) {
    .hide-on-small-screens {
        display: none;
    }

    .only-on-mobile {
        display: block;
    }

    .container {
        padding: 0 21px;
    }

    .nav-cta span {
        display: none;

    }

    .logo {
        font-size: 1.2rem;
    }

    .contact-info strong {
        font-size: 1.1rem;
    }

    .author-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}

@media (max-width: 400px) {

    .contact-info strong {
        font-size: 1rem;
    }

}




@media (min-width: 993px) {
    .hero {
        background-attachment: fixed;
    }

}

.only-on-desktop {
    display: none;
}

@media (min-width: 480px) {
    .footer-bottom br {
        display: none;
    }

    .only-on-desktop {
        display: block;
    }
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-actions {
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
        display: block;
    }
}

/* Custom Checkbox */
.custom-checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
    user-select: none;
    min-height: 24px;
    margin-bottom: 20px;
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 20px;
    width: 20px;
    left: 0;
    top: 0;
    margin: 0;
    z-index: 2;
}

.custom-checkbox-container .checkmark {
    position: absolute;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    padding: 9px;
}

.custom-checkbox-container:hover input~.checkmark {
    border-color: var(--color-primary);
}

.custom-checkbox-container input:checked~.checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox-container input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-container .checkbox-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}