/* ============================================
   Ultimate Pet Transport Guide - Professional Styles
   Complete design for Paws to the Philippines - 4 cats journey
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1a5f4a;
    --primary-light: #2d8a6e;
    --primary-dark: #0d3d30;
    --secondary: #c9a227;
    --secondary-light: #dbb73d;
    --accent: #e8dcc4;
    --danger: #e74c3c;
    --danger-light: #f39c12;
    --text: #2c3e50;
    --text-light: #5a6c7d;
    --text-lighter: #8899a6;
    --bg: #faf9f7;
    --bg-alt: #f4f2ed;
    --bg-dark: #1a2e3a;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 50px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --border: rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.nav-logo i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(26, 95, 74, 0.08);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 74, 0.4);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--bg-dark) 0%,
        #2d4a5e 50%,
        var(--primary-dark) 100%
    );
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(
            circle at 25% 25%,
            rgba(201, 162, 39, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(26, 95, 74, 0.1) 0%,
            transparent 50%
        );
}

.hero-globe {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 70%
    );
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.hero-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.route-stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--white);
    min-width: 90px;
}

.route-stop i {
    font-size: 1.3rem;
    color: var(--secondary);
}

.route-stop span {
    font-size: 0.85rem;
    font-weight: 500;
}

.route-stop.final {
    background: rgba(26, 95, 74, 0.4);
    border: 1px solid var(--primary-light);
}

.route-connector {
    color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Overview Section */
.overview-section {
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.overview-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.overview-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.overview-card.highlight {
    background: linear-gradient(
        135deg,
        rgba(231, 76, 60, 0.1) 0%,
        rgba(243, 156, 18, 0.05) 100%
    );
    border-color: var(--danger);
}

.overview-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.overview-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.crew-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crew-badge {
    padding: 6px 12px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
}

.alert-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--danger);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.alert-box i {
    font-size: 1rem;
}

.route-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.route-summary span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.route-summary i {
    color: var(--primary);
}

.budget-display {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius);
}

.budget-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: "Playfair Display", serif;
}

/* Why Section */
.why-section {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.why-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
}

.why-item i {
    font-size: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Route Section */
.route-section {
    background: var(--bg-alt);
}

.route-map-container {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

#route-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a3a4a 0%, #2d5a6f 100%);
}

.route-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-marker.flight {
    background: var(--secondary);
}
.legend-marker.ferry {
    background: #3498db;
}
.legend-marker.land {
    background: var(--success);
}

/* Route Details */
.route-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.route-phase {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    color: var(--white);
}

.phase-number {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
}

.phase-info {
    flex: 1;
}

.phase-info h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.phase-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.phase-content {
    padding: 30px;
}

/* Flight Timeline */
.flight-timeline {
    margin-bottom: 30px;
}

.flight-segment {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.segment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.segment-icon.departure {
    background: var(--primary);
    color: var(--white);
    font-size: 1.5rem;
}

.segment-icon.transit {
    background: var(--secondary);
    color: var(--white);
    font-size: 1.5rem;
}

.segment-details {
    flex: 1;
}

.segment-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.flight-number {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 5px;
}

.flight-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.segment-duration {
    text-align: center;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius);
}

.segment-duration span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.flight-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.flight-connector i {
    color: var(--secondary);
}

/* Airline Details */
.airline-details {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 25px;
}

.airline-details h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.airline-details h4 i {
    color: var(--secondary);
}

.avih-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.avih-item {
    text-align: center;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
}

.avih-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.avih-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* Ferry Section */
.ferry-info {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 30px;
}

.ferry-route-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #1a3a4a 0%, #2d5a6f 100%);
    border-radius: var(--radius);
}

.port.visual-port {
    text-align: center;
    color: var(--white);
}

.port.visual-port i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.port.visual-port span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.ferry-animation {
    position: relative;
    animation: shipBob 3s ease-in-out infinite;
}

@keyframes shipBob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.ferry-animation i {
    font-size: 2.5rem;
    color: var(--white);
}

.ferry-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ferry-detail {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
}

.ferry-detail i {
    font-size: 1.5rem;
    color: #3498db;
}

.ferry-detail h5 {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--text);
}

.ferry-detail p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.ferry-schedule {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
}

.ferry-schedule-alt {
    margin-top: 20px;
}

.ferry-schedule h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.ferry-schedule h5 i {
    color: #3498db;
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    display: flex;
    gap: 20px;
    padding: 12px 15px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.schedule-item .day {
    font-weight: 600;
    color: var(--primary);
    min-width: 80px;
}

.schedule-item .time {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Van Info */
.van-info {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 30px;
}

.van-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary) 100%
    );
    border-radius: var(--radius);
}

.van-stop {
    text-align: center;
    color: var(--white);
}

.van-stop i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.van-stop span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.van-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.van-path i {
    font-size: 1.5rem;
}

.van-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.van-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--radius);
}

.van-spec i {
    color: var(--success);
    font-size: 1.2rem;
}

.van-spec span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.van-contacts {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
}

.van-contacts h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.van-contacts h5 i {
    color: var(--success);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.contact-row span:first-child {
    font-weight: 500;
}

.contact-row span:last-child {
    color: var(--text-light);
}

/* Crates Section */
.crates-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 50px;
    box-shadow: var(--shadow);
}

.crates-section h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.crates-section h3 i {
    color: var(--primary);
}

.crates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.crate-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.crate-visual {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2d4a5e 100%);
    padding: 30px;
    text-align: center;
}

.crate-dimensions {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.crate-illustration {
    width: 100px;
    height: 70px;
    background: linear-gradient(180deg, #8b7355 0%, #6b5344 100%);
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.crate-visual.medium .crate-illustration {
    width: 80px;
    height: 55px;
}

.crate-info {
    padding: 20px;
    text-align: center;
}

.cat-assignment {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.crate-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.crate-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.crates-total {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.crates-total strong {
    color: var(--primary);
    font-size: 1.3rem;
}

.crates-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: var(--radius);
    color: var(--danger);
    font-size: 0.9rem;
}

.crates-note i {
    font-size: 1.2rem;
}

/* Doha Centre Section */
.doha-centre-section {
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary) 100%
    );
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 50px;
    color: var(--white);
}

.doha-centre-section h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--white);
}

.doha-centre-section h3 i {
    color: var(--secondary);
}

.centre-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.centre-feature {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.centre-feature i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.centre-feature span {
    font-size: 0.85rem;
}

.centre-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.centre-contact i {
    color: var(--secondary);
    margin-right: 10px;
}

/* Journey Visualization Section - Beautiful Complete Route Display */
.journey-hero {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        #1a3a4a 50%,
        #0d2d3a 100%
    );
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    margin-bottom: 50px;
    overflow: hidden;
    text-align: center;
}

.journey-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.journey-globe {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(201, 162, 39, 0.15) 0%,
        transparent 60%
    );
    animation: rotate 60s linear infinite;
}

.journey-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(201, 162, 39, 0.1) 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(26, 95, 74, 0.15) 0%,
            transparent 40%
        );
}

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

.journey-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(201, 162, 39, 0.2);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.journey-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.journey-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Journey Visualization */
.journey-visualization {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.journey-path-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        var(--primary) 0%,
        var(--primary-light) 50%,
        var(--secondary) 100%
    );
    transform: translateX(-50%);
    border-radius: 4px;
}

.path-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--secondary) 0%,
        var(--primary) 100%
    );
    border-radius: 4px;
    animation: pathFill 1s ease forwards;
}

@keyframes pathFill {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Journey Steps */
.journey-step {
    position: relative;
    margin-bottom: 30px;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.step-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-left: calc(50% + 30px);
}

.step-card:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-lg);
}

.step-card.highlight {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    margin-left: 0;
    margin-right: calc(50% + 30px);
}

.step-card.highlight:hover {
    transform: translateX(10px);
}

.step-card.highlight:hover {
    box-shadow: 0 15px 50px rgba(26, 95, 74, 0.4);
}

.step-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.step-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.2;
}

.step-icon-wrapper.flight .step-icon-bg {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
}

.step-icon-wrapper.taxi .step-icon-bg {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.step-icon-wrapper.roro .step-icon-bg {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.step-icon-wrapper.van .step-icon-bg,
.step-card.highlight .step-icon-bg {
    background: linear-gradient(135deg, var(--secondary) 0%, #dbb73d 100%);
}

.step-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: var(--primary);
}

.step-card.highlight .step-icon-wrapper i {
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    z-index: 3;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

.step-card.highlight .step-content h4 {
    color: var(--white);
}

.step-route {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.step-card.highlight .step-route {
    color: rgba(255, 255, 255, 0.85);
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-card.highlight .step-duration {
    color: var(--secondary);
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-alt);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.step-card.highlight .detail-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.detail-tag i {
    font-size: 0.75rem;
    color: var(--primary);
}

.step-card.highlight .detail-tag i {
    color: var(--secondary);
}

/* Step Connectors */
.step-connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border: 4px solid var(--white);
    border-radius: 50%;
    z-index: 10;
}

.step-connector-1 {
    top: 100px;
}
.step-connector-2 {
    top: 280px;
}
.step-connector-3 {
    top: 460px;
}

/* Journey Summary Card */
.journey-summary-card {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary) 100%
    );
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.journey-summary-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(201, 162, 39, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.summary-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.summary-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.summary-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.summary-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.time-breakdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.time-item {
    text-align: center;
}

.time-item .time-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: "Playfair Display", serif;
}

.time-item .time-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.time-item.total .time-value {
    color: var(--secondary);
}

.time-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
}

.journey-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.journey-note i {
    color: var(--secondary);
}

.summary-decoration {
    position: absolute;
    bottom: -30px;
    right: 50px;
    display: flex;
    gap: 15px;
}

.decoration-circle {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.decoration-circle:nth-child(2) {
    animation-delay: 0.3s;
}

.decoration-circle:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* Considerations Section */
.considerations-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.considerations-section h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.considerations-section h3 i {
    color: var(--secondary);
}

/* Alternative Option Card */
.alt-option-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.alt-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: var(--white);
}

.alt-header i {
    font-size: 1.5rem;
}

.alt-header h4 {
    font-size: 1.2rem;
    color: var(--white);
}

.alt-content {
    padding: 25px;
}

.alt-content > p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.alt-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.alt-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.alt-item i {
    color: #3498db;
    font-size: 1.1rem;
}

.alt-item span {
    font-size: 0.85rem;
    color: var(--text);
}

.booking-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-secondary {
    background: #3498db;
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #3498db;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: #3498db;
    color: var(--white);
}

.alt-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
}

.alt-note i {
    color: #3498db;
    font-size: 1.1rem;
}

/* Typhoon Card */
.typhoon-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.typhoon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: var(--white);
}

.typhoon-header i {
    font-size: 1.5rem;
}

.typhoon-header h4 {
    font-size: 1.2rem;
    color: var(--white);
}

.typhoon-content {
    padding: 25px;
}

.typhoon-warning {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid var(--danger);
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.typhoon-warning i {
    font-size: 1.5rem;
    color: var(--danger);
    flex-shrink: 0;
}

.typhoon-warning strong {
    display: block;
    font-size: 1rem;
    color: var(--danger);
    margin-bottom: 3px;
}

.typhoon-warning p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.typhoon-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.typhoon-info-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
}

.typhoon-info-item h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text);
}

.typhoon-info-item h5 i {
    color: #e67e22;
}

.typhoon-info-item ul {
    list-style: none;
    padding-left: 0;
}

.typhoon-info-item li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    position: relative;
    padding-left: 18px;
}

.typhoon-info-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Carrier Requirements Card */
.carrier-requirements-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carrier-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    color: var(--white);
}

.carrier-header i {
    font-size: 1.5rem;
}

.carrier-header h4 {
    font-size: 1.2rem;
    color: var(--white);
}

.carrier-content {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.carrier-mode {
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
}

.carrier-mode-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(26, 95, 74, 0.1);
    border-bottom: 2px solid var(--primary);
}

.carrier-mode-header i {
    color: var(--primary);
}

.carrier-mode-header h5 {
    font-size: 1rem;
    color: var(--text);
}

.carrier-requirements {
    padding: 20px;
}

.carrier-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carrier-requirements li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.carrier-requirements li:last-child {
    border-bottom: none;
}

.carrier-requirements li strong {
    color: var(--text);
}

.carrier-tips {
    padding: 25px;
    background: var(--bg-alt);
    border-top: 2px solid var(--primary);
}

.carrier-tips h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.carrier-tips h5 i {
    color: var(--secondary);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: var(--radius);
}

.tip-item i {
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
}

.tip-item span {
    font-size: 0.85rem;
    color: var(--text);
}

/* Local Shipping Permit Section */
.local-permit-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.permit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
}

.permit-header i {
    font-size: 1.8rem;
}

.permit-header h3 {
    font-size: 1.4rem;
    color: var(--white);
}

.permit-content {
    padding: 30px;
}

.permit-alert {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid var(--danger);
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.permit-alert i {
    font-size: 1.5rem;
    color: var(--danger);
    flex-shrink: 0;
    margin-top: 2px;
}

.permit-alert h4 {
    font-size: 1.1rem;
    color: var(--danger);
    margin-bottom: 5px;
}

.permit-alert p {
    font-size: 0.95rem;
    color: var(--text);
}

.permit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.permit-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
}

.permit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.permit-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.permit-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.permit-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.permit-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.permit-link a:hover {
    text-decoration: underline;
}

.permit-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

.permit-steps {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.permit-steps h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text);
}

.permit-steps h4 i {
    color: var(--primary);
}

.steps-list {
    padding-left: 0;
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    position: relative;
    padding: 12px 0 12px 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--text);
}

.steps-list li:last-child {
    border-bottom: none;
}

.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.steps-list li a {
    color: var(--primary);
    font-weight: 600;
}

.permit-requirements {
    margin-bottom: 25px;
}

.permit-requirements h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text);
}

.permit-requirements h4 i {
    color: var(--primary);
}

.req-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.req-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.req-check i {
    color: #27ae60;
    font-size: 1.1rem;
}

.req-check span {
    font-size: 0.9rem;
    color: var(--text);
}

.permit-important {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.permit-important h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text);
}

.permit-important h4 i {
    color: var(--secondary);
}

.important-list {
    padding-left: 0;
    list-style: none;
}

.important-list li {
    position: relative;
    padding: 8px 0 8px 25px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.important-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--danger);
    font-size: 1.2rem;
}

.permit-contact {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 25px;
}

.permit-contact h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text);
}

.permit-contact h4 i {
    color: var(--primary);
}

.contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-grid .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-grid .contact-item i {
    color: var(--primary);
}

/* Requirements Section */
.requirements-section {
    background: var(--bg-alt);
}

.important-alert {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(
        135deg,
        rgba(231, 76, 60, 0.15) 0%,
        rgba(243, 156, 18, 0.1) 100%
    );
    border: 2px solid var(--danger);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin-bottom: 40px;
}

.important-alert i {
    font-size: 2rem;
    color: var(--danger);
    flex-shrink: 0;
}

.alert-content h4 {
    color: var(--danger);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.alert-content p {
    font-size: 0.95rem;
    color: var(--text);
}

.req-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 14px 28px;
    border: 2px solid var(--white);
    background: var(--white);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tab-content-wrapper {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

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

.req-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.req-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.req-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.req-card.critical {
    background: linear-gradient(
        135deg,
        rgba(231, 76, 60, 0.1) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    border-color: var(--danger);
}

.req-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--white);
}

.req-card.critical .req-icon {
    background: var(--danger);
}

.req-card h4 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text);
}

.req-list {
    list-style: none;
}

.req-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.req-list li:last-child {
    border-bottom: none;
}

.req-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.req-card.critical .req-list li::before {
    content: "⚠️";
}

.agency-info,
.airline-contact {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.agency-info h4,
.airline-contact h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.agency-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.agency-details p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.agency-details i {
    color: var(--primary);
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.doc-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
}

.doc-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-alt);
    font-size: 1.1rem;
}

.doc-section h4 i {
    color: var(--primary);
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-alt);
    font-size: 0.9rem;
    color: var(--text);
}

.doc-list li:last-child {
    border-bottom: none;
}

/* Timeline Section */
.timeline-section {
    background: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-phase {
    margin-bottom: 40px;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px 30px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    border-radius: var(--radius-lg);
    color: var(--white);
}

.phase-label {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 50px;
}

.phase-title {
    flex: 1;
    font-size: 1.3rem;
}

.phase-date {
    font-size: 0.85rem;
    opacity: 0.9;
}

.timeline-items {
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
    padding-left: 40px;
    border-left: 2px solid var(--bg-alt);
}

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

.timeline-item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--white);
}

.timeline-item.highlight::before {
    background: var(--secondary);
}

.timeline-item.critical::before {
    background: var(--danger);
}

.timeline-item.travel::before {
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
}

.item-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-item.highlight .item-date {
    color: var(--secondary);
}

.timeline-item.critical .item-date {
    color: var(--danger);
}

.timeline-item.travel .item-date {
    color: var(--success);
}

.item-content {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
}

.item-content h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.item-content ul {
    list-style: none;
}

.item-content li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.item-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Costs Section */
.costs-section {
    background: var(--bg-alt);
}

.cost-summary {
    text-align: center;
    margin-bottom: 50px;
}

.total-cost {
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary) 100%
    );
    color: var(--white);
    padding: 50px 80px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.total-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    margin-bottom: 10px;
}

.total-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.costs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.cost-category {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-alt);
}

.category-header i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.category-header h4 {
    font-size: 1.1rem;
}

.category-items {
    margin-bottom: 15px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-alt);
    font-size: 0.9rem;
}

.cost-item span:first-child {
    color: var(--text-light);
    padding-right: 15px;
}

.cost-item .cost {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.category-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px solid var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.cost-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.note-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.note-card i {
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.note-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Checklist Section */
.checklist-section {
    background: var(--white);
}

.checklist-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.checklist-tab {
    padding: 14px 28px;
    border: 2px solid var(--bg-alt);
    background: var(--white);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.checklist-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.checklist-wrapper {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.checklist-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.checklist-content.active {
    display: block;
}

.checklist-group {
    margin-bottom: 35px;
}

.checklist-group:last-child {
    margin-bottom: 0;
}

.checklist-group h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.checklist-group h4 i {
    color: var(--primary);
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checklist-item label {
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
}

.checklist-item.critical label {
    font-weight: 600;
}

.checklist-item input:checked + label {
    text-decoration: line-through;
    color: var(--text-lighter);
}

/* Contacts Section */
.contacts-section {
    background: var(--bg-alt);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
}

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

.contact-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-alt);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-header h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.contact-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-details {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-item i {
    width: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-purpose {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-purpose strong {
    color: var(--text);
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.emergency-section h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.emergency-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.emergency-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.emergency-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-brand i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-route {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-route span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-route i {
    color: var(--secondary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-meta {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

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

    .avih-grid,
    .ferry-details-grid,
    .centre-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: block;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .flight-segment {
        flex-direction: column;
        text-align: center;
    }

    .crates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .req-grid,
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .costs-grid {
        grid-template-columns: 1fr;
    }

    .cost-notes {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-route {
        flex-direction: column;
        gap: 10px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .avih-grid,
    .ferry-details-grid,
    .centre-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .crates-grid {
        grid-template-columns: 1fr;
    }

    .req-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .emergency-grid {
        grid-template-columns: 1fr;
    }

    .req-tabs,
    .checklist-categories {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn,
    .checklist-tab {
        justify-content: center;
    }

    /* Considerations Section Responsive */
    .alt-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .typhoon-info-grid,
    .carrier-content {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-links {
        flex-direction: column;
    }

    .booking-links .btn {
        width: 100%;
        justify-content: center;
    }

    /* Local Shipping Permit Section Responsive */
    .permit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .req-checklist {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        flex-direction: column;
        gap: 15px;
    }

    /* Journey Visualization Responsive */
    .journey-hero {
        padding: 40px 25px;
    }

    .journey-title {
        font-size: 1.8rem;
    }

    .journey-subtitle {
        font-size: 1rem;
    }

    .journey-visualization {
        padding: 0 10px;
    }

    .journey-path-line {
        left: 20px;
        transform: none;
    }

    .step-card {
        margin-left: 50px !important;
        margin-right: 0 !important;
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .step-card.highlight {
        background: linear-gradient(
            135deg,
            var(--primary) 0%,
            var(--primary-light) 100%
        );
    }

    .step-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .step-icon-wrapper i {
        font-size: 1.8rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        top: -5px;
        right: -5px;
    }

    .step-content h4 {
        font-size: 1.15rem;
    }

    .step-details {
        justify-content: center;
    }

    .step-connector {
        left: 20px !important;
        transform: none !important;
    }

    .journey-summary-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
    }

    .summary-icon {
        width: 80px;
        height: 80px;
    }

    .summary-icon i {
        font-size: 2rem;
    }

    .time-breakdown {
        flex-wrap: wrap;
        gap: 15px;
    }

    .time-item .time-value {
        font-size: 1.6rem;
    }

    .summary-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .total-amount {
        font-size: 2.5rem;
    }

    .total-cost {
        padding: 40px 30px;
    }

    .overview-card {
        padding: 25px 20px;
    }

    /* Journey Visualization Mobile */
    .journey-hero {
        padding: 30px 20px;
    }

    .journey-badge {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .journey-title {
        font-size: 1.4rem;
    }

    .journey-subtitle {
        font-size: 0.9rem;
    }

    .step-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .step-icon-wrapper i {
        font-size: 1.5rem;
    }

    .step-content h4 {
        font-size: 1.05rem;
    }

    .step-route,
    .step-duration {
        font-size: 0.85rem;
    }

    .detail-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .summary-content h3 {
        font-size: 1.2rem;
    }

    /* Local Shipping Permit Section Mobile */
    .permit-header {
        flex-direction: column;
        text-align: center;
    }

    .permit-grid {
        grid-template-columns: 1fr;
    }

    .permit-card {
        padding: 20px;
    }

    .permit-alert {
        flex-direction: column;
        text-align: center;
    }

    .steps-list li {
        padding: 15px 0 15px 40px;
    }

    .steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .req-checklist {
        grid-template-columns: 1fr;
    }

    .time-item .time-value {
        font-size: 1.4rem;
    }

    .time-item .time-label {
        font-size: 0.75rem;
    }

    .journey-note {
        font-size: 0.85rem;
    }

    /* Considerations Section Mobile */
    .alt-details {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar {
        display: none;
    }

    .section {
        page-break-inside: avoid;
        padding: 40px 0;
    }

    .btn {
        display: none;
    }

    .considerations-section {
        page-break-inside: avoid;
    }

    .journey-hero,
    .journey-visualization,
    .journey-summary-card {
        page-break-inside: avoid;
    }

    .journey-hero-bg {
        display: none;
    }
}

/* ========================================
   CRATES GUIDE SECTION STYLES
   ======================================== */

.crates-guide-section {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
}

/* Crates Hero Summary */
.crates-hero {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
}

.crates-hero-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
    border-bottom: 2px solid var(--bg-alt);
    padding-bottom: 15px;
}

.crates-hero-content h3 i {
    color: var(--primary);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.summary-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
    border-left: 4px solid var(--primary);
}

.summary-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-lighter);
    margin-bottom: 8px;
}

.summary-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text);
}

.summary-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Door Latch Alert */
.door-latch-alert {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-left-width: 6px;
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.door-latch-alert .alert-content h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text);
}

.door-latch-alert .alert-content h4 i {
    color: var(--secondary);
}

.door-latch-alert .alert-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 500;
}

.latch-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.latch-type {
    border-radius: var(--radius);
    padding: 20px;
    border: 2px solid;
}

.latch-type.good {
    background: var(--bg-alt);
    border-color: var(--primary);
}

.latch-type.bad {
    background: #fff5f5;
    border-color: var(--danger);
}

.latch-visual {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.latch-visual i:first-child {
    font-size: 1.5rem;
}

.latch-type.good .latch-visual i:first-child {
    color: var(--primary);
}

.latch-type.bad .latch-visual i:first-child {
    color: var(--danger);
}

.latch-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.latch-type.good .latch-icon {
    background: var(--primary);
    color: white;
}

.latch-type.bad .latch-icon {
    background: var(--danger);
    color: white;
}

.latch-type h5 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.latch-type.good h5 {
    color: var(--primary);
}

.latch-type.bad h5 {
    color: var(--danger);
}

.latch-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latch-type li {
    font-size: 0.9rem;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
    color: var(--text);
}

.latch-type li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.latch-type.bad li::before {
    color: var(--danger);
}

.shopping-tip {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--secondary);
}

.shopping-tip i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.shopping-tip strong {
    color: var(--text);
}

/* Qatar Airways Requirements */
.qa-requirements {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.qa-requirements h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.qa-requirements h3 i {
    color: var(--secondary);
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.qa-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.qa-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.qa-item.critical {
    border-left-color: var(--danger);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, var(--bg-alt) 100%);
}

.qa-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.qa-item.critical .qa-icon {
    background: linear-gradient(135deg, var(--danger) 0%, #c0392b 100%);
}

.qa-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.qa-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.qa-note {
    font-size: 0.8rem;
    color: var(--danger);
    font-weight: 500;
}

/* Buying Guide */
.buying-guide {
    margin-bottom: 40px;
}

.buying-guide h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.buying-guide h3 i {
    color: var(--primary);
}

.avoid-guide h3 i {
    color: var(--danger);
}

.cardboard-test-section h3 i {
    color: var(--primary);
}

.mod-steps-section h3 i {
    color: var(--primary);
}

.crate-budget-section h3 i {
    color: var(--primary);
}

.inspection-section h3 i {
    color: var(--primary);
}

.reminders-section h3 i {
    color: var(--primary);
}

.checklist-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 2px solid rgba(26, 95, 74, 0.1);
}

.checklist-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
}

.shopping-checklist {
    padding: 25px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-alt);
}

.check-item:last-child {
    border-bottom: none;
}

.check-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.check-item span {
    font-size: 0.95rem;
}

/* Avoid Guide */
.avoid-guide {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid rgba(231, 76, 60, 0.2);
    box-shadow: var(--shadow);
}

.avoid-guide h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--danger);
    margin-bottom: 25px;
}

.avoid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.avoid-item {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(231, 76, 60, 0.02) 100%);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.avoid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
}

.avoid-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--danger) 0%, #c0392b 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.avoid-icon i {
    font-size: 1.5rem;
}

.avoid-item h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--danger);
}

.avoid-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.alternative {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

/* Cardboard Test Section */
.cardboard-test-section {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.05) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    border: 2px solid rgba(26, 95, 74, 0.1);
    box-shadow: var(--shadow);
}

.test-header {
    text-align: center;
    margin-bottom: 30px;
}

.test-header i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.test-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 10px;
}

.test-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.test-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.test-warning {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.test-warning i {
    color: var(--secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.test-warning h4 {
    color: var(--text);
    margin-bottom: 5px;
}

.test-warning p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.test-instructions h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text);
}

.test-instructions h4 i {
    color: var(--primary);
}

.test-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.test-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    transition: var(--transition);
}

.test-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(26, 95, 74, 0.3);
}

.step-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-content .note {
    font-size: 0.8rem;
    color: var(--text-lighter);
    font-style: italic;
}

.sit-test-critical {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
    border-radius: var(--radius);
    padding: 25px;
    margin: 25px 0;
    border: 2px solid rgba(26, 95, 74, 0.1);
}

.sit-test-critical h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text);
}

.sit-test-critical h4 i {
    color: var(--primary);
}

.sit-test-explanation {
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(26, 95, 74, 0.1);
}

.sit-test-explanation strong {
    color: var(--primary);
}

.sit-test-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.result {
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.result:hover {
    transform: translateY(-3px);
}

.result.pass {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.1) 0%, rgba(26, 95, 74, 0.05) 100%);
    border: 2px solid var(--primary);
}

.result.fail {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    border: 2px solid var(--danger);
}

.result i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.result.pass i {
    color: var(--primary);
}

.result.fail i {
    color: var(--danger);
}

.result h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.result.pass h5 {
    color: var(--primary);
}

.result.fail h5 {
    color: var(--danger);
}

.result p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.important-note {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.important-note i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.important-note strong {
    color: var(--text);
}

.all-tests {
    margin-top: 25px;
}

.all-tests h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text);
}

.all-tests h4 i {
    color: var(--primary);
}

.test-checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.test-check-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.test-check-item:hover {
    border-color: var(--primary);
}

.test-name {
    font-weight: 600;
    color: var(--primary);
}

.test-criteria {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: right;
}

/* Suppliers Section */
.suppliers-section {
    margin-bottom: 40px;
}

.suppliers-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.suppliers-section h3 i {
    color: var(--primary);
}

.supplier-note {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.08) 0%, rgba(26, 95, 74, 0.03) 100%);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.supplier-note i {
    color: var(--primary);
}

.supplier-note strong {
    color: var(--text);
}

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.supplier-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid rgba(26, 95, 74, 0.1);
    transition: var(--transition);
}

.supplier-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.supplier-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.05) 0%, white 100%);
}

.supplier-card.warning {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, white 100%);
}

.supplier-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.supplier-card.warning .supplier-badge {
    background: var(--secondary);
}

.supplier-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.supplier-details p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.supplier-details i {
    color: var(--primary);
    width: 16px;
}

/* Modifications Section */
.modifications-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.modifications-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.modifications-section h3 i {
    color: var(--primary);
}

.mod-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.mod-intro p {
    font-size: 0.9rem;
}

.mod-intro strong {
    color: var(--primary);
}

.mod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.mod-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 15px;
}

.mod-aisle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 8px;
}

.mod-item h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.mod-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 3px 0;
}

.tools-section {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid rgba(26, 95, 74, 0.1);
}

.tools-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tools-section h4 i {
    color: var(--primary);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.tool-item.yes {
    color: var(--primary);
}

.tool-item.yes i {
    color: var(--primary);
}

.tool-item.no {
    color: var(--danger);
    text-decoration: line-through;
    opacity: 0.6;
}

/* Modification Steps */
.mod-steps-section {
    margin-bottom: 40px;
}

.mod-steps-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.mod-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mod-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.mod-step:hover {
    box-shadow: var(--shadow-lg);
}

.mod-step.critical {
    border: 2px solid var(--danger);
}

.mod-step.recommended {
    border: 2px solid var(--secondary);
}

.step-header {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.mod-step.critical .step-num {
    background: linear-gradient(135deg, var(--danger) 0%, #c0392b 100%);
}

.mod-step.recommended .step-num {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary-dark);
}

.step-header h4 {
    font-size: 1.1rem;
    margin: 0;
}

.step-time {
    margin-left: auto;
    font-size: 0.8rem;
    color: #6c757d;
    background: white;
    padding: 5px 12px;
    border-radius: 50px;
}

.step-content {
    padding: 25px;
}

.step-content p {
    margin-bottom: 15px;
}

.step-content ol {
    margin-left: 20px;
}

.step-content li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.step-result {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.1) 0%, rgba(26, 95, 74, 0.05) 100%);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(26, 95, 74, 0.2);
}

.step-result i {
    color: var(--primary);
    font-size: 1.2rem;
}

.step-result span {
    color: var(--text);
    font-weight: 500;
}

.id-example {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2d4a5e 100%);
    color: var(--secondary);
    padding: 20px;
    border-radius: var(--radius);
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    margin: 15px 0;
    line-height: 1.8;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

/* Budget Section */
.crate-budget-section {
    margin-bottom: 40px;
}

.crate-budget-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.budget-tables {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.budget-table {
    margin-bottom: 20px;
}

.budget-table h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.budget-table table {
    width: 100%;
    border-collapse: collapse;
}

.budget-table th {
    background: var(--bg-alt);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border);
}

.budget-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.budget-table tr.total {
    background: var(--primary);
    color: white;
}

.budget-table tr.total td {
    border-bottom: none;
}

.budget-tip {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.08) 0%, rgba(26, 95, 74, 0.03) 100%);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.budget-tip i {
    color: var(--primary);
    font-size: 1.2rem;
}

.budget-tip strong {
    color: var(--text);
}

/* Crate Timeline */
.crate-timeline-section {
    margin-bottom: 40px;
}

.crate-timeline-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.crate-timeline-section h3 i {
    color: var(--primary);
}

.crate-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-point {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.timeline-point:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.point-date {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 10px 15px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 3px 10px rgba(26, 95, 74, 0.3);
}

.point-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.point-content p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Inspection Section */
.inspection-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.inspection-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.inspection-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.inspection-grid {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.inspection-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.inspection-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.inspection-item label {
    font-size: 0.9rem;
    cursor: pointer;
}

.inspection-warning {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    border-left: 4px solid var(--danger);
    border-radius: var(--radius);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inspection-warning i {
    color: var(--danger);
}

.inspection-warning strong {
    color: var(--danger);
}

/* Reminders Section */
.reminders-section {
    margin-bottom: 40px;
}

.reminders-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.reminders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.reminder.do {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.08) 0%, rgba(26, 95, 74, 0.03) 100%);
    border-radius: var(--radius);
    padding: 20px;
    border: 2px solid rgba(26, 95, 74, 0.2);
    transition: var(--transition);
}

.reminder.do:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.reminder.do i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.reminder.do h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--text);
}

.reminder.do p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.red-flags {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 2px solid rgba(231, 76, 60, 0.2);
    box-shadow: var(--shadow);
}

.red-flags h4 {
    color: var(--danger);
    margin-bottom: 15px;
}

.flag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flag {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(231, 76, 60, 0.03) 100%);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: var(--danger);
}

/* Quick Reference Card */
.quick-reference-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
}

.quick-reference-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--primary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-alt);
}

.quick-reference-card h3 i {
    color: var(--primary);
}

.ref-card-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ref-section {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
}

.ref-section:last-child {
    margin-bottom: 0;
}

.ref-section h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.ref-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ref-section li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ref-section li:last-child {
    border-bottom: none;
}

.ref-section.warning {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 2px solid var(--secondary);
    grid-column: 1 / -1;
}

.ref-section.warning h4 {
    color: var(--secondary);
}

.ref-section.warning p {
    margin: 5px 0;
    font-size: 0.85rem;
    color: var(--text);
}

/* ============================================
   Human Arrival Section Styles
   ============================================ */

.human-arrival-section {
    background: var(--white);
}

.arrival-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    transition: var(--transition);
}

.arrival-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.arrival-step .step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.arrival-step .step-number {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
}

.arrival-step .step-title {
    flex: 1;
}

.arrival-step .step-title h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.arrival-step .step-title p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.arrival-step .step-content {
    padding: 30px;
}

.step-purpose {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(26, 95, 74, 0.08);
    border-radius: var(--radius);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
}

.step-purpose i {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.bring-list {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.bring-list h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text);
}

.bring-list h4 i {
    color: var(--secondary);
}

.bring-list ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-light);
}

.bring-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    padding-left: 10px;
}

.request-item {
    background: rgba(26, 95, 74, 0.08);
    border-radius: var(--radius);
    padding: 20px 25px;
    border-left: 4px solid var(--secondary);
}

.request-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text);
}

.request-item h4 i {
    color: var(--secondary);
}

.request-item p {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.location-info i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.location-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 5px;
}

.location-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.strategy-box {
    background: rgba(201, 162, 39, 0.08);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary);
}

.strategy-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text);
}

.strategy-box h4 i {
    color: var(--secondary);
}

.strategy-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.strategy-step {
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius);
}

.strategy-step strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.strategy-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scenario-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.scenario-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.scenario-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.scenario-card h4 i {
    color: var(--primary);
}

.scenario-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.utilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.utility-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

.utility-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.utility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.utility-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.utility-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.utility-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.utility-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.registrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reg-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 25px;
    transition: var(--transition);
}

.reg-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.reg-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, #dbb73d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.reg-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.reg-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text);
}

.reg-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reg-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.reg-details strong {
    color: var(--primary);
}

.ownership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ownership-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 25px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.ownership-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.ownership-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.ownership-item.allowed .ownership-icon {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.ownership-item.not-allowed .ownership-icon {
    background: rgba(231, 76, 60, 0.15);
    color: var(--danger);
}

.ownership-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.ownership-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tip-item {
    display: flex;
    gap: 15px;
    padding: 20px 25px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    transition: var(--transition);
}

.tip-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, #dbb73d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.tip-content {
    flex: 1;
}

.tip-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.tip-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   Responsive Styles for Human Arrival Section
   ============================================ */

@media (max-width: 1024px) {
    .scenarios-grid,
    .utilities-grid,
    .registrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ownership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .arrival-step .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .arrival-step .step-title {
        width: 100%;
    }
    
    .scenarios-grid,
    .utilities-grid,
    .registrations-grid,
    .ownership-grid {
        grid-template-columns: 1fr;
    }
    
    .ownership-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tip-icon {
        margin-bottom: 15px;
    }
}

/* ============================================
   End Human Arrival Section Styles
   ============================================ */

/* Responsive Styles for Crates Guide */
@media (max-width: 768px) {
    .crates-hero {
        padding: 20px;
    }

    .crates-hero-content h3 {
        font-size: 1.2rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .ref-card-content {
        grid-template-columns: 1fr;
    }

    .latch-comparison {
        grid-template-columns: 1fr;
    }

    .qa-grid {
        grid-template-columns: 1fr;
    }

    .avoid-grid {
        grid-template-columns: 1fr;
    }

    .suppliers-grid {
        grid-template-columns: 1fr;
    }

    .mod-grid {
        grid-template-columns: 1fr;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-time {
        margin-left: 0;
    }

    .budget-table {
        overflow-x: auto;
    }

    .sit-test-results {
        grid-template-columns: 1fr;
    }

    .reminders-grid {
        grid-template-columns: 1fr;
    }

    .test-check-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .test-criteria {
        text-align: left;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .crates-guide-section {
        page-break-inside: avoid;
    }

    .quick-reference-card {
        border: 2px solid #000;
    }

    .ref-section {
        background: #f5f5f5 !important;
        border: 1px solid #ddd;
    }
}
