@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-navy: #0c2340;
    --secondary-navy: #1d3557;
    --accent-gold: #c5a059;
    --accent-gold-hover: #b48e47;
    --accent-gold-light: #fdfaf2;
    --accent-teal: #00a896;
    --accent-teal-light: #e8f7f5;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Brand Text Color Utilities */
.text-primary-navy {
    color: var(--primary-navy) !important;
}
.text-secondary-navy {
    color: var(--secondary-navy) !important;
}
.text-accent-gold {
    color: var(--accent-gold) !important;
}
.text-accent-teal {
    color: var(--accent-teal) !important;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Custom Navigation */
.navbar-custom {
    background-color: var(--primary-navy);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    color: var(--white) !important;
}
.navbar-brand span {
    color: var(--accent-gold);
}
.nav-link-custom {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: var(--transition-smooth);
}
.nav-link-custom:hover {
    color: var(--accent-gold) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(12, 35, 64, 0.75), rgba(12, 35, 64, 0.9)), url('https://www.travelagentnear.com/imagesblogvideo/0019_norwegian-cruise-line46907.jpg') center/cover no-repeat;
    padding: 10rem 0 8rem 0;
    color: var(--white);
    clip-path: ellipse(150% 100% at 50% 0%);
}
.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.hero-title span {
    background: linear-gradient(135deg, var(--white) 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-bottom: 2.5rem;
}

/* Cards & Layout */
.card-custom {
    background: var(--white);
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(12, 35, 64, 0.05);
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
}
.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(12, 35, 64, 0.12);
}

.card-perk {
    border-top: 5px solid var(--accent-teal);
}
.card-sale {
    border-top: 5px solid var(--accent-gold);
}

.perk-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.perk-icon-teal {
    background-color: var(--accent-teal-light);
    color: var(--accent-teal);
}
.perk-icon-gold {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
}

/* Premium Signature Travel Network Perks Section */
.signature-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(12, 35, 64, 0.15);
}
.signature-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0) 70%);
    border-radius: 50%;
}
.signature-badge {
    display: inline-block;
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.signature-title {
    font-weight: 700;
    margin-bottom: 1rem;
}
.signature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}
.signature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.signature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Highlighted Cruises */
.highlight-card {
    height: 100%;
}
.highlight-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.highlight-card:hover .highlight-img {
    transform: scale(1.08);
}
.highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 10;
}
.highlight-air-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--accent-teal);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    transition: var(--transition-smooth);
}
.btn-gold:hover, .btn-gold:focus {
    background-color: var(--accent-gold-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}
.btn-outline-custom {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.btn-outline-custom:hover {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background-color: var(--white);
    color: var(--primary-navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* Floating Booking Card (Lead Form) */
.lead-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(12, 35, 64, 0.08);
    border: 1px solid rgba(12, 35, 64, 0.05);
}
.form-control-custom {
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.form-control-custom:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
    outline: none;
}

/* Itinerary Interactive Search Table */
.itinerary-section {
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(12, 35, 64, 0.03);
}
.table-custom-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.table-custom {
    margin-bottom: 0;
}
.table-custom th {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 1.2rem 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: none;
}
.table-custom td {
    padding: 1.1rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #edf2f7;
}
.table-custom tr:last-child td {
    border-bottom: none;
}
.table-custom tr:hover td {
    background-color: #f7fafc;
}
.search-box-custom {
    position: relative;
    max-width: 400px;
    margin-bottom: 1.5rem;
}
.search-box-custom input {
    padding-left: 2.5rem;
}
.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Terms and Conditions Accordion */
.accordion-terms .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.accordion-terms .accordion-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary-navy);
    background-color: var(--white);
    padding: 1.25rem;
}
.accordion-terms .accordion-button:not(.collapsed) {
    background-color: rgba(197, 160, 89, 0.05);
    color: var(--primary-navy);
    box-shadow: none;
}
.accordion-terms .accordion-body {
    background-color: var(--white);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Floating elements and decorations */
.value-highlight {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
}
.value-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Footer styling */
.footer-custom {
    background-color: var(--primary-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem 0;
    font-size: 0.95rem;
}
.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-brand span {
    color: var(--accent-gold);
}
.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 1.5rem;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}
.footer-socials a:hover {
    color: var(--accent-gold);
}
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem 0;
}

/* Quick Animation utilities */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
