html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Playfair', serif;
}

main {
    flex: 1;
}

/* ===============================
   OFFLINE FONT
================================= */

@font-face {
    font-family: 'Playfair';
    src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Playfair';
    src: url('../fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'Greatvibes';
    src: url('../fonts/GreatVibes-Regular.ttf') format('truetype');
    font-weight: normal;
}


/* ===============================
   PREMIUM NAVBAR (MATCH IMAGE)
================================= */

.custom-navbar {
    background: url('../images/nav-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 14px 0;

    border-top: 3px solid #D4AF37;
    border-bottom: 3px solid #D4AF37;

    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}


.navbar-nav .nav-link {
    font-family: 'Playfair', serif;
    letter-spacing: 1px;
    font-size: 20px;
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 25px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #D4AF37 !important;
}

/* Optional gold underline on hover */
.navbar-nav .nav-link::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #D4AF37;
    transition: 0.3s;
    margin-top: 3px;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ===============================
   PREMIUM BRAND LOGO
================================= */

.brand-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
}

.brand-main {
    font-family: 'Greatvibes', serif;
    font-size: 45px;
    font-weight: bold;
    color: #D4AF37;
    letter-spacing: 3px;
}

.brand-sub {
    font-family: 'Playfair', serif;
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 2px;
}


/* ===============================
   PREMIUM FOOTER
================================= */

.footer {
    background: linear-gradient(135deg, #08172B, #0B1F3B);
    color: #ffffff;
    padding-top: 60px;
    border-top: 4px solid #D4AF37;
}

.footer-title {
    font-family: 'Greatvibes';
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* SUBTITLE */
.footer-subtitle {
    font-family: 'Playfair';
    color: #D4AF37;
    margin-bottom: 15px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

/* CONTACT ICONS */
.footer i {
    color: #D4AF37;
    margin-right: 8px;
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #D4AF37;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* BOTTOM BAR */
.footer-bottom {
    background: #061220;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 14px;
}


/* ===============================
   HERO SECTION
================================= */

.hero-section {
    position: relative;
    height: 100vh;
    background: url('../images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 23, 43, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

/* Logo */
.hero-logo {
    width: 120px;
}

/* Brand Name */
.hero-title {
    font-family: 'Greatvibes', cursive;
    font-size: 70px;
    color: #D4AF37;
text-shadow: 0 0 15px rgba(212,175,55,0.5);
font-weight: bold;
}

/* Subtitle */
.hero-subtitle {
    font-family: 'Playfair', serif;
    letter-spacing: 4px;
    font-size: 16px;
    color: #ffffff;
    
}

/* Tagline */
.hero-tagline {
    font-family: 'Playfair', serif;
    font-size: 20px;
    letter-spacing: 1px;
}

/* Button */
.btn-gold {
    background: #D4AF37;
    color: #020d24;
    padding: 10px 30px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #c39b2e;
}

/* ===============================
   WELCOME SECTION ANDAMAN
================================= */

.welcome-section {
    position: relative;
    background: url('../images/welcome.png') no-repeat center center/cover;
    padding: 100px 0;
    color: #ffffff;
}

.welcome-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 23, 43, 0.75);
}

.welcome-content {
    position: relative;
    z-index: 2;
}

.welcome-small {
    color: #D4AF37;
    letter-spacing: 3px;
}

.welcome-title {
    font-family: 'Playfair';
    font-size: 42px;
}

.welcome-text {
    max-width: 700px;
    margin: 20px auto;
}

.feature-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.3);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
}

.feature-box i {
    font-size: 30px;
    color: #D4AF37;
}

/* ===============================
   SERVICES SECTION
================================= */

.services-section {
    background: #f8f9fa;
}

.section-small {
    color: #D4AF37;
    letter-spacing: 3px;
    font-size: 14px;
}

.section-title {
    font-family: 'Playfair';
    font-size: 36px;
    color: #0B1F3B;
}

.service-box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-box i {
    font-size: 35px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.service-box h5 {
    font-family: 'Playfair';
    color: #0B1F3B;
}

.service-box p {
    font-size: 14px;
    color: #555;
}


/* ===============================
   TESTIMONIAL SECTION
================================= */

.testimonial-section {
    background: #f8f9fa;
}

.testimonial-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.testimonial-box:hover {
    transform: translateY(-8px);
}

.testimonial-box p {
    font-size: 14px;
    color: #555;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 15px;
}

.client-info h6 {
    margin: 0;
    font-family: 'Playfair';
    color: #0B1F3B;
}

.stars {
    color: #D4AF37;
    font-size: 14px;
}

/* ===============================
   CONTACT SECTION
================================= */

.contact-section {
    background: linear-gradient(135deg, #08172B, #0B1F3B);
    color: #ffffff;
}

.contact-info h4 {
    font-family: 'Playfair';
    color: #D4AF37;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-info i {
    color: #D4AF37;
    margin-right: 8px;
}

.contact-form-box {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.3);
}

.contact-form-box .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
}

.contact-form-box .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form-box .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #D4AF37;
    box-shadow: none;
}

.btn-gold {
    background: #D4AF37;
    color: #08172B;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #c39b2e;
}

/* ===============================
   PACKAGE PAGE
================================= */

/* PAGE HERO */
.package-hero {
    position: relative;
    height: 55vh;
    background: 
        linear-gradient(rgba(8,23,43,0.75), rgba(8,23,43,0.75)),
        url('../images/package-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

/* Optional smooth zoom effect */
.package-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: -1;
}

/* Remove old overlay div if using gradient method */
.package-hero .overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Greatvibes';
    font-size: 60px;
    color: #D4AF37;
    letter-spacing: 2px;
}

.hero-content p {
    font-family: 'Playfair';
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
}


/* FILTER */
.filter-btn {
    background: transparent;
    border: 1px solid #08172B;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #08172B;
    color: #fff;
}

/* CARD */
.premium-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.premium-card:hover {
    transform: translateY(-10px);
}

.card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.premium-card:hover img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #08172B;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D4AF37;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.fav-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

.fav-icon.active i {
    color: red;
}

.card-content {
    padding: 25px;
}

.price .old {
    text-decoration: line-through;
    color: #999;
}

.price .new {
    color: #D4AF37;
    font-weight: bold;
    margin-left: 10px;
}

.full {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.card-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.btn-read {
    background: none;
    border: none;
    color: #08172B;
    font-weight: 600;
}

.btn-details {
    background: #D4AF37;
    padding: 6px 14px;
    border-radius: 20px;
    color: #08172B;
    text-decoration: none;
}
.modal-body h6 {
    margin-top: 15px;
}

.modal-body ol {
    padding-left: 20px;
}


/* HERO */
.about-hero {
    position: relative;
    height: 50vh;
    background: 
        linear-gradient(rgba(8,23,43,0.75), rgba(8,23,43,0.75)),
        url('../images/about-hero.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-hero .hero-content h1 {
    font-family: 'Greatvibes';
    font-size: 60px;
    color: #D4AF37;
}

/* WHY SECTION */
.why-section {
    background: #08172B;
    color: #fff;
}

.why-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s;
}

.why-box:hover {
    background: #D4AF37;
    color: #08172B;
}

.why-box i {
    font-size: 35px;
    margin-bottom: 15px;
}

/* STATS */
.stats-section {
    background: #f8f9fa;
}

.counter {
    font-size: 40px;
    font-weight: bold;
    color: #D4AF37;
}

/* CTA */
.cta-section {
    background: #08172B;
    color: #fff;
}

/* ===============================
   CONTACT HERO
================================= */

/* HERO */
.contact-hero {
    height: 50vh;
    background:
        linear-gradient(rgba(8,23,43,0.75), rgba(8,23,43,0.75)),
        url('../images/about-hero.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-hero h1 {
    font-family: 'Greatvibes';
    font-size: 60px;
    color: #D4AF37;
}

.contact-wrapper {
    background: #f4f6f9;
}

/* INFO CARD */
.contact-info-card {
    background: #08172B;
    color: #fff;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
}

.contact-info-card h3 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 15px;
}

.info-item i {
    color: #D4AF37;
    margin-right: 8px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #1ebe5b;
}

/* FORM CARD */
.contact-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-control {
    border-radius: 10px;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: #D4AF37;
    box-shadow: none;
}

.btn-submit {
    background: #08172B;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
}

.btn-submit:hover {
    background: #D4AF37;
    color: #08172B;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}


/* HERO */
.activity-hero {
    position: relative;
    height: 70vh;
    background: linear-gradient(rgba(0,0,50,0.7), rgba(0,0,50,0.7)),
                url('../images/water-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.activity-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* CARDS */
.activity-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 18px;
    transition: 0.4s;
}

.activity-card:hover {
    transform: translateY(-8px);
}

.activity-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s ease;
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    text-align: center;
}

/* MODAL */
.modal-content {
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}