/* ============================================================
   VisitBritainTours.com - Main Stylesheet
   Google Fonts: Raleway + Playfair Display
   Color Scheme: Dark Blue #063797 | Gold #FFD700
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    --color-primary:       #063797;
    --color-gold:          #FFD700;
    --color-link:          #FF4500;
    --color-link-hover:    #FF6347;
    --color-footer-bg:     #001d54;
    --color-footer-text:   #FFFFFF;
    --color-footer-link:   #FFD700;
    --color-accordion-bg:  #F4F4F4;
    --color-body-bg:       #FFFFFF;
    --color-text:          #333333;
    --color-muted:         #6c757d;
    --color-border:        #dee2e6;
    --color-card-header:   #FFD700;
    --font-body:           'Raleway', sans-serif;
    --font-heading:        'Playfair Display', serif;
    --transition-base:     all 0.3s ease;
    --shadow-sm:           0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:           0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:           0 8px 40px rgba(0,0,0,0.18);
    --border-radius:       4px;
    --border-radius-lg:    8px;
    --section-padding:     60px 0;
}

/* ============================================================
   BASE & RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-body-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY - HEADINGS
   ============================================================ */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h1, .h1 { font-weight: 800; font-size: 2.5rem; }
h2, .h2 { font-weight: 700; font-size: 2rem; }
h3, .h3 { font-weight: 700; font-size: 1.6rem; }
h4, .h4 { font-weight: 600; font-size: 1.35rem; }
h5, .h5 { font-weight: 600; font-size: 1.15rem; }
h6, .h6 { font-weight: 600; font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Lead text */
.lead {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================================
   LINKS
   ============================================================ */

a {
    color: var(--color-link);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover,
a:focus {
    color: var(--color-link-hover);
    text-decoration: underline;
}

/* ============================================================
   UTILITY OVERRIDES
   ============================================================ */

.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.bg-gold {
    background-color: var(--color-gold) !important;
}

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   SECTION SPACING
   ============================================================ */

section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary);
    position: relative;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-gold);
    margin-top: 12px;
    border-radius: 2px;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

/* ============================================================
   FONT AWESOME ICONS
   ============================================================ */

.fa, .fas, .far, .fab, .fal, .fad {
    color: inherit;
}

.fa-lg-gold,
.icon-gold {
    color: var(--color-gold);
}

.icon-white {
    color: #fff;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--border-radius);
    padding: 0.55rem 1.4rem;
    transition: var(--transition-base);
    border-width: 2px;
}

/* Primary Button - Gold bg, dark blue text */
.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #e6c200;
    border-color: #e6c200;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
    transform: translateY(-2px);
}

/* Outline Primary */
.btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(6,55,151,0.3);
    transform: translateY(-2px);
}

/* Secondary / Gold Outline */
.btn-outline-gold {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: transparent;
    border-width: 2px;
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Gold button — yellow bg, dark blue text */
.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border: none;
    padding: 0.65rem 1.75rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: background 0.3s, transform 0.2s;
    font-family: var(--font-body);
    display: inline-block;
    text-decoration: none;
}
.btn-gold:hover { background-color: #e6c200; color: var(--color-primary); transform: translateY(-2px); }

/* Primary custom — blue bg, white text */
.btn-primary-custom {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.65rem 1.75rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: background 0.3s, transform 0.2s;
    font-family: var(--font-body);
    display: inline-block;
    text-decoration: none;
}
.btn-primary-custom:hover { background-color: #042364; color: #fff; transform: translateY(-2px); }

/* Dark button variant */
.btn-dark-blue {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-dark-blue:hover {
    background-color: #042d7a;
    border-color: #042d7a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6,55,151,0.3);
}

/* Large button */
.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
}

/* ============================================================
   TOP CONTACT BAR
   ============================================================ */

.top-contact-bar {
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
}

.top-contact-bar .site-logo {
    max-width: 300px;
    max-height: 120px;
    width: auto;
    height: auto;
    transition: opacity 0.25s ease;
}

.top-contact-bar .site-logo:hover {
    opacity: 0.88;
}

.top-contact-bar a {
    color: var(--color-link);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.top-contact-bar a:hover {
    color: var(--color-link-hover);
}

.top-contact-bar .text-muted {
    font-size: 0.9rem;
}

/* ============================================================
   NAVIGATION / NAVBAR
   ============================================================ */

#mainNav {
    background-color: var(--color-primary) !important;
    padding: 0;
    transition: var(--transition-base);
    z-index: 1030;
}

#mainNav.navbar-shrink {
    box-shadow: var(--shadow-md);
}

/* Navbar brand / logo in nav (if used) */
#mainNav .navbar-brand img {
    max-height: 50px;
    width: auto;
}

/* Nav links */
#mainNav .navbar-nav .nav-link {
    color: var(--color-gold) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 1rem 0.85rem;
    position: relative;
    transition: var(--transition-base);
}

#mainNav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

#mainNav .navbar-nav .nav-link:hover {
    color: #fff !important;
    text-decoration: none;
}

#mainNav .navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 700;
}

/* Dropdown */
#mainNav .dropdown-menu {
    background-color: var(--color-primary);
    border: none;
    border-top: 3px solid var(--color-gold);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

#mainNav .dropdown-item {
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.55rem 1.2rem;
    transition: var(--transition-base);
    border-left: 3px solid transparent;
}

#mainNav .dropdown-item:hover,
#mainNav .dropdown-item:focus {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-left-color: var(--color-gold);
    text-decoration: none;
}

/* Navbar toggler */
#mainNav .navbar-toggler {
    border-color: var(--color-gold);
    padding: 0.35rem 0.6rem;
    margin: 0.5rem;
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFD700' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    min-height: 550px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 55, 151, 0.72) 0%,
        rgba(6, 55, 151, 0.45) 50%,
        rgba(0, 0, 0, 0.50) 100%
    );
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 20px rgba(0,0,0,0.45);
    margin-bottom: 1rem;
}

.hero-section .hero-subtitle {
    color: rgba(255,255,255,0.92);
    font-size: 1.15rem;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    margin-bottom: 1.8rem;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

/* Hero with full-page height */
.hero-section-full {
    min-height: calc(100vh - 120px);
}

/* Page hero (inner pages) */
.page-hero {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,55,151,0.78) 0%, rgba(0,0,0,0.50) 100%);
    z-index: 1;
}

.page-hero .page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.2rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ============================================================
   PARALLAX SECTION
   ============================================================ */

.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
}

.parallax-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 55, 151, 0.65);
    z-index: 1;
}

.parallax-section .parallax-content {
    position: relative;
    z-index: 2;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb-wrapper {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumb {
    margin-bottom: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.breadcrumb-item a:hover {
    color: var(--color-link);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-primary);
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
    border: 1px solid rgba(6, 55, 151, 0.12);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

/* Tour cards hover */
.tour-card,
.card.tour-card {
    cursor: pointer;
}

.tour-card:hover,
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background-color: var(--color-card-header);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    border-bottom: none;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
}

.card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.04);
}

.card-img-wrapper {
    overflow: hidden;
}

/* Price badge on card */
.card .price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-gold);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   ACCORDION
   ============================================================ */

.accordion-item {
    background-color: var(--color-accordion-bg);
    border: 1px solid rgba(6, 55, 151, 0.15);
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius-lg) !important;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--color-accordion-bg);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-primary);
    color: var(--color-gold);
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(85%) sepia(90%) saturate(500%) hue-rotate(360deg) brightness(105%) contrast(100%);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(6, 55, 151, 0.25);
    border-color: rgba(6, 55, 151, 0.25);
}

.accordion-body {
    background-color: #fff;
    font-size: 0.95rem;
    line-height: 1.75;
    padding: 1.1rem 1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer,
.site-footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: 60px 0 0;
    font-family: var(--font-body);
}

.site-footer h5,
.site-footer h4 {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.site-footer h5::after,
.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}

.site-footer p,
.site-footer address {
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
    line-height: 1.75;
}

.site-footer a {
    color: var(--color-footer-link);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.footer-links li a {
    color: var(--color-footer-link);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-links li a:hover {
    color: #fff;
    text-decoration: none;
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.12);
    margin: 0;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.25);
    padding: 18px 0;
    margin-top: 40px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
}

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

/* Social icons in footer */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,215,0,0.4);
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-right: 6px;
    transition: var(--transition-base);
}

.social-icons a:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: 9999;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    transform: translateY(-3px);
    text-decoration: none;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(6, 55, 151, 0.97);
    color: #fff;
    padding: 18px 0;
    z-index: 99999;
    border-top: 3px solid var(--color-gold);
    backdrop-filter: blur(4px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookieConsent.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

#cookieConsent p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.5;
}

#cookieConsent a {
    color: var(--color-gold);
    text-decoration: underline;
}

#cookieConsent a:hover {
    color: #fff;
}

.cookie-accept {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border: none;
    padding: 8px 22px;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.cookie-accept:hover {
    background-color: #e6c200;
    transform: translateY(-1px);
}

.cookie-decline {
    background-color: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 8px 18px;
    font-weight: 500;
    font-size: 0.88rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-left: 8px;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.cookie-decline:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.04); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Animate on scroll — only hidden when JS is active (js-animations class on body) */
.animate-on-scroll {
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-animations .animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
}

.js-animations .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.js-animations .animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

.js-animations .animate-on-scroll.slide-left.animated {
    transform: translateX(0);
}

.js-animations .animate-on-scroll.slide-right {
    transform: translateX(50px);
}

.js-animations .animate-on-scroll.slide-right.animated {
    transform: translateX(0);
}

/* Delay helpers */
.delay-100 { transition-delay: 0.10s; }
.delay-200 { transition-delay: 0.20s; }
.delay-300 { transition-delay: 0.30s; }
.delay-400 { transition-delay: 0.40s; }
.delay-500 { transition-delay: 0.50s; }

/* ============================================================
   FEATURE / ICON BOXES
   ============================================================ */

.icon-box {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(6, 55, 151, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.icon-box:hover .icon-circle {
    background-color: var(--color-primary);
    color: var(--color-gold);
}

.icon-box h5 {
    margin-bottom: 0.75rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-gold);
    line-height: 0.8;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.5;
}

.testimonial-card .stars {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 1rem;
}

/* ============================================================
   STATS / COUNTER SECTION
   ============================================================ */

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
    display: block;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */

.form-control,
.form-select {
    font-family: var(--font-body);
    border-color: var(--color-border);
    border-radius: var(--border-radius);
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: var(--transition-base);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(6, 55, 151, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

/* ============================================================
   BADGES
   ============================================================ */

.badge {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--border-radius);
}

.badge-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.badge-gold {
    background-color: var(--color-gold);
    color: var(--color-primary);
}

/* ============================================================
   TABLE
   ============================================================ */

.table thead th {
    background-color: var(--color-primary);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 600;
    border-color: rgba(255,255,255,0.1);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(6, 55, 151, 0.04);
}

/* ============================================================
   LIST GROUPS
   ============================================================ */

.list-group-item-action:hover {
    background-color: rgba(6, 55, 151, 0.06);
    color: var(--color-primary);
}

/* ============================================================
   ALERTS
   ============================================================ */

.alert-primary {
    background-color: rgba(6, 55, 151, 0.1);
    border-color: rgba(6, 55, 151, 0.25);
    color: var(--color-primary);
}

/* ============================================================
   HIGHLIGHT / FEATURE STRIP
   ============================================================ */

.feature-strip {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a4ab5 100%);
    color: #fff;
    padding: 18px 0;
}

.feature-strip .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
}

.feature-strip .feature-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* ============================================================
   DESTINATION / REGION CARDS
   ============================================================ */

.destination-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-card .destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,55,151,0.85) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.destination-card .destination-name {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin: 0;
}

.destination-card .destination-count {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */

.divider-gold {
    border: none;
    height: 3px;
    background: linear-gradient(to right, var(--color-gold), transparent);
    margin: 2rem 0;
}

.divider-center {
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.text-justify {
    text-align: justify;
}

.bg-light-blue {
    background-color: rgba(6, 55, 151, 0.05);
}

.border-primary-custom {
    border-color: var(--color-primary) !important;
}

.border-gold {
    border-color: var(--color-gold) !important;
}

.rounded-lg-custom {
    border-radius: var(--border-radius-lg);
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

/* Scroll margin for anchor links with sticky header */
[id] {
    scroll-margin-top: 80px;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* Large devices (desktops, < 1200px) */
@media (max-width: 1199.98px) {
    h1, .h1 { font-size: 2.2rem; }
    h2, .h2 { font-size: 1.8rem; }
    #mainNav .navbar-nav .nav-link {
        padding: 1rem 0.65rem;
        font-size: 0.83rem;
    }
}

/* Medium devices (tablets, < 992px) */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 45px 0;
    }
    h1, .h1 { font-size: 1.9rem; }
    h2, .h2 { font-size: 1.6rem; }
    h3, .h3 { font-size: 1.35rem; }

    #mainNav .navbar-collapse {
        background-color: var(--color-primary);
        padding: 1rem;
        border-top: 2px solid rgba(255,215,0,0.3);
    }

    #mainNav .navbar-nav .nav-link {
        padding: 0.65rem 0.5rem;
        font-size: 0.9rem;
    }

    #mainNav .navbar-nav .nav-link::after {
        display: none;
    }

    #mainNav .dropdown-menu {
        background-color: rgba(255,255,255,0.05);
        border-top: none;
        border-left: 2px solid var(--color-gold);
        border-radius: 0;
        margin-left: 1rem;
        box-shadow: none;
    }

    .hero-section {
        min-height: 420px;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    .top-contact-bar .site-logo {
        max-width: 220px;
        max-height: 90px;
    }
}

/* Small devices (landscape phones, < 768px) */
@media (max-width: 767.98px) {
    :root {
        --section-padding: 35px 0;
    }
    h1, .h1 { font-size: 1.65rem; }
    h2, .h2 { font-size: 1.4rem; }
    h3, .h3 { font-size: 1.2rem; }

    .hero-section {
        min-height: 360px;
        text-align: center;
    }

    .hero-section .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .top-contact-bar .col-md-8 {
        text-align: center !important;
        margin-top: 0.5rem;
    }

    .top-contact-bar .site-logo {
        max-width: 180px;
        max-height: 70px;
    }

    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
    }

    .destination-card {
        height: 220px;
    }
}

/* Extra small devices (< 576px) */
@media (max-width: 575.98px) {
    h1, .h1 { font-size: 1.45rem; }
    h2, .h2 { font-size: 1.25rem; }

    .btn-lg {
        padding: 0.65rem 1.4rem;
        font-size: 0.95rem;
    }

    .section-title::after {
        width: 45px;
    }

    .top-contact-bar .me-3 {
        display: block;
        margin-bottom: 4px;
    }

    .top-contact-bar .me-3.me-3 {
        margin-right: 0 !important;
    }

    .card-img-top {
        height: 180px;
    }
}

/* Print styles */
@media print {
    #mainNav,
    #backToTop,
    #cookieConsent,
    .top-contact-bar { display: none !important; }
    body { font-size: 12pt; }
    a[href]::after { content: " (" attr(href) ")"; }
}
