/* 
   SUON TRAVELS - Premium Styling
   Author: G.D.N Sampath
   Aesthetic: Luxury, Immersive, Adventurous, Minimal, Modern
*/

/* --- CSS Variables & Design System --- */
:root {
    --primary-color: #0F355C;      /* Deep Navy Blue from logo */
    --secondary-color: #3A9AD9;    /* Sky Blue from logo */
    --accent-color: #F9A825;       /* Gold/Yellow from logo */
    --forest-green: #2E7D32;       /* Teal/Green highlight */
    
    --bg-soft-white: #FAFAFA;
    --bg-light-gray: #F5F5F5;
    --text-dark: #222222;
    --text-light-muted: #D1D9E0;
    
    --card-shadow: 0 15px 35px rgba(15, 53, 92, 0.05);
    --card-shadow-hover: 0 25px 55px rgba(15, 53, 92, 0.12);
    --border-radius-premium: 18px;
    --border-radius-pill: 50px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* --- Base & Typography --- */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

.text-secondary-color {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.font-semibold {
    font-weight: 600;
}

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

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* --- Buttons & UI Elements --- */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-premium-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(15, 53, 92, 0.2);
}

.btn-premium-gradient:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 53, 92, 0.35);
}

.btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: transparent;
}

.btn-outline-light-custom:hover {
    background: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-accent-gradient {
    background: linear-gradient(135deg, var(--accent-color), #FFB300);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.2);
}

.btn-accent-gradient:hover {
    background: linear-gradient(135deg, #FFB300, var(--accent-color));
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 168, 37, 0.35);
}

.btn-outline-accent {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

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

/* --- Interactive Hover Effects --- */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* --- Sticky Navbar with Glassmorphism --- */
#mainNavbar {
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(15, 53, 92, 0.8) 0%, rgba(15, 53, 92, 0) 100%);
    transition: var(--transition-smooth);
    z-index: 1050;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Scrolled Navbar Style */
#mainNavbar.navbar-scrolled {
    padding: 12px 0;
    background: rgba(15, 53, 92, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand .logo-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

#mainNavbar.navbar-scrolled .navbar-brand .logo-container {
    height: 55px;
}

.navbar-brand .logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    /* Soft white glow filter to make transparent logo visible against dark navy header backgrounds */
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.75));
}

.navbar-brand .brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    transition: var(--transition-smooth);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 15px;
    position: relative;
    transition: var(--transition-fast);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

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

/* Navbar Toggle Icon Custom Styling */
.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.navbar-toggler-icon-custom span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Glassmorphism menu on Mobile devices */
@media (max-width: 991.98px) {
    #navbarContent {
        background: rgba(15, 53, 92, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 15px;
        padding: 20px;
        border-radius: 18px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
        padding-left: 10px;
    }
    
    .navbar-nav .nav-link::after {
        left: 10px;
        right: 80%;
    }
    
    .navbar-cta {
        margin-top: 15px;
        padding-left: 10px;
    }
}

/* --- Hero Slider Section (Home) --- */
.hero-slider-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: var(--primary-color);
}

.hero-slider-section .swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 53, 92, 0.5) 0%, rgba(15, 53, 92, 0.8) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    color: #ffffff;
    padding: 0 15px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
}

.hero-subheading {
    font-size: 1.35rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-subheading {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

/* Floating Travel Icons Animation */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2.5rem;
    animation: floatUpDown 8s ease-in-out infinite alternate;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 30%;
    right: 12%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    bottom: 35%;
    right: 18%;
    animation-delay: 1.5s;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-25px) rotate(15deg);
    }
}

/* Animated Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 15px;
    position: relative;
    margin-bottom: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelAnim 1.6s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
    100% {
        opacity: 0;
    }
}

/* --- Section Formatting --- */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-heading-area {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3.5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-desc {
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 1.05rem;
}

/* --- Popular Destinations Section --- */
.destination-card {
    background: #ffffff;
    border-radius: var(--border-radius-premium);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: none;
    height: 100%;
    transition: var(--transition-smooth);
}

.destination-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.destination-card:hover .destination-img {
    transform: scale(1.1) rotate(1deg);
}

.destination-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 53, 92, 0.9);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.destination-card-body {
    padding: 25px;
}

.destination-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.destination-card:hover .destination-name {
    color: var(--secondary-color);
}

.destination-text {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Why Choose Us Section --- */
.why-choose-card {
    background: #ffffff;
    border-radius: var(--border-radius-premium);
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 53, 92, 0.02);
}

.why-choose-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.why-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 53, 92, 0.08), rgba(58, 154, 217, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.why-choose-card:hover .why-icon-circle {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transform: rotate(360deg);
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-choose-text {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0;
}

/* --- Tour Packages Section --- */
.package-card {
    background: #ffffff;
    border-radius: var(--border-radius-premium);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: none;
    height: 100%;
    transition: var(--transition-smooth);
}

.package-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.package-badge-group {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.package-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.package-badge i {
    color: var(--secondary-color);
}

.package-card-body {
    padding: 25px;
}

.package-location {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.package-card:hover .package-title {
    color: var(--secondary-color);
}

.package-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--bg-light-gray);
}

.package-rating-stars {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.package-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.package-price span {
    font-size: 0.8rem;
    color: #888888;
    font-weight: 400;
}

/* --- Travel Gallery Section (Masonry Grid) --- */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--border-radius-premium);
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 53, 92, 0) 40%, rgba(15, 53, 92, 0.85) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-subtitle {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- Customer Testimonials Section --- */
.testimonials-section {
    background-color: var(--bg-light-gray);
}

.testimonial-swiper {
    padding: 40px 10px 60px !important;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--border-radius-premium);
    padding: 40px;
    box-shadow: var(--card-shadow);
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(58, 154, 217, 0.15);
    margin-bottom: 20px;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-user-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-user-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    margin-bottom: 12px;
}

.testimonial-user-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-user-location {
    font-size: 0.85rem;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 24px !important;
    border-radius: 4px !important;
    transition: var(--transition-fast);
}

/* --- Call To Action Section --- */
.cta-banner-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 53, 92, 0.8);
    z-index: 1;
}

.cta-content-box {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- Pages Common Hero Banner --- */
.pages-hero-banner {
    position: relative;
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.pages-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 53, 92, 0.6) 0%, rgba(15, 53, 92, 0.85) 100%);
    z-index: 1;
}

.pages-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.pages-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .pages-hero-title {
        font-size: 2.5rem;
    }
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-custom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-custom a:hover {
    color: #ffffff;
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.6);
}

/* --- About Page Styling --- */
.story-image-box {
    position: relative;
    border-radius: var(--border-radius-premium);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.story-image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-years-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 20px 30px;
    border-radius: var(--border-radius-premium);
    box-shadow: 0 10px 30px rgba(249, 168, 37, 0.3);
    text-align: center;
}

.story-years-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.story-years-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 30px 10px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-counter {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Timeline */
.timeline-area {
    position: relative;
    padding: 20px 0;
}

.timeline-area::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(15, 53, 92, 0.15);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-area::before {
        left: 30px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--secondary-color);
    z-index: 5;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    background: var(--accent-color);
    border-color: var(--primary-color);
    transform: translateX(-50%) scale(1.2);
}

@media (max-width: 768px) {
    .timeline-marker {
        left: 30px;
    }
}

.timeline-content-box {
    width: 45%;
    background: #ffffff;
    border-radius: var(--border-radius-premium);
    padding: 30px;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-content-box:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.timeline-item:nth-child(even) .timeline-content-box {
    margin-left: auto;
}

@media (max-width: 768px) {
    .timeline-content-box {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0;
}

/* --- Contact Page Styling --- */
.contact-info-card {
    background: #ffffff;
    border-radius: var(--border-radius-premium);
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: flex-start;
    height: 100%;
    border: 1px solid rgba(15, 53, 92, 0.02);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.contact-info-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(58, 154, 217, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info-card:hover .contact-info-icon-box {
    background: var(--primary-color);
    color: #ffffff;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-detail {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 0;
}

.contact-info-detail a {
    color: #555555;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info-detail a:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--border-radius-premium);
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(15, 53, 92, 0.02);
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

.form-group-custom {
    margin-bottom: 25px;
}

.form-label-custom {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-control-custom {
    width: 100%;
    background-color: var(--bg-light-gray);
    border: 2px solid var(--bg-light-gray);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    background-color: #ffffff;
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 5px 15px rgba(58, 154, 217, 0.05);
}

/* Map Section */
.map-embed-wrapper {
    border-radius: var(--border-radius-premium);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    line-height: 0;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 480px;
    border: none;
}

/* --- Footer Section Styling --- */
.footer {
    position: relative;
    border-top: 5px solid var(--secondary-color);
}

.footer-brand .logo-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    /* Soft white glow filter to make transparent logo visible against dark navy footer backgrounds */
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.75));
}

.text-light-muted {
    color: var(--text-light-muted);
}

.footer-heading {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2.5px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-links a {
    color: var(--text-light-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.opacity-15 {
    opacity: 0.15;
}

/* --- Lightbox Custom Styles --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 53, 92, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    color: #ffffff;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    color: #FFFFFF;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Premium Preloader Section --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner-box {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.preloader-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.preloader-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Soft white glow filter to make transparent logo visible against dark navy preloader background */
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.75));
}

.preloader-spinner-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

.preloader-spinner-ring.outer-ring {
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border-top-color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    animation: spinClockwise 1.8s linear infinite;
}

.preloader-spinner-ring.inner-ring {
    top: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    border-left-color: var(--secondary-color);
    border-right-color: var(--secondary-color);
    animation: spinCounterClockwise 1.2s linear infinite;
}

.preloader-title {
    font-size: 1.4rem;
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.preloader-loading-bar {
    width: 150px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.preloader-loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    animation: loadingBarAnim 1.6s infinite ease-in-out;
}

@keyframes spinClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinCounterClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes loadingBarAnim {
    0% {
        left: -80px;
    }
    50% {
        left: calc(100% - 40px);
    }
    100% {
        left: 150px;
    }
}
