
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --green-50: #f0fdf4;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --teal-50: #ecfeff;
    --teal-100: #cffafe;
    --teal-600: #0d9488;
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: white;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--blue-600);
    color: white;
}

.btn-primary:hover {
    background: var(--blue-700);
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-success {
    background: var(--green-600);
    color: white;
}

.btn-success:hover {
    background: var(--green-700);
    transform: scale(1.05);
}

.btn-book {
    background: var(--blue-600);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-book:hover {
    background: var(--blue-700);
}

/* ===== TOAST NOTIFICATIONS ===== */
#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}

.toast {
    background: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideDown 0.3s ease;
}

.toast.success {
    border-left: 4px solid var(--green-600);
}

.toast.success i {
    color: var(--green-600);
}

.toast.error {
    border-left: 4px solid var(--red-600);
}

.toast.error i {
    color: var(--red-600);
}

.toast i {
    font-size: 1.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header.scrolled {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: white;
    transition: color 0.3s ease;
}

.header.scrolled .logo-text {
    color: var(--blue-900);
}

.logo-highlight {
    color: var(--blue-500);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-dropdown {
    position: relative;
    /* ensure proper alignment stacking Context */
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: inherit;
    padding: 0;
    color: white;
    text-decoration: none;
}

.header.scrolled .nav-dropdown-toggle {
    color: var(--gray-700);
}

.nav-dropdown-toggle::after {
    content: '\25BE';
    font-size: 0.65rem;
    line-height: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem); 
    left: 0;
    min-width: 200px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 50;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

/* Invisible bridge so mouse doesn't lose hover over gap */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    height: 1rem;
}

.nav-dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.nav-dropdown-item:hover {
    background-color: var(--gray-50);
    color: var(--blue-600);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    transition: color 0.3s ease;
}

.header.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-link:hover {
    color: var(--blue-500);
}

.mobile-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: block;
}

.header.scrolled .mobile-toggle {
    color: var(--gray-900);
}

.mobile-menu {
    background: white;
    border-top: 1px solid var(--gray-200);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
}

.mobile-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.mobile-about-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-about-dropdown summary {
    list-style: none;
    cursor: pointer;
}

.mobile-about-dropdown summary::-webkit-details-marker {
    display: none;
}

.mobile-sublink {
    padding-left: 1rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 600;
}

.mobile-sublink:hover {
    color: var(--blue-600);
}

.mobile-link:hover {
    color: var(--blue-600);
}

.mobile-btn {
    background: var(--blue-600);
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    color: var(--blue-400);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== VISION & MISSION SECTION ===== */
.section-vision {
    padding: 6rem 0;
    background: var(--gray-50);
}

.vision-mission-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem;
}

.vision-card, .mission-card {
    background: rgb(228, 241, 248);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.vision-card {
    border-left: 8px solid var(--blue-600);
}

.mission-card {
    border-left: 8px solid var(--blue-600);
}

.card-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-blue {
    color: var(--white-600);
}

.highlight-green {
    color: var(--white-600);
}

.card-text {
    font-size: 1.25rem;
    color: var(--white-0000);
    line-height: 1.8;
}

.italic {
    font-style: italic;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-list li {
    display: flex;
    gap: 0.75rem;
    color: var(--white-700);
}

.bullet {
    min-width: 6px;
    height: 24px;
    background: var(--blue-500);
    border-radius: 9999px;
    margin-top: 4px;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.title-underline {
    width: 6rem;
    height: 4px;
    background: var(--blue-600);
    border-radius: 9999px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===== SAFETY SECTION ===== */
.section-safety {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

.emergency-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

.emergency-card {
    background: var(--red-50);
    border: 1px solid var(--red-100);
    border-radius: 1.5rem;
    padding: 2rem;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.emergency-icon {
    padding: 0.75rem;
    background: var(--red-600);
    color: white;
    border-radius: 0.75rem;
    font-size: 2rem;
}

.emergency-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--red-900);
}

.emergency-content {
    display: grid;
    gap: 2rem;
    color: var(--red-800);
}

.emergency-col h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.emergency-col ol {
    list-style: decimal;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.emergency-col ol li {
    font-weight: 500;
}

.emergency-col ul {
    list-style: disc;
    list-style-position: inside;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.fire-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--red-200);
}

.fire-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-700);
    margin-bottom: 1rem;
}

.fire-header i {
    font-size: 1.25rem;
}

.fire-header h4 {
    font-weight: 700;
    font-size: 1.125rem;
}

.fire-box ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.fire-box .bold {
    text-transform: uppercase;
    color: var(--red-700);
}

.helpdesk-card {
    background: var(--blue-900);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.helpdesk-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.helpdesk-header i {
    font-size: 2rem;
    color: var(--blue-400);
}

.helpdesk-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.helpdesk-desc {
    margin-bottom: 2rem;
    color: #bfdbfe;
}

.hotline-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotline-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hotline-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #93c5fd;
    margin-bottom: 0.25rem;
}

.hotline-number {
    font-size: 1.125rem;
    font-family: monospace;
}

.assembly-area {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.assembly-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.assembly-header i {
    color: var(--blue-400);
}

.bold {
    font-weight: 700;
}

.assembly-area p:last-child {
    font-size: 0.875rem;
    color: #bfdbfe;
}

.safety-rules-box {
    background: var(--gray-50);
    border-radius: 2rem;
    padding: 3rem;
}

.rules-title {
    font-size: 1.875rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
}

.rules-grid {
    display: grid;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.rule-icon {
    margin-top: 4px;
    padding: 0.5rem;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.rule-number {
    color: var(--blue-600);
    font-weight: 700;
    margin-right: 0.5rem;
}

.rule-item p {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== EVACUATION DIAGRAM SECTION ===== */
.evacuation-diagram-section {
    margin-top: 4rem;
    background: white;
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .evacuation-diagram-section {
        padding: 3rem;
    }
}

.diagram-title {
    font-size: 1.875rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.diagram-title i {
    color: var(--red-600);
    font-size: 2rem;
}

.diagram-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.diagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.diagram-card {
    background: var(--gray-50);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--blue-100);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.diagram-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--blue-500);
}

.diagram-header {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    color: white;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.diagram-header i {
    font-size: 1.5rem;
}

.diagram-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.diagram-image-container {
    padding: 1.5rem;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.diagram-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.diagram-image:hover {
    transform: scale(1.02);
}

.diagram-footer {
    background: var(--blue-50);
    padding: 1rem 1.5rem;
    border-top: 2px solid var(--blue-100);
}

.diagram-footer p {
    margin: 0;
    color: var(--gray-700);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.diagram-footer i {
    color: var(--blue-600);
}

/* ===== QUALITY SECTION ===== */
.section-quality {
    padding: 6rem 0;
    background: var(--gray-50);
}

.quality-grid {
    display: grid;
    gap: 3rem;
}

.quality-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.quality-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.quality-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quality-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.quality-icon.amber {
    background: var(--amber-100);
    color: var(--amber-700);
}

.quality-icon.blue {
    background: var(--blue-100);
    color: var(--blue-700);
}

.quality-icon.teal {
    background: var(--teal-100);
    color: var(--teal-600);
}

.quality-rules {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quality-rule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 1rem;
}

.quality-rule-item i {
    color: var(--amber-600);
    flex-shrink: 0;
}

.quality-rule-item span {
    font-weight: 600;
    color: var(--gray-700);
}

.manufacturing-rules {
    display: grid;
    gap: 1rem;
}

.manufacturing-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    background: rgba(239, 246, 255, 0.5);
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.bullet-small {
    width: 6px;
    height: 6px;
    background: var(--blue-500);
    border-radius: 9999px;
    margin-top: 8px;
    flex-shrink: 0;
}

.food-defense-card {
    background: var(--blue-900);
    color: white;
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.food-defense-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.food-defense-title i {
    color: var(--blue-400);
}

.food-defense-desc {
    color: #bfdbfe;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.food-defense-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.food-defense-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.food-defense-item:hover .food-defense-number {
    background: var(--blue-400);
    color: var(--blue-900);
}

.food-defense-number {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: var(--blue-800);
    border: 1px solid var(--blue-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #93c5fd;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.food-defense-item p {
    color: #bfdbfe;
    font-weight: 500;
}

.food-defense-item:hover p {
    color: white;
}

.food-defense-quote {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-style: italic;
}

/* ===== FORM SECTION ===== */
.section-form {
    padding: 3rem 0;
    background: var(--blue-50);
}

.form-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray-600);
    font-style: italic;
}

.success-message {
    max-width: 36rem;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--blue-50);
    text-align: center;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: var(--green-100);
    color: var(--green-600);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.success-message h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray-200);
    transform: translateY(-50%);
    z-index: 0;
}

.stepper-item {
    position: relative;
    z-index: 1;
}

.stepper-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid var(--gray-200);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.stepper-item.active .stepper-circle {
    border-color: var(--blue-600);
    background: white;
    color: var(--blue-600);
    transform: scale(1.25);
}

.stepper-item.completed .stepper-circle {
    border-color: var(--green-500);
    background: var(--green-50);
    color: var(--green-500);
}

.visitor-form {
    background: white;
    border-radius: 2.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInRight 0.3s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--blue-600);
}

.step-header.medical {
    color: var(--red-600);
}

.step-header.travel {
    color: var(--green-600);
}

.step-header.vaccine {
    color: #9333ea;
}

.step-header.special {
    color: var(--teal-600);
}

.step-header.allergen {
    color: var(--amber-600);
}

.step-header i {
    font-size: 1.5rem;
}

.step-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    ring: 2px;
    ring-color: var(--blue-500);
    border-color: var(--blue-500);
}

.form-questions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.question-box {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-box.travel-box {
    padding: 1.5rem;
}

.question-box.vaccine-box {
    padding: 1.5rem;
}

.question-box.special-box {
    padding: 1.5rem;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
}

.special-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.special-checklist .checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
}

.special-choice {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.85rem;
    padding: 0.8rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.special-choice:hover {
    border-color: var(--blue-400);
}

.special-choice input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.choice-indicator {
    width: 1.15rem;
    height: 1.15rem;
    border: 2px solid var(--gray-400);
    border-radius: 9999px;
    position: relative;
    flex-shrink: 0;
}

.choice-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 9999px;
    background: var(--blue-600);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.16s ease;
}

.special-choice.selected {
    border-color: var(--blue-500);
    background: var(--blue-50);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.special-choice.selected .choice-indicator {
    border-color: var(--blue-600);
}

.special-choice.selected .choice-indicator::after {
    transform: translate(-50%, -50%) scale(1);
}

.choice-text {
    line-height: 1.4;
}

.special-note {
    margin-top: 0.85rem;
    color: var(--gray-600);
    font-size: 0.88rem;
    font-weight: 600;
}

.question-box.allergen-box {
    padding: 1.5rem;
    background: var(--amber-50);
    border: 1px solid var(--amber-100);
    color: var(--amber-900);
}

.question-text {
    font-weight: 600;
    color: var(--gray-700);
}

.question-box.allergen-box .question-text {
    font-weight: 700;
    color: var(--amber-900);
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.conditional-field {
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    outline: none;
    margin-top: 1rem;
}

.travel-fields,
.vaccine-fields {
    margin-top: 1rem;
}

.vaccine-doses {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.dose-box {
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--gray-100);
}

.dose-box span {
    font-size: 0.875rem;
    font-weight: 700;
}

.radio-group-inline {
    display: flex;
    gap: 0.75rem;
}

.radio-group-inline label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

textarea {
    min-height: 100px;
    padding: 1rem;
    background: white;
    border: 1px solid var(--amber-200);
    border-radius: 0.75rem;
    outline: none;
    resize: vertical;
    width: 100%;
    font-family: inherit;
}

.allergen-note {
    font-size: 0.875rem;
    background: var(--amber-100);
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-style: italic;
    margin-top: 1rem;
}

.allergen-note i {
    margin-top: 2px;
    flex-shrink: 0;
}

.form-disclaimer {
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 1.5rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.form-navigation .btn-primary,
.form-navigation .btn-success {
    margin-left: auto;
}

.form-navigation .btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
    backdrop-filter: none;
}

.form-navigation .btn-secondary:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-950);
    color: white;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col-main {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.footer-desc {
    color: var(--gray-400);
    max-width: 28rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--blue-600);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-400);
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--blue-500);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .manufacturing-rules {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diagram-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .emergency-grid {
        grid-template-columns: 2fr 1fr;
    }

    .emergency-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-col-main {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .vaccine-doses {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rules-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-col-main {
        grid-column: span 1;
    }
}
