/* --- Global Styles & Variables (Refined for Luxury) --- */
:root {
    --primary-dark-blue: #0D2C4F;      /* Deeper, more saturated navy */
    --royal-deep-blue: #031A34;        /* Very dark, almost black-blue */
    --secondary-steel-blue: #4A6E8A;   /* Elegant muted blue */
    --accent-light-sky-blue: #A0BFD9;  /* Softer light blue */
    --accent-gold: #B08D57;            /* More sophisticated, less bright gold */
    --accent-soft-gold: #D4B98A;
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;               /* Very clean, almost white light background */
    --bg-light-accent: #EEF4F9;        /* Subtle blue tint for sections */
    --text-light: #E8EFF5;             /* Light text for dark backgrounds */
    --text-dark-charcoal: #1E293B;     /* Strong, readable dark text */
    --text-medium-gray: #64748B;       /* Softer grey for secondary text */
    --text-on-gold: #3A2D13;           /* Dark brown/black for text on gold */
    --border-color-light: #CBD5E1;     /* Subtle borders */
    --border-color-medium: #94A3B8;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --container-width: 1200px;
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-subtle: 0 2px 8px rgba(30, 41, 59, 0.05);
    --shadow-soft: 0 4px 12px rgba(30, 41, 59, 0.08);
    --shadow-medium: 0 8px 24px rgba(30, 41, 59, 0.1);
    --shadow-strong: 0 12px 32px rgba(30, 41, 59, 0.12);
    --header-height: 80px;
}

/* Base Resets & Typography */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark-charcoal);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark-blue);
    margin-bottom: calc(var(--spacing-unit) * 1.2);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-style: italic; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3.5vw, 1.8rem); }
p { margin-bottom: var(--spacing-unit); color: var(--text-medium-gray); font-weight: 400; font-size: 1rem;}
.lead { font-size: 1.15rem; color: var(--text-dark-charcoal); max-width: 750px; margin-left: auto; margin-right: auto; font-weight: 400; margin-bottom: calc(var(--spacing-unit) * 1.5); }
a { text-decoration: none; color: var(--secondary-steel-blue); transition: color 0.3s ease, opacity 0.3s ease; }
a:hover { color: var(--accent-gold); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 90%; max-width: var(--container-width); margin: 0 auto; padding: 0 var(--spacing-unit); }
.section-padding { padding: calc(var(--spacing-unit) * 5) 0; }
.bg-light { background-color: var(--bg-light); }
.bg-light-accent { background-color: var(--bg-light-accent); }
.text-center { text-align: center; }
.section-title-styled { position: relative; display: block; text-align: center; margin-bottom: calc(var(--spacing-unit) * 1); padding-bottom: calc(var(--spacing-unit) * 0.8); }
.section-title-styled span { position: relative; z-index: 1; }
.section-title-styled::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--accent-gold); z-index: 0; border-radius: 3px; }
.btn { display: inline-block; padding: calc(var(--spacing-unit)*0.9) calc(var(--spacing-unit)*2.5); border-radius: var(--border-radius); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1); border: 2px solid transparent; cursor: pointer; font-size: 0.95rem; line-height: 1.5; box-shadow: var(--shadow-soft); }
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-medium); }
.btn i { margin-right: 10px; }
.btn-primary { background-color: var(--secondary-steel-blue); color: var(--text-light); border-color: var(--secondary-steel-blue); }
.btn-primary:hover { background-color: var(--primary-dark-blue); border-color: var(--primary-dark-blue); }
.btn-outline { background-color: transparent; color: var(--secondary-steel-blue); border-color: var(--border-color-medium); box-shadow: none; }
.btn-outline.btn-sm { padding: calc(var(--spacing-unit)*0.6) calc(var(--spacing-unit)*1.5); font-size: 0.85rem; }
.btn-outline.btn-sm i { margin-left: 6px; margin-right: 0; }
.btn-outline:hover { background-color: var(--secondary-steel-blue); color: var(--text-light); border-color: var(--secondary-steel-blue); box-shadow: var(--shadow-soft); }
.btn-primary-gold { background-color: var(--accent-gold); color: var(--text-on-gold); font-weight: 500; border-color: var(--accent-gold); }
.btn-primary-gold:hover { background-color: var(--accent-soft-gold); border-color: var(--accent-soft-gold); color: var(--text-on-gold); }
.btn-hero { padding: calc(var(--spacing-unit)*1) calc(var(--spacing-unit)*3); font-size: 1.05rem; letter-spacing: 1.2px;}
.btn-hero i { margin-left: 10px; margin-right: 0; transition: transform 0.3s ease;}
.btn-hero:hover i { transform: translateX(5px); }
.btn-outline-light-gold-revamped { background-color: transparent; color: var(--accent-soft-gold); border: 2px solid var(--accent-soft-gold); font-weight: 500; text-transform: uppercase; padding: calc(var(--spacing-unit)*0.9) calc(var(--spacing-unit)*2.5); letter-spacing: 1px; }
.btn-outline-light-gold-revamped:hover { background-color: var(--accent-soft-gold); color: var(--royal-deep-blue); border-color: var(--accent-soft-gold); }
.btn-block { display: block; width: 100%; }
.section-cta-button { margin-top: calc(var(--spacing-unit) * 3); }

/* Header */
header { background-color: rgba(13, 44, 79, 0.95); backdrop-filter: blur(8px); color: var(--text-light); height: var(--header-height); position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.1); display: flex; align-items: center; transition: background-color 0.3s ease; }
header.scrolled { background-color: var(--primary-dark-blue); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent-gold); font-style: italic;}
.contact-info-header { font-size: 0.9rem; color: var(--accent-light-sky-blue); margin-left: auto; margin-right: calc(var(--spacing-unit) * 2.5); }
nav ul { list-style: none; display: flex; align-items: center; }
nav ul li { margin-left: calc(var(--spacing-unit) * 2.2); }
nav ul li a { color: var(--text-light); font-weight: 500; padding: calc(var(--spacing-unit)*0.5) 0; position: relative; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
nav ul li a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2.5px; background-color: var(--accent-gold); transition: width 0.35s ease; border-radius: 1px; }
nav ul li a:hover::after, nav ul li a.active::after { width: 100%; }
nav ul li a.active, nav ul li a:hover { color: var(--accent-gold); }
#mobile-menu-toggle { display: none; background: none; border: none; color: var(--text-light); font-size: 1.8rem; cursor: pointer; }
main { padding-top: var(--header-height); }

/* Hero Section */
.hero-revamped { position: relative; height: 100vh; min-height: 600px; background: url('../images/about-banner-cruiseline.jpg') no-repeat center center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--bg-main); overflow: hidden; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(3, 26, 52, 0.4) 0%, rgba(3, 26, 52, 0.8) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-title { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; color: var(--bg-main); text-shadow: 0 3px 15px rgba(0,0,0,0.3); margin-bottom: calc(var(--spacing-unit) * 1.5); line-height: 1.1; }
.hero-subtitle { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--accent-light-sky-blue); margin-bottom: calc(var(--spacing-unit) * 2.5); font-weight: 300; line-height: 1.7; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; font-size: 1.8rem; color: rgba(255,255,255,0.7); animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

/* Find Your Perfect Voyage */
.find-cruise-section { background-color: var(--bg-light); }
.find-cruise-section .form-sub-lead { margin-top: calc(var(--spacing-unit) * 0.5); margin-bottom: calc(var(--spacing-unit) * 2.5); }
.find-cruise-form-wrapper { background-color: #163557; padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 2); border-radius: var(--border-radius); box-shadow: var(--shadow-strong); max-width: 1000px; margin: 0 auto; }
.find-cruise-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: calc(var(--spacing-unit) * 1.8); align-items: flex-end; }
.find-cruise-form .form-group { display: flex; flex-direction: column; }
.find-cruise-form label { font-size: 0.85rem; font-weight: 500; color:#ffffff; margin-bottom: calc(var(--spacing-unit) * 0.5); display: flex; align-items: center; }
.find-cruise-form .form-icon { margin-right: calc(var(--spacing-unit) * 0.6); color: var(--secondary-steel-blue); font-size: 0.9em; }
.find-cruise-form input[type="text"], .find-cruise-form input[type="month"], .find-cruise-form select { width: 100%; padding: calc(var(--spacing-unit) * 0.9); border: 1px solid var(--border-color-medium); border-radius: var(--border-radius); font-size: 0.95rem; font-family: var(--font-body); color: var(--text-dark-charcoal); background-color: var(--bg-main); transition: border-color .2s ease-in-out, box-shadow .2s ease-in-out; appearance: none; }
.find-cruise-form input[type="text"]::placeholder, .find-cruise-form input[type="month"]::placeholder { color: var(--text-medium-gray); opacity: 0.8; }
.find-cruise-form input[type="text"]:focus, .find-cruise-form input[type="month"]:focus, .find-cruise-form select:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 3.5px rgba(176, 141, 87, 0.2); }
.find-cruise-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234A6E8A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right calc(var(--spacing-unit) * 0.8) center; background-size: 1em; padding-right: calc(var(--spacing-unit) * 2.5); }
.form-disclaimer { margin-top: calc(var(--spacing-unit) * 1.5); font-size: 0.8rem; color: var(--text-medium-gray); font-style: italic; }

/* Featured Cruise Line Voyages (Slider V3 - Supreme Cruises Inspired) */
.featured-cruises-section-v3 {  background-image: url('../images/bg.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
.featured-cruises-section-v3 .lead { margin-bottom: calc(var(--spacing-unit) * 3); }
.swiper-container.cruise-slider-v3 { width: 100%; padding: 20px 0 calc(var(--spacing-unit) * 4) 0; overflow: hidden; }
.cruise-slider-v3 .swiper-slide { display: flex; justify-content: center; align-items: stretch; height: auto; box-sizing: border-box; }
.cruise-card-v3 { background: var(--bg-main); border-radius: var(--border-radius); box-shadow: var(--shadow-medium); overflow: hidden; display: flex; flex-direction: column; width: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.cruise-card-v3:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.cruise-card-v3-img { width: 100%; height: 220px; object-fit: cover; }
.cruise-card-v3-content { padding: calc(var(--spacing-unit) * 1.5); flex-grow: 1; display: flex; flex-direction: column; text-align: left; }
.cruise-card-v3-category { display: block; font-size: 0.8rem; color: var(--text-medium-gray); margin-bottom: calc(var(--spacing-unit) * 0.5); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.cruise-card-v3-content h3 { font-size: 1.4rem; color: var(--primary-dark-blue); margin-bottom: calc(var(--spacing-unit) * 0.75); }
.cruise-card-v3-content p { font-size: 0.9rem; color: var(--text-medium-gray); line-height: 1.6; margin-bottom: calc(var(--spacing-unit) * 1.5); flex-grow: 1; }
.cruise-card-v3 .btn-outline { align-self: flex-start; border-color: var(--accent-gold); color: var(--accent-gold); }
.cruise-card-v3 .btn-outline:hover { background-color: var(--accent-gold); color: var(--text-on-gold); }

/* Navigation for Slider V3 - CUSTOM CSS ARROWS */
.cruise-slider-v3-prev,
.cruise-slider-v3-next {
    position: absolute;
    top: 50%; /* Adjust to be roughly level with card images */
    transform: translateY(-50%);
    width: 48px;
    height: 48px;

    color: var(--primary-dark-blue);

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    transition: all 0.3s ease;
    z-index: 10;

}
.cruise-slider-v3-prev:hover,
.cruise-slider-v3-next:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}
.cruise-slider-v3-prev:hover::before, /* Change arrow color on button hover */
.cruise-slider-v3-next:hover::before {
    border-color: var(--text-on-gold);
}
.cruise-slider-v3-prev { left: calc( (100% - var(--container-width) - 120px) / 2 ); } /* Positioned far left, adjust 120px based on actual container width and desired offset */
.cruise-slider-v3-next { right: calc( (100% - var(--container-width) - 120px) / 2 ); } /* Positioned far right */

/* Custom Arrow Shapes using Pseudo-elements */
.cruise-slider-v3-prev::before,
.cruise-slider-v3-next::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 2.5px 2.5px 0 0;
    border-color: var(--primary-dark-blue);
    transition: border-color 0.3s ease;
}
.cruise-slider-v3-prev::before { transform: translateX(2px) rotate(-135deg); }
.cruise-slider-v3-next::before { transform: translateX(-2px) rotate(45deg); }

/* Pagination for Slider V3 */
.cruise-slider-v3-pagination { position: absolute; bottom: 10px; left: 0; width: 100%; text-align: center; }
.cruise-slider-v3-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background-color: var(--border-color-medium); opacity: 0.7; margin: 0 5px; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
.cruise-slider-v3-pagination .swiper-pagination-bullet-active { background-color: var(--accent-gold); opacity: 1; width: 25px; border-radius: 5px; }

/* Why Sail With Us (Modernized) */
.why-choose-us-revamped { background-color: var(--bg-main); }
.features-grid-modern { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: calc(var(--spacing-unit) * 3); }
.feature-item-modern { text-align: center; padding: calc(var(--spacing-unit) * 2); border-radius: var(--border-radius); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-item-modern:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); }
.feature-icon-modern { width: 80px; height: 80px; margin: 0 auto calc(var(--spacing-unit) * 1.5) auto; background-color: var(--accent-light-sky-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-dark-blue); font-size: 2.2rem; box-shadow: 0 0 0 8px rgba(160, 191, 217, 0.3); transition: all 0.3s ease; }
.feature-item-modern:hover .feature-icon-modern { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(176, 141, 87, 0.2); }
.feature-icon-modern.gold { background-color: var(--accent-gold); color: var(--text-on-gold); box-shadow: 0 0 0 8px rgba(176, 141, 87, 0.3); }
.feature-title-modern { font-size: 1.6rem; margin-bottom: calc(var(--spacing-unit) * 0.8); font-weight: 700; }
.feature-text-modern { font-size: 0.95rem; line-height: 1.75; color: var(--text-medium-gray); }

/* Popular Destinations V2 - PADDING ADDED */
.popular-destinations-v2 { background-color: var(--bg-light); }
.destinations-grid-v2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: calc(var(--spacing-unit) * 2.5); margin-top: calc(var(--spacing-unit) * 2); }
.destination-card-v2 { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-medium); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; min-height: 380px; display: flex; flex-direction: column; }
.destination-card-v2:hover { transform: translateY(-10px) scale(1.03); box-shadow: var(--shadow-strong); }
.destination-card-v2-img-wrapper { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 1; }
.destination-card-v2-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.5s ease; }
.destination-card-v2:hover .destination-card-v2-img-wrapper img { transform: scale(1.1); filter: brightness(0.9); }
.destination-card-v2-content {
    position: relative; z-index: 2;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 1.8); /* Increased padding */
    background: linear-gradient(to top, rgba(3, 26, 52, 0.9) 0%, rgba(3, 26, 52, 0.3) 60%, transparent 100%);
    color: var(--text-light); margin-top: auto; display: flex; flex-direction: column;
    justify-content: flex-end; min-height: 50%;
}
.destination-card-v2-content h3 { font-size: 1.7rem; margin-bottom: var(--spacing-unit); color: var(--bg-main); font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.destination-card-v2 .btn-outline { border-color: rgba(255,255,255,0.7); color: var(--bg-main); background-color: rgba(255,255,255,0.1); backdrop-filter: blur(2px); align-self: flex-start; }
.destination-card-v2 .btn-outline:hover { background-color: var(--accent-gold); border-color: var(--accent-gold); color: var(--text-on-gold); }

/* Showcase Sections (Grand Voyages, World Sojourns) */
.showcase-section { position: relative; padding: calc(var(--spacing-unit) * 8) 0; color: var(--text-light); background-size: cover; background-position: center center; background-attachment: fixed; text-align: center; }
.grand-voyages-showcase { background:#02023a; }
.world-sojourns-showcase { background:#02023a; }
.showcase-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(3, 26, 52, 0.75); z-index: 1; }
.showcase-content { position: relative; z-index: 2; max-width: 900px; }
.showcase-subtitle { display: block; font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-soft-gold); margin-bottom: var(--spacing-unit); }
.showcase-title { font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--bg-main); text-shadow: 0 2px 10px rgba(0,0,0,0.3); margin-bottom: calc(var(--spacing-unit) * 1.5); line-height: 1.15; }
.showcase-description { font-size: 1.15rem; color: var(--accent-light-sky-blue); margin-bottom: calc(var(--spacing-unit) * 2.5); line-height: 1.8; font-weight: 300; }
.btn-outline-light-showcase { background-color: transparent; color: var(--accent-gold); border: 2px solid var(--accent-gold); font-weight: 500; padding: calc(var(--spacing-unit)*0.9) calc(var(--spacing-unit)*2.8); }
.btn-outline-light-showcase:hover { background-color: var(--accent-gold); color: var(--royal-deep-blue); }

/* Signature Collections */
.signature-collections-section { background-color: var(--bg-main); }
.collection-item { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--spacing-unit) * 3); align-items: center; margin-bottom: calc(var(--spacing-unit) * 4); }
.collection-item.reverse .collection-image { grid-column: 2 / 3; grid-row: 1 / 2; }
.collection-item.reverse .collection-content { grid-column: 1 / 2; grid-row: 1 / 2; }
.collection-image img { width: 100%; height: auto; max-height: 450px; object-fit: cover; border-radius: var(--border-radius); box-shadow: var(--shadow-strong); }
.collection-content h3 { font-size: 2rem; font-weight: 700; margin-bottom: var(--spacing-unit); }
.collection-content p { font-size: 1rem; color: var(--text-medium-gray); margin-bottom: calc(var(--spacing-unit) * 2); line-height: 1.8; }

/* CTA Revamped */
.cta-revamped { background-color: var(--bg-light-accent); }
.cta-title { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--primary-dark-blue); font-weight: 700; margin-bottom: var(--spacing-unit); }
.cta-subtitle { font-size: 1.15rem; color: var(--text-dark-charcoal); margin-bottom: calc(var(--spacing-unit) * 2.5); line-height: 1.7; }
.btn-cta-main { padding: calc(var(--spacing-unit)*1) calc(var(--spacing-unit)*3); font-size: 1.1rem; letter-spacing: 1.2px; }

/* Footer */
.site-footer { background-color: var(--royal-deep-blue); color: var(--text-light); padding: calc(var(--spacing-unit) * 4) 0 calc(var(--spacing-unit) * 1.5); font-size: 0.9rem; }
.footer-upper-widgets { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: calc(var(--spacing-unit) * 2.5); margin-bottom: calc(var(--spacing-unit) * 3); }
.footer-widget .widget-title { color: var(--accent-gold); margin-bottom: calc(var(--spacing-unit) * 1.2); font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.8px; position: relative; padding-bottom: calc(var(--spacing-unit)*0.5); }
.footer-widget .widget-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--accent-soft-gold); }
.footer-widget p, .footer-widget ul li { margin-bottom: calc(var(--spacing-unit) * 0.7); color: var(--accent-light-sky-blue); opacity: 0.85; }
.footer-widget p i { margin-right: 10px; color: var(--accent-soft-gold); width: 15px; text-align: center; }
.footer-widget ul { list-style: none; padding-left: 0; }
.footer-widget a { color: var(--accent-light-sky-blue); }
.footer-widget a:hover { color: var(--accent-gold); opacity: 1; text-decoration: none; }
.newsletter-form { display: flex; margin-top: var(--spacing-unit); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.newsletter-form input[type="email"] { flex-grow: 1; padding: calc(var(--spacing-unit)*0.8); border: 1px solid var(--secondary-steel-blue); background-color: var(--bg-main); color: var(--text-dark-charcoal); font-family: var(--font-body); border-radius: var(--border-radius) 0 0 var(--border-radius); border-right: none; }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 2px rgba(176, 141, 87, 0.2); }
.newsletter-form .btn-primary-gold { border-radius: 0 var(--border-radius) var(--border-radius) 0; padding: calc(var(--spacing-unit)*0.8) calc(var(--spacing-unit)*1.2); letter-spacing: 0.5px; box-shadow: none; }
.newsletter-form .btn-primary-gold i { margin-right: 0; }
.social-icons { margin-top: calc(var(--spacing-unit) * 1.5); }
.social-icons a { color: var(--accent-light-sky-blue); font-size: 1.3rem; margin-right: calc(var(--spacing-unit) * 1.2); opacity: 0.8; }
.social-icons a:hover { color: var(--accent-gold); opacity: 1; }
.social-icons a:last-child { margin-right: 0; }
.footer-accreditations { padding: calc(var(--spacing-unit) * 2) 0; margin: calc(var(--spacing-unit) * 2) 0; border-top: 1px solid rgba(160, 191, 217, 0.2); border-bottom: 1px solid rgba(160, 191, 217, 0.2); }
.footer-accreditations .widget-title { text-align: center; }
.footer-accreditations .widget-title::after { left: 50%; transform: translateX(-50%); }
.accreditation-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; margin-top: var(--spacing-unit); }
.accreditation-logos img { max-height: 45px; width: auto;}
.accreditation-logos img:hover { opacity: 0.7; }
.footer-bottom { text-align: center; padding-top: calc(var(--spacing-unit) * 1.5); font-size: 0.85rem; color: var(--accent-light-sky-blue); opacity: 0.7; }

/* Modal Styles */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(13, 44, 79, 0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0s linear 0.4s; }
.modal-overlay.active { opacity: 1; visibility: visible; transition: opacity 0.4s ease, visibility 0s linear 0s; }
.modal-content { background-color: var(--bg-main); color: var(--text-dark-charcoal); padding: calc(var(--spacing-unit) * 2.5); border-radius: var(--border-radius-lg); box-shadow: var(--shadow-strong); width: 90%; max-width: 800px; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(0.9); transition: transform 0.4s ease; }
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-close-button { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 2.2rem; color: var(--text-medium-gray); cursor: pointer; line-height: 1; padding: 5px; transition: color 0.2s ease; }
.modal-close-button:hover { color: var(--primary-dark-blue); }
.modal-header { margin-bottom: var(--spacing-unit); padding-bottom: var(--spacing-unit); border-bottom: 1px solid var(--border-color-light); }
.modal-header h2 { color: var(--primary-dark-blue); font-size: 2rem; margin-bottom: 0; }
.modal-body { padding: var(--spacing-unit) 0; }
.modal-image-placeholder { width: 100%; height: 300px; background-color: var(--bg-light-accent); border-radius: var(--border-radius); margin-bottom: var(--spacing-unit); overflow: hidden; }
.modal-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.modal-body h4 { font-size: 1.2rem; color: var(--primary-dark-blue); margin-top: var(--spacing-unit); margin-bottom: calc(var(--spacing-unit)*0.5); }
.modal-body ul { list-style: disc; margin-left: var(--spacing-unit); padding-left: var(--spacing-unit); }
.modal-body ul li { margin-bottom: calc(var(--spacing-unit)*0.3); }
.modal-footer { margin-top: var(--spacing-unit); padding-top: var(--spacing-unit); border-top: 1px solid var(--border-color-light); text-align: right; }
.modal-footer .btn { margin-left: var(--spacing-unit); }

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.2s; }
.animate-on-scroll.delay-2 { transition-delay: 0.4s; }
.animate-on-scroll.delay-3 { transition-delay: 0.6s; }

/* Responsive Styles */
@media (max-width: 1100px) { /* Navbar breakpoint */
    .contact-info-header { display: none; }
    #mobile-menu-toggle { display: block; }
    nav ul { display: none; flex-direction: column; position: absolute; top: var(--header-height); left: 0; width: 100%; background-color: var(--primary-dark-blue); padding: var(--spacing-unit) 0; box-shadow: 0 4px 8px rgba(0,0,0,0.2); border-top: 1px solid var(--secondary-steel-blue); }
    nav ul.active { display: flex; }
    nav ul li { margin: 0; width: 100%; text-align: left; }
    nav ul li a { display: block; padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5); border-bottom: 1px solid rgba(74, 110, 138, 0.3); }
    nav ul li:last-child a { border-bottom: none; }
    nav ul li a::after { display: none; }
    .cruise-slider-v3-prev { left: 15px; } /* Adjusted for tablet */
    .cruise-slider-v3-next { right: 15px; } /* Adjusted for tablet */
}
@media (max-width: 991.98px) {
    .collection-item, .collection-item.reverse { grid-template-columns: 1fr; }
    .collection-item.reverse .collection-image, .collection-item.reverse .collection-content { grid-column: auto; grid-row: auto; }
    .collection-image { margin-bottom: var(--spacing-unit) * 1.5; }
    .showcase-title { font-size: clamp(2.2rem, 5vw, 3.5rem); }
    .showcase-description { font-size: 1.05rem; }
    .cruise-slider-v3-prev { left: 5px; }
    .cruise-slider-v3-next { right: 5px; }
}
@media (max-width: 767.98px) {
    :root { --header-height: 70px; }
    main { padding-top: var(--header-height); }
    .logo { font-size: 1.8rem; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .hero-subtitle { font-size: clamp(1rem, 4vw, 1.2rem); }
    .find-cruise-form { grid-template-columns: 1fr; }
    .find-cruise-form .form-submit-group { margin-top: var(--spacing-unit); }
    .section-title-styled, .why-choose-us-revamped h2, .cta-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .cruise-slider-v3-prev, .cruise-slider-v3-next { display: none; }
    .features-grid-modern { gap: calc(var(--spacing-unit) * 2); }
    .footer-upper-widgets, .footer-accreditations .accreditation-logos { text-align: center; }
    .footer-widget .widget-title::after, .footer-accreditations .widget-title::after { left: 50%; transform: translateX(-50%); }
    .showcase-section { padding: calc(var(--spacing-unit) * 6) 0; }
    .modal-content { width: 95%; padding: calc(var(--spacing-unit) * 1.5); }
    .modal-header h2 { font-size: 1.6rem; }
    .modal-image-placeholder { height: 200px; }
}
@media (max-width: 575.98px) {
    .btn { padding: calc(var(--spacing-unit)*0.75) calc(var(--spacing-unit)*1.8); font-size: 0.85rem; }
    .cta-revamped .btn { display: block; width: 90%; margin: var(--spacing-unit) auto; }
    .cta-revamped .btn-primary-gold { margin-right: auto !important; }
}


/* --- Styles for Internal Page Headers --- */
.page-hero-section {
    position: relative;
    padding: calc(var(--spacing-unit) * 6) 0; /* Generous padding */
    background-size: cover;
    background-position: center center;
    text-align: center;
    color: var(--text-light);
}
.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(13, 44, 79, 0.7); /* Dark blue overlay, adjust opacity as needed */
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
}
.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--bg-main);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.page-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--accent-light-sky-blue);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Styles for About Us Page --- */
.content-section .content-grid-two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    align-items: center;
}
.content-column-text .section-title-styled.left-aligned::after {
    left: 0;
    transform: translateX(0);
}
.section-title-styled.left-aligned { text-align: left; display: block; } /* Ensure it takes full width for left alignment of ::after */

.img-responsive.rounded-img {
    border-radius: var(--border-radius-lg);
    max-width: 100%;
    height: auto;
}

/* --- Styles for Contact Page --- */
.contact-page-section .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Adjust ratio as needed */
    gap: calc(var(--spacing-unit) * 4);
}
.contact-details-column p { margin-bottom: calc(var(--spacing-unit)*1.5); }
.contact-info-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: calc(var(--spacing-unit) * 1.8);
}
.contact-info-block i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-right: calc(var(--spacing-unit) * 1.2);
    margin-top: 5px; /* Align with first line of text */
    width: 30px; /* Ensure consistent spacing */
    text-align: center;
}
.contact-info-block h4 {
    font-size: 1.1rem;
    color: var(--primary-dark-blue);
    margin-bottom: calc(var(--spacing-unit) * 0.2);
}
.contact-info-block p, .contact-info-block p a {
    margin-bottom: 0;
    color: var(--text-medium-gray);
    font-size: 0.95rem;
}
.modern-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: var(--spacing-unit) * 1.5;
}
.modern-contact-form .form-group-contact {
    display: flex;
    flex-direction: column;
}
.modern-contact-form label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark-charcoal);
    margin-bottom: calc(var(--spacing-unit) * 0.4);
}
.modern-contact-form input[type="text"],
.modern-contact-form input[type="email"],
.modern-contact-form input[type="tel"],
.modern-contact-form textarea {
    width: 100%;
    padding: calc(var(--spacing-unit) * 0.9);
    border: 1px solid var(--border-color-medium);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-dark-charcoal);
    background-color: var(--bg-main);
    transition: border-color .2s ease-in-out, box-shadow .2s ease-in-out;
}
.modern-contact-form textarea { margin-bottom: var(--spacing-unit) * 1.5; }
.modern-contact-form input:focus, .modern-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.2);
}
.map-section {
    padding: 0; /* No padding if map is full width */
    line-height: 0; /* Remove space below iframe */
}
.map-placeholder iframe {
    border: none; /* Clean iframe border */
    display: block; /* Ensure no extra space */
}

/* --- Styles for Legal Pages --- */
.legal-content-section .legal-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}
.legal-text h2 {
    font-size: 1.8rem;
    margin-top: calc(var(--spacing-unit) * 2.5);
    margin-bottom: calc(var(--spacing-unit) * 1);
    padding-bottom: calc(var(--spacing-unit) * 0.5);
    border-bottom: 1px solid var(--border-color-light);
}
.legal-text h3 {
    font-size: 1.4rem;
    margin-top: calc(var(--spacing-unit) * 1.8);
    margin-bottom: calc(var(--spacing-unit) * 0.8);
    color: var(--secondary-steel-blue);
}
.legal-text p {
    margin-bottom: calc(var(--spacing-unit) * 1.2);
}
.legal-text ul {
    list-style: disc;
    margin-left: var(--spacing-unit);
    padding-left: var(--spacing-unit);
    margin-bottom: var(--spacing-unit) * 1.2;
}
.legal-text li { margin-bottom: calc(var(--spacing-unit) * 0.5); }
.legal-text em { color: var(--text-medium-gray); font-size: 0.9rem; }

/* --- Styles for Cruise Packages/Lines Grid Page --- */
.cruise-grid-section { background-color: var(--bg-light); }
.cruise-line-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2.5);
}
.cruise-line-card {
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cruise-line-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}
.cruise-line-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.cruise-line-card-content {
    padding: calc(var(--spacing-unit) * 1.5);
    text-align: center; /* Center content in card */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space out content and button */
}
.cruise-line-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}
.cruise-line-card-content p {
    font-size: 0.9rem;
    color: var(--text-medium-gray);
    margin-bottom: calc(var(--spacing-unit) * 1.2);
    flex-grow: 1;
}
.cruise-line-card .btn-sm {
    padding: calc(var(--spacing-unit)*0.65) calc(var(--spacing-unit)*1.8);
    font-size: 0.85rem;
    margin-top: var(--spacing-unit); /* Ensure button is at bottom */
}

/* Responsive Adjustments for New Page Sections */
@media (max-width: 767.98px) {
    .contact-page-section .contact-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .contact-form-column { margin-top: calc(var(--spacing-unit) * 3); }
    .modern-contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .modern-contact-form .form-row .form-group-contact:not(:last-child) {
        margin-bottom: var(--spacing-unit) * 1.5;
    }
     .page-hero-section { padding: calc(var(--spacing-unit) * 4) 0; }
     .page-hero-content h1 { font-size: clamp(2rem, 6vw, 3rem); }
     .page-hero-content p { font-size: clamp(1rem, 3vw, 1.15rem); }
}

/* --- Styles for Cruise Line Detail Pages --- */
.cruise-detail-hero {
    position: relative;
    padding: calc(var(--spacing-unit) * 7) 0; /* Increased padding */
    background-size: cover;
    background-position: center center;
    text-align: center;
    color: var(--text-light);
    min-height: 60vh; /* Good height for hero */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .page-hero-overlay can be reused here if the opacity is suitable */
.cruise-detail-hero-content {
    position: relative;
    z-index: 2;
}
.cruise-detail-logo {
    max-width: 200px; /* Adjust as needed */
    max-height: 80px; /* Adjust as needed */
    margin: 0 auto calc(var(--spacing-unit) * 1.5) auto;
    display: block;
    background-color: rgba(255,255,255,0.1); /* Optional: slight bg for visibility if logo is transparent */
    padding: 10px;
    border-radius: var(--border-radius);
}
.cruise-detail-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--bg-main);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.cruise-detail-hero-content p { /* Tagline */
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--accent-light-sky-blue);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.cruise-detail-content { background-color: var(--bg-light); }
.cruise-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Main content takes 2/3, sidebar 1/3 */
    gap: calc(var(--spacing-unit) * 3.5);
}
.cruise-detail-main article {
    margin-bottom: calc(var(--spacing-unit) * 3);
    background-color: var(--bg-main);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}
.cruise-detail-main article:last-child { margin-bottom: 0; }
.cruise-detail-main h2 {
    font-size: 2rem;
    color: var(--primary-dark-blue);
    margin-bottom: var(--spacing-unit);
    padding-bottom: calc(var(--spacing-unit)*0.5);
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block; /* So border only spans text */
}
.cruise-detail-main h3 { /* For "Key Features", "Itinerary Highlights" */
    font-size: 1.6rem;
    color: var(--secondary-steel-blue);
    margin-top: calc(var(--spacing-unit) * 1.5);
    margin-bottom: var(--spacing-unit);
}
.cruise-detail-main p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium-gray);
}
ul.features-list-detail {
    list-style: none;
    padding-left: 0;
}
ul.features-list-detail li {
    font-size: 0.95rem;
    padding: calc(var(--spacing-unit)*0.6) 0;
    border-bottom: 1px dashed var(--border-color-light);
    display: flex;
    align-items: center;
}
ul.features-list-detail li:last-child { border-bottom: none; }
ul.features-list-detail li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-gold);
    margin-right: var(--spacing-unit);
    font-size: 0.9em;
}

.cruise-detail-sidebar {
    background-color: var(--bg-main);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}
/* 
.image-gallery-detail h4 {
    font-size: 1.3rem;
    color: var(--primary-dark-blue);
    margin-bottom: var(--spacing-unit);
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-unit);
}
.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; 
}
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
} */
.cta-sidebar {
    margin-top: calc(var(--spacing-unit) * 2.5);
    padding-top: calc(var(--spacing-unit) * 2);
    border-top: 1px solid var(--border-color-light);
    text-align: center;
}
.cta-sidebar h3 {
    font-size: 1.5rem;
    color: var(--primary-dark-blue);
    margin-bottom: var(--spacing-unit);
}
.cta-sidebar p {
    font-size: 0.9rem;
    color: var(--text-medium-gray);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}
.sidebar-banner-image-wrapper {
    margin-bottom: calc(var(--spacing-unit) * 2); /* Space below image */
}
.sidebar-banner-image-wrapper h4 { /* Optional title above banner */
    font-size: 1.3rem;
    color: var(--primary-dark-blue);
    margin-bottom: var(--spacing-unit);
    text-align: center;
}
.sidebar-banner-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-height: 250px; /* Control max height if needed */
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
}

.cta-sidebar {
    margin-top: 0; /* Adjust if title for banner is removed */
    padding-top: 0; /* Adjust if title for banner is removed */
    border-top: none; /* Remove border if it was for gallery separation */
    text-align: center;
}

/* Responsive for Cruise Detail Page */
@media (max-width: 991.98px) {
    .cruise-detail-grid {
        grid-template-columns: 1fr; /* Stack on tablet */
    }
    .cruise-detail-sidebar {
        margin-top: calc(var(--spacing-unit) * 3);
        position: static; /* Remove sticky on stack */
    }
}
@media (max-width: 767.98px) {
    .cruise-detail-hero { padding: calc(var(--spacing-unit) * 5) 0; min-height: 40vh; }
    .cruise-detail-hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
    .cruise-detail-logo { max-width: 150px; max-height: 60px; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); } /* More responsive gallery */
}