/* Fonts: 'Inter', sans-serif - Clean, Standard, readable */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Permanent+Marker&display=swap');

:root {
    --primary: #851E1E;
    /* Deep Red - Matching Logo */
    --secondary: #0F172A;
    /* Deep Navy - Text/Headings */
    --light-bg: #F8FAFC;
    /* Light Blue-Grey - Section Background */
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --text-muted: #64748B;

    --font-main: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    /* Standard rounded corners */
}

html,
body {
    font-family: var(--font-main);
    color: var(--secondary);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    /* Normal Standard Size */
    width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll from animations */
}

/* Typography - Clean & Normal */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    /* Standard Large Heading */
}

h2 {
    font-size: 2.25rem;
    /* Section Heading */
}

h3 {
    font-size: 1.5rem;
    /* Card Title */
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Navbar Logo */
.navbar-logo {
    height: 45px;
    /* Smaller size */
    transition: all 0.3s ease;
    border-radius: 4px;
    /* Soften edges */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    /* Drive In Animation - Smoother */
    animation: driveIn 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    /* User has a black logo. Invert(1) swaps Black->White and White->Black, preserving details. */
    filter: invert(1);
}

@keyframes driveIn {
    from {
        transform: translateX(-150px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Navbar - Transparent Default */
.navbar {
    background-color: transparent;
    box-shadow: none;
    padding: 1rem 0;
    /* Reduced from 1.5rem */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar-scrolled {
    background-color: rgba(30, 41, 59, 0.95);
    /* Lighter Dark Blue-Grey */
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
    /* Compact on scroll */
    backdrop-filter: blur(10px);
    /* Modern glass effect */
}

/* Navbar Links */
.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    /* White for hero */
    font-weight: 600;
    /* Slightly bolder */
    padding: 0.5rem 0.8rem;
    /* Tighter padding */
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.75rem;
    /* Smaller, cleaner size */
}

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

/* Scrolled State Links */
.navbar-scrolled .nav-link {
    color: #cbd5e1 !important;
    /* Light Grey Text */
}

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

/* Navbar Toggler - White for Dark Background */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
    background-color: rgba(15, 23, 42, 0.5);
    /* Semi-transparent dark bg */
    backdrop-filter: blur(4px);
}

.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='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--secondary);
    /* Dark background for hero contrast */
    color: var(--white);
    text-align: center;
    /* Optional subtle image background overlay if needed, but keeping it clean color for now or standard image */
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    color: var(--white);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Standard Buttons */
.btn {
    padding: 0.5rem 1.25rem;
    /* Reduced padding globally or specifically */
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    /* Smaller button text */
    transition: all 0.2s;
}

/* Navbar CTA Button - Specific styling for 'Start Your Engine' */
.btn-navbar-cta {
    padding: 0.4rem 1rem !important;
    /* Very compact */
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary-custom:hover {
    background-color: #6b1818;
    /* Darker shade of #851E1E */
    border-color: #6b1818;
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline-custom:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* Sections */
section {
    padding: 80px 0;
}

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

/* Cards - Use clean, standard white cards */
.clean-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s;
    height: 100%;
}

.clean-card:hover {
    box-shadow: var(--shadow-md);
}

.clean-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Gallery Masonry - Cleaner */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.masonry-item {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}

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

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

/* Booking Form - Simple & Clean */
.booking-form-container {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-dot {
    width: 30px;
    height: 30px;
    background-color: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.step-dot.active {
    background-color: var(--primary);
    color: var(--white);
}

.form-option-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0;
    /* Removed padding for full-width image */
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background-color: var(--white);
    overflow: hidden;
    height: 100%;
}

.form-option-card:hover,
.form-option-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.1);
}

/* True Modern Form Styling */
.modern-form-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    overflow: hidden;
}

.modern-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), #fbbf24);
}

.input-group-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    z-index: 2;
    font-size: 1.1rem;
}

.modern-form-control {
    height: 55px;
    padding-left: 50px !important;
    /* Space for icon */
    background-color: #f8fafc;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.3s ease;
}

/* Hero Carousel */
.hero-carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.hero-content-hidden {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateY(-45%) !important;
}

.navbar-hidden {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateY(-100%);
    /* Slide up */
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    /* Gold accent */
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Section - Modern & Impactful */
.hero-section {
    position: relative;
    height: 90vh;
    /* Taller, more cinematic */
    min-height: 600px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5)), url('https://images.unsplash.com/photo-1519681393798-3828fb4090bb?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax-like feel */
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    /* Gold accent */
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-200 {
    animation-delay: 0.3s;
    opacity: 0;
}

.delay-300 {
    animation-delay: 0.5s;
    opacity: 0;
}

.modern-form-control:focus {
    background-color: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.1);
    outline: none;
}

.modern-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modern-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%) !important;
    color: white !important;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(234, 88, 12, 0.4);
}

/* Footer - Modern */
.footer-modern {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #cbd5e1;
    padding-top: 5rem;
    font-size: 0.95rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand img {
    /* Make black logo white for dark footer, preserving details */
    filter: invert(1);
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 0.75rem;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    outline: none;
    color: white;
}

/* Utilities */
/* Cinematic Editorial Layout - No Boxes */
.editorial-item {
    position: relative;
    padding: 2rem 0;
}

.editorial-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    /* Consistent height */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Shadow only on image */
}

.editorial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.editorial-item:hover .editorial-img {
    transform: scale(1.05);
}

.editorial-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.huge-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /* Very subtle watermark */
    line-height: 1;
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -1;
    font-family: var(--font-main);
}

.editorial-meta {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.editorial-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.editorial-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.link-underline {
    position: relative;
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding-bottom: 5px;
}

.link-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.link-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Stacked Panel Accordion - Unique & Interactive */
.accordion-wrapper {
    display: flex;
    height: 600px;
    width: 100%;
    gap: 1.5rem;
    overflow: hidden;
}

.acc-panel {
    position: relative;
    flex: 1;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    overflow: hidden;
    /* Initial state: Subtle Grayscale */
    filter: grayscale(100%) brightness(0.9);
}

.acc-panel:hover {
    flex: 3;
    filter: grayscale(0%) brightness(1.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.acc-overlay {
    position: absolute;
    inset: 0;
    padding: 3rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 23, 42, 0.8) 60%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.acc-panel:hover .acc-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 23, 42, 0.9) 40%, #0f172a 100%);
}

.acc-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: transform 0.3s;
}

.acc-panel:hover .acc-badge {
    transform: scale(1.1);
    background: var(--primary);
    border-color: var(--primary);
}

/* Typography animations */
.acc-meta {
    color: #fbbf24;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.acc-panel:hover .acc-meta {
    transform: translateY(0);
    opacity: 1;
}

.acc-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    transform-origin: left bottom;
    transition: all 0.5s ease;
    /* When collapsed: Vertical text can be done with writing-mode, but let's keep it simple first
       Actually, let's rotate title when collapsed for a cool effect */
}

/* Expanded State */
.acc-panel:hover .acc-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.acc-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;

    /* Hide initially */
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.acc-panel:hover .acc-desc {
    max-height: 200px;
    /* enough for content */
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.acc-action {
    /* Hide initially */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.acc-panel:hover .acc-action {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .accordion-wrapper {
        flex-direction: column;
        height: auto;
    }

    .acc-panel {
        height: 450px;
        flex: none;
        width: 100%;
        margin-bottom: 1rem;
        filter: grayscale(0%);
    }

    .acc-panel:hover {
        flex: none;
        transform: none;
    }

    /* Always show content on mobile */
    .acc-meta,
    .acc-desc,
    .acc-action {
        opacity: 1;
        transform: translateY(0);
        max-height: none;
    }

    .acc-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

/* Modern Expedition Cards */
.expedition-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.expedition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.expedition-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.expedition-card:hover .expedition-image {
    transform: scale(1.1);
}

.expedition-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 2.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: all 0.3s ease;
}

.expedition-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expedition-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.expedition-meta span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-white-glass {
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    font-weight: 700;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Polaroid Scatter Gallery Layout */

.polaroid-container {
    padding: 3rem 1rem;
    position: relative;
    /* Clean background or keep existing */
}

.polaroid-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    perspective: 1000px;
}

.polaroid-card {
    background: white;
    padding: 1rem 1rem 3rem 1rem;
    /* Extra bottom padding for "caption" area */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform-origin: center;
    transition: all 0.4s ease;
    width: 340px;
    position: relative;
    z-index: 1;
}

/* Scatter effect - Rotate cards slightly */
.polaroid-card:nth-child(odd) {
    transform: rotate(-2deg);
}

.polaroid-card:nth-child(even) {
    transform: rotate(2deg);
}

/* Hover effect - Straighten and lift */
.polaroid-card:hover {
    transform: rotate(0deg) scale(1.05) translateY(-10px);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.polaroid-img-box {
    width: 100%;
    height: 380px;
    background-color: #f0f0f0;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.polaroid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) contrast(1.1);
    /* Vintage feel */
    transition: filter 0.3s;
}

.polaroid-card:hover .polaroid-img {
    filter: sepia(0%) contrast(1);
}

.polaroid-caption {
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    /* We will need to import this font */
    color: #333;
}

.handwritten-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: rotate(-1deg);
}

.polaroid-meta {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tape-strip {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 120px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    z-index: 5;
    opacity: 0.8;
}

.polaroid-action {
    margin-top: 1rem;
    text-align: center;
}

.btn-sketch {
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    /* Sketchy border */
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
}

/* Overlapping Editorial Layout - Premium & Clean */
.overlap-container {
    padding: 2rem 0;
}

.overlap-item {
    position: relative;
    margin-bottom: 8rem;
    /* Spacious spacing */
    min-height: 450px;
    display: flex;
    align-items: center;
}

.overlap-item:last-child {
    margin-bottom: 2rem;
}

.overlap-img-wrapper {
    width: 70%;
    height: 500px;
    position: absolute;
    top: 0;
    overflow: hidden;
    border-radius: 0;
    /* Sharp edges or subtle radius? Let's go minimal radius */
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overlap-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.overlap-item:hover .overlap-img {
    transform: scale(1.08);
}

.overlap-content {
    position: relative;
    width: 45%;
    background: #ffffff;
    padding: 3.5rem;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    transition: transform 0.4s ease;
}


.overlap-item:hover .overlap-content {
    transform: translateY(-10px);
}

/* Towing Logo Animation */
.towing-logo {
    position: absolute;
    top: 50%;
    width: 80px;
    /* Reverted to original size */
    z-index: 10;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    opacity: 1;
    /* No default transition, handled by animation */
}

/* Drive Off Animation Trigger */
.overlap-item.aos-animate .tow-right {
    animation: driveOffRight 2.5s ease-in forwards;
    /* Slower exit */
    animation-delay: 2.5s;
    /* Wait for slower entrance */
}

.overlap-item.aos-animate .tow-left {
    animation: driveOffLeft 2.5s ease-in forwards;
    /* Slower exit */
    animation-delay: 2.5s;
}

/* Custom Long Slide Entrance */
@media (min-width: 992px) {

    /* Override AOS default transforms to start from off-screen */
    html:not(.no-js) [data-aos=fade-right] {
        transform: translate3d(-100vw, 0, 0);
    }

    html:not(.no-js) [data-aos=fade-left] {
        transform: translate3d(100vw, 0, 0);
    }

    /* Ensure the transition is slow and smooth ("aram se") */
    html:not(.no-js) .overlap-item.aos-animate {
        transition-duration: 2.5s !important;
        transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
    }
}

@keyframes driveOffRight {
    0% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) translateX(100vw);
        opacity: 0;
    }
}

@keyframes driveOffLeft {
    0% {
        transform: translateY(-50%) scaleX(-1) translateX(0);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) scaleX(-1) translateX(100vw);
        opacity: 0;
    }
}

.tow-right {
    right: -90px;
    transform: translateY(-50%);
}

.tow-left {
    left: -90px;
    transform: translateY(-50%) scaleX(-1);
}

/* Layout Variations */
/* Right Image, Left Content */
.overlap-item.layout-right .overlap-img-wrapper {
    right: 0;
}

.overlap-item.layout-right .overlap-content {
    margin-right: auto;
    /* Pushes content to left */
    margin-left: 2rem;
}

/* Left Image, Right Content */
.overlap-item.layout-left .overlap-img-wrapper {
    left: 0;
}

.overlap-item.layout-left .overlap-content {
    margin-left: auto;
    /* Pushes content to right */
    margin-right: 2rem;
}

/* Typography in cards */
.overlap-year {
    font-size: 6rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(133, 30, 30, 0.15);
    position: absolute;
    top: 1rem;
    right: 2rem;
    opacity: 1;
    line-height: 1;
    z-index: 0;
}

.overlap-label {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 3px;
}

.overlap-title {
    position: relative;
    z-index: 1;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.overlap-desc {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-link-custom {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.btn-link-custom:hover {
    color: var(--primary);
    gap: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .overlap-item {
        flex-direction: column;
        display: block;
        margin-bottom: 4rem;
        height: auto;
    }

    .towing-logo {
        display: none;
    }

    /* Mobile Menu Styling - Professional Slide-Down Overlay */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--secondary);
        z-index: 1000;
        padding: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
        /* Ensure normal flow for collapse animation */
        display: none;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block;
    }

    .navbar-nav {
        width: 100%;
        gap: 0;
        text-align: left;
    }

    .navbar-nav .nav-link {
        font-family: var(--font-main);
        font-size: 1.25rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: padding 0.3s ease, color 0.3s ease;
        display: flex;
        align-items: center;
        /* Default for mobile: icon/text left, arrow right handled by pseudo if needed */
    }

    /* Target the icon specifically if needed */
    .navbar-nav .nav-link i {
        width: 30px;
        /* Fixed width for alignment */
        text-align: center;
        color: var(--primary);
        /* Accent color for icons */
        margin-right: 15px !important;
        /* Override bootstrap me-2 */
    }

    /* Add arrow icon via pseudo-element */
    .navbar-nav .nav-link::after {
        content: '→';
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #ffffff !important;
        padding-left: 10px;
        background: transparent;
        transform: none;
        letter-spacing: 1px;
        text-shadow: none;
    }

    .navbar-nav .nav-link:hover::after {
        opacity: 1;
        transform: translateX(0);
    }

    .overlap-img-wrapper {
        position: relative;
        width: 100%;
        height: 350px;
        right: 0 !important;
        left: 0 !important;
        border-radius: 12px;
    }

    .overlap-content {
        width: 90%;
        margin: -60px auto 0 !important;
        /* Center and overlap bottom */
        padding: 2rem;
    }

    .overlap-year {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }
}

/* Past Chronicles - Editorial Grid */
.chronicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.chronicle-item {
    position: relative;
    background: #fff;
    /* Clean white card */
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.chronicle-img-box {
    position: relative;
    height: 350px;
    /* Tall, portrait-like for editorial feel */
    overflow: hidden;
    margin-bottom: 0;
}

.chronicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    /* Full Color */
}

.chronicle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    opacity: 1;
}

.chronicle-status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 4px;
}

.chronicle-year {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.chronicle-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: white;
}

.chronicle-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    opacity: 1;
    transform: none;
    max-height: none;
}

.chronicle-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 991px) {
    .chronicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .chronicles-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Video Background Styles */
.hero-video-section {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

/* Hero Video Background (HTML5) */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Fallback for when video doesn't load */
.hero-video-section {
    background-color: #0f172a;
}

/* Brighten text and adjust size */
.hero-video-section .hero-title {
    font-size: 3.5rem;
    /* Reduced size (was likely larger/default) */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-video-section .text-primary {
    color: var(--primary) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-video-section .hero-subtitle {
    font-size: 1.25rem;
    /* Readable but not huge */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Carousel Specifics */
.hero-carousel-section {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.clean-carousel-item {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Ensure video covers the area */
.clean-carousel-item .hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Ensure overlay is on top of video */
.clean-carousel-item .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

/* Ensure content is strictly centered */
.clean-carousel-item .hero-content-wrapper {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    display: flex;
    /* Use flexbox */
    flex-direction: column;
    justify-content: center;
    /* Center vertically */
    align-items: center;
    /* Center horizontally */
    width: 100%;
    height: 100%;
    transform: none;
    /* override previous translate */
    padding-top: 60px;
    /* Offset for navbar */
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-carousel-item .hero-content-wrapper.hero-content-hidden {
    opacity: 0 !important;
    transform: translateY(-50px) !important;
    /* Subtle slide up */
}

/* Modern Controls */
.carousel-btn-modern {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn-modern:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem !important;
        /* Smaller on mobile */
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-content-wrapper {
        padding-top: 80px;
        /* More space for navbar */
    }

    .btn {
        padding: 0.6rem 1.5rem;
        /* Touch friendly */
    }

    /* Buttons in Hero */
    .hero-content-wrapper .d-flex {
        flex-direction: column;
        gap: 1rem !important;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-content-wrapper .btn {
        width: 100%;
        /* Full width buttons */
    }

    /* Overlap Items (Expeditions) */
    .overlap-img-wrapper {
        height: 280px;
        /* Shorter image */
    }

    .overlap-content {
        width: 95%;
        /* Wider card */
        padding: 1.5rem;
        /* Less padding */
        margin-top: -40px !important;
    }

    .overlap-title {
        font-size: 1.5rem;
    }

    /* Chronicle Items */
    .chronicle-img-box {
        height: 250px;
    }

    .chronicle-year {
        font-size: 3rem;
    }

    .chronicles-grid {
        grid-template-columns: 1fr;
        /* Single column */
        gap: 1.5rem;
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Spacing */
    section {
        padding: 50px 0;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Global Overrides */
.text-primary {
    color: var(--primary) !important;
}

/* Ensure Hero Text is White on Video */
.hero-carousel-section .hero-title,
.hero-carousel-section .hero-subtitle,
.hero-carousel-section h1,
.hero-carousel-section h2,
.hero-carousel-section p {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-carousel-section .text-primary {
    color: #fbbf24 !important;
    /* Gold for better contrast on video than deep red */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* CSS Grid Gallery (Equal Heights & Spacing) */
/* Bento Grid Gallery - Modern & Asymmetric */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 420px;
    /* gap: 30px; */
    /* Reactivated gap */
    grid-auto-flow: dense;
}

.masonry-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    background-color: #f1f5f9;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

/* 1. Big Feature (Top Left) */
.masonry-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* 2. Top Right Regular */
.masonry-item:nth-child(2) {
    grid-column: span 1;
}

/* 3. Top Right Regular (Below 2) */
.masonry-item:nth-child(3) {
    grid-column: span 1;
}

/* 4. Wide Feature (Middle) */
.masonry-item:nth-child(4) {
    grid-column: span 2;
}

/* 5. Tall Feature (Middle Right) */
.masonry-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 2;
}

/* 8. Wide Feature (Bottom) */
.masonry-item:nth-child(8) {
    grid-column: span 2;
}

/* 9. Regular (Bottom Right) */
.masonry-item:nth-child(9) {
    grid-column: span 1;
}

/* Hover Effects */
.masonry-item:hover {
    /* transform: translateY(-10px); */
    /* box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.35); */
    z-index: 2;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Responsive Grid */
@media (max-width: 991px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px;
        gap: 20px;
    }

    .masonry-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .masonry-item:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }

    .masonry-item:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        /* Consistent small gap on mobile */
    }

    .masonry-item {
        height: 450px;
        width: 100%;
        border-radius: 0;
    }
}

/* =========================================
   Premium Footer Redesign - v2
   ========================================= */
.footer-modern {
    background-color: #050505;
    background-image: linear-gradient(to bottom, #0f172a, #020617);
    color: #cbd5e1;
    padding-top: 6rem;
    padding-bottom: 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Subtle pattern overlay */
.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.footer-brand img {
    height: 60px !important;
    /* Slightly larger */
    margin-bottom: 1.5rem;
    opacity: 1;
    /* Full opacity for clarity */
}

.footer-heading {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

/* Vertical Accent Bar */
.footer-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Remove old underline */
.footer-heading::after {
    display: none;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
    /* Better hit area */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 10px;
}

/* Arrow indicator on hover */
.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    left: 0;
    opacity: 1;
}

.footer-link:hover {
    padding-left: 15px;
}

/* Contact List Styling */
.list-unstyled li {
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.list-unstyled i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    /* Softer corners */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy */
    font-size: 1.1rem;
}

.social-icon-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    color: #ffffff;
    box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.4);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-bottom p,
.footer-bottom a {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

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