/* ===========================
   KOTOR WALLS - MAIN STYLES
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* === DESIGN TOKENS === */
:root {
    --color-navy: var(--brand-navy);
    --color-blue: var(--brand-blue);
    --color-green: var(--brand-green);
    --color-red: var(--brand-red);
    --color-yellow: var(--brand-yellow);
    --color-white: #ffffff;
    --color-off-white: #f8f9fb;
    --color-light-gray: #eef1f5;
    --color-dark-gray: #1a2a3a;
    --color-text: #1a2a3a;
    --color-text-light: #5a7080;

    --font: 'Montserrat', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px rgba(0, 51, 102, 0.12);
    --shadow-hover: 0 16px 48px rgba(0, 51, 102, 0.22);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 72px;
}

/* === RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    outline: none;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--color-navy);
    border-radius: 3px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 5%;
    transition: background var(--transition), box-shadow var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 33, 70, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.navbar-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    /* Remove navy rectangle background using multiply blend mode */
    mix-blend-mode: screen;
    filter: brightness(1.2) saturate(1.3);
    flex-shrink: 0;
}

.navbar-logo-label {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}


.navbar-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.navbar-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

.navbar-links a:hover {
    color: var(--color-yellow);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-links .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-red);
    color: white;
    padding: 8px 18px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(209, 65, 95, 0.4);
}

.nav-cta-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    position: relative;
    border: 2px solid currentColor;
    border-radius: 3px;
    box-sizing: border-box;
    background:
        linear-gradient(currentColor 0 0) left 2px top 2px / 3px 3px no-repeat,
        linear-gradient(currentColor 0 0) right 2px top 2px / 3px 3px no-repeat,
        linear-gradient(currentColor 0 0) left 2px bottom 2px / 3px 3px no-repeat,
        linear-gradient(currentColor 0 0) center / 3px 3px no-repeat;
}

.qr-icon {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid currentColor;
    border-radius: 4px;
    box-sizing: border-box;
    background:
        linear-gradient(currentColor 0 0) left 2px top 2px / 4px 4px no-repeat,
        linear-gradient(currentColor 0 0) right 2px top 2px / 4px 4px no-repeat,
        linear-gradient(currentColor 0 0) left 2px bottom 2px / 4px 4px no-repeat,
        linear-gradient(currentColor 0 0) center / 4px 4px no-repeat;
}

.qr-icon::after {
    content: '';
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 1px;
}

.qr-icon-sm {
    width: 18px;
    height: 18px;
}

.qr-icon-lg {
    width: 52px;
    height: 52px;
    border-width: 3px;
    border-radius: 10px;
    background:
        linear-gradient(currentColor 0 0) left 6px top 6px / 9px 9px no-repeat,
        linear-gradient(currentColor 0 0) right 6px top 6px / 9px 9px no-repeat,
        linear-gradient(currentColor 0 0) left 6px bottom 6px / 9px 9px no-repeat,
        linear-gradient(currentColor 0 0) center / 9px 9px no-repeat;
}

.qr-icon-lg::after {
    right: 6px;
    bottom: 6px;
    width: 9px;
    height: 9px;
}

.qr-icon-light {
    color: currentColor;
}

.navbar-links .nav-cta:hover {
    background: #b8384f;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(209, 65, 95, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    background: none;
    padding: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0, 33, 70, 0.97);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 20px 5% 30px;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    transition: all var(--transition);
}

.mobile-nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: 10px;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--color-yellow);
    border-left-color: var(--color-yellow);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('bg-sunset.jpg');
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.05);
    transition: transform 8s ease;
    filter: blur(3px) brightness(0.85) saturate(1.1);
}


.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg,
            rgba(0, 33, 70, 0.15) 0%,
            rgba(0, 33, 70, 0.35) 50%,
            rgba(0, 33, 70, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5% 10vh;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 185, 19, 0.18);
    border: 1px solid rgba(253, 185, 19, 0.4);
    color: var(--color-yellow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 24px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-badge::before {
    content: '★';
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title em {
    font-style: normal;
    color: var(--color-red);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    bottom: 1cm;
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-red);
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 24px rgba(209, 65, 95, 0.5);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: #b8384f;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(209, 65, 95, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Stats bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 2;
    overflow-x: auto;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 120px;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat .stat-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-red);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ===========================
   SECTIONS GENERAL
   =========================== */
section {
    scroll-margin-top: var(--nav-height);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 12px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '—';
    margin: 0 8px;
    opacity: 0.5;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

/* ===========================
   ABOUT SECTION
   =========================== */
#about {
    padding: 100px 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    aspect-ratio: 4/5;
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Professional photo effects for the bedemi image */
.bedemi-photo {
    filter: contrast(1.12) saturate(1.25) brightness(1.02);
    transition: filter 0.5s ease;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 55%,
        rgba(0, 0, 0, 0.38) 100%
    );
    pointer-events: none;
    border-radius: 24px;
    mix-blend-mode: multiply;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 160, 40, 0.08) 0%,
        rgba(255, 120, 20, 0.12) 100%
    );
    pointer-events: none;
    z-index: 1;
    border-radius: 24px;
}


.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background: var(--color-navy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: var(--shadow);
    border: 4px solid var(--color-white);
}

.about-badge .years {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-red);
    line-height: 1;
}

.about-badge .years-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: uppercase;
}

.about-content {
    display: block;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-tag::before {
    display: none;
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    white-space: pre-line;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-fact {
    background: var(--color-off-white);
    border-radius: var(--radius-sm);
    padding: 20px;
    border-left: 4px solid var(--color-red);
    transition: all var(--transition);
}

.about-fact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.about-fact .fact-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1;
}

.about-fact .fact-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* ===========================
   EXPERIENCES SECTION
   =========================== */
#experiences {
    padding: 100px 0;
    background: var(--color-off-white);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.exp-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 51, 102, 0.06);
    transition: all var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition);
}

.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.exp-card:nth-child(1) {
    border-top: 4px solid var(--color-blue);
}

.exp-card:nth-child(2) {
    border-top: 4px solid var(--color-green);
}

.exp-card:nth-child(3) {
    border-top: 4px solid var(--color-red);
}

.exp-card:nth-child(4) {
    border-top: 4px solid var(--color-yellow);
}

.exp-card:nth-child(5) {
    border-top: 4px solid var(--color-navy);
}

.exp-card:nth-child(6) {
    border-top: 4px solid var(--color-blue);
}

.exp-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    line-height: 0;
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.exp-icon::before {
    content: '';
    width: 38px;
    height: 38px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.exp-icon[data-icon-token="bay"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%2300AEEF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 25.5c2.2-1.7 4.4-2.5 6.6-2.5s4.4.8 6.6 2.5c2.2 1.7 4.4 2.5 6.6 2.5s4.4-.8 6.6-2.5c2.2-1.7 4.4-2.5 6.6-2.5'/%3E%3Cpath d='M6 21 13 13l6 5 6-8 9 11'/%3E%3Cpath d='M27 11.5h7'/%3E%3C/svg%3E");
}

.exp-icon[data-icon-token="church"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%2363B142' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 31V20l9-7 9 7v11Z'/%3E%3Cpath d='M16 31v-6h8v6'/%3E%3Cpath d='M25 20V11h5v20'/%3E%3Cpath d='M27.5 8V4.5'/%3E%3Cpath d='M25.5 6.3h4'/%3E%3C/svg%3E");
}

.exp-icon[data-icon-token="photo"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23D1415F' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='10' width='28' height='20' rx='4'/%3E%3Cpath d='M14 10 16 7h8l2 3'/%3E%3Ccircle cx='25.5' cy='18' r='3.2'/%3E%3Cpath d='m10 27 6-7 5 5 3-3 6 5'/%3E%3C/svg%3E");
}

.exp-icon[data-icon-token="fortress"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23C79A2B' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 31V16h4v-4h4v4h6v-4h4v4h4v15Z'/%3E%3Cpath d='M14 12V9h2.5v3M23.5 12V9H26v3'/%3E%3Cpath d='M17 31v-7a3 3 0 0 1 6 0v7'/%3E%3Cpath d='M9 31h22'/%3E%3C/svg%3E");
}

.exp-icon[data-icon-token="hike"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23003366' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 31c4-8 8.5-13.5 13.5-20L26 18l8-10 2 23'/%3E%3Cpath d='M16 31c2.2-3.4 4.6-6.4 7-8.9'/%3E%3Cpath d='M11 31h18'/%3E%3C/svg%3E");
}

.exp-icon[data-icon-token="flora"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%2363B142' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 31V15'/%3E%3Cpath d='M20 18c-5.5 0-9-3.5-9-9 5.5 0 9 3.5 9 9Z'/%3E%3Cpath d='M20 23c5.5 0 9-3.5 9-9-5.5 0-9 3.5-9 9Z'/%3E%3Cpath d='M20 31c-4 0-7-2.4-8.5-6.5'/%3E%3Cpath d='M20 28c4.3 0 7.1-2.5 8.5-6.5'/%3E%3C/svg%3E");
}

.exp-card:nth-child(1) .exp-icon {
    background: rgba(0, 174, 239, 0.1);
}

.exp-card:nth-child(2) .exp-icon {
    background: rgba(99, 177, 66, 0.1);
}

.exp-card:nth-child(3) .exp-icon {
    background: rgba(209, 65, 95, 0.1);
}

.exp-card:nth-child(4) .exp-icon {
    background: rgba(253, 185, 19, 0.1);
}

.exp-card:nth-child(5) .exp-icon {
    background: rgba(0, 51, 102, 0.08);
}

.exp-card:nth-child(6) .exp-icon {
    background: rgba(0, 174, 239, 0.1);
}

.exp-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.exp-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* ===========================
   INFO SECTION
   =========================== */
#info {
    padding: 100px 0;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

#info::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.06);
    pointer-events: none;
}

#info .section-title {
    color: white;
}

#info .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

#info .section-tag {
    color: var(--color-yellow);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px 28px;
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: var(--color-yellow);
}

.info-card-icon::before {
    content: '';
    width: 28px;
    height: 28px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.info-card-icon[data-icon-token="clock"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FDB913' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.5'/%3E%3Cpath d='M12 7.5v5l3.5 2'/%3E%3C/svg%3E");
}

.info-card-icon[data-icon-token="ticket"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FDB913' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 7h14v3a2 2 0 0 0 0 4v3H5v-3a2 2 0 0 0 0-4V7Z'/%3E%3Cpath d='M12 7v10' stroke-dasharray='2 2'/%3E%3C/svg%3E");
}

.info-card-icon[data-icon-token="tips"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FDB913' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 18c1.5 0 2.5-1 3.5-2.5L15 12a2.5 2.5 0 0 0-3.5-3.5L8 12H6.5A2.5 2.5 0 0 0 4 14.5V18h4Z'/%3E%3Cpath d='M13.5 8.5 16 6a1.8 1.8 0 1 1 2.5 2.5L16 11'/%3E%3C/svg%3E");
}

.info-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.info-list {
    list-style: none;
}

.info-list li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '→';
    color: var(--color-red);
    flex-shrink: 0;
    font-weight: 700;
}

/* ===========================
   WEATHER SECTION
   =========================== */
#weather {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4ff 0%, #f0faff 100%);
}

#weather .section-tag {
    color: var(--color-blue);
}

.weather-widget {
    max-width: 640px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 48px rgba(0, 51, 102, 0.12);
    overflow: hidden;
}

.weather-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, #003d5c 100%);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.weather-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.weather-location span {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.weather-temp {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-red);
}

.weather-temp sup {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

.weather-desc {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 6px;
    text-transform: capitalize;
}

.weather-icon-area {
    font-size: 80px;
    line-height: 1;
    text-align: center;
}

.weather-body {
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.weather-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weather-detail .detail-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-navy);
}

.weather-detail .detail-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

.weather-footer {
    padding: 0 32px 20px;
    font-size: 12px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.weather-footer button {
    background: none;
    color: var(--color-blue);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    padding: 4px;
    transition: color var(--transition);
}

.weather-footer button:hover {
    color: var(--color-navy);
}

.weather-loading {
    text-align: center;
    padding: 60px;
    color: var(--color-text-light);
}

.weather-loading .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-light-gray);
    border-top-color: var(--color-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.weather-error {
    text-align: center;
    padding: 48px 32px;
}

.weather-error .error-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.weather-error p {
    color: var(--color-text-light);
    font-size: 14px;
}

/* ===========================
   QR / PRIORITY PASS SECTION
   =========================== */
#qr {
    padding: 100px 0;
    background: var(--color-white);
}

#qr .section-tag {
    color: var(--color-red);
}

.qr-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.qr-form-panel {
    display: flex;
    flex-direction: column;
}

.qr-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-off-white);
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: #aabbc8;
}

.form-input:focus {
    border-color: var(--color-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.form-input.filled {
    border-color: var(--color-green);
    background: white;
}

.btn-generate {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--color-red) 0%, #b8384f 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(209, 65, 95, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.btn-generate .qr-icon {
    color: white;
}

.btn-generate:disabled {
    background: linear-gradient(135deg, #ccc 0%, #bbb 100%);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.65;
}

.btn-generate:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(209, 65, 95, 0.45);
}

.qr-preview-panel {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
}

.qr-card {
    background: var(--color-off-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition);
}

.qr-card-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, #003d5c 100%);
    padding: 28px;
    text-align: center;
    color: white;
}

.qr-card-header .pass-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 6px;
}

.qr-card-header .pass-title {
    font-size: 1.3rem;
    font-weight: 800;
}

.qr-card-header .pass-subtitle {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 4px;
}

.qr-body {
    padding: 32px;
    text-align: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border: 3px dashed var(--color-light-gray);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-text-light);
}

.qr-placeholder .ph-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(99, 122, 143, 0.52);
    opacity: 1;
}

.qr-placeholder p {
    font-size: 13px;
    font-weight: 500;
}

#qr-image {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.qr-person-name {
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
}

.qr-date {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 4px;
}

.qr-card-footer {
    padding: 0 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--color-green);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
    box-shadow: 0 3px 12px rgba(99, 177, 66, 0.35);
}

.btn-download:hover {
    background: #549a37;
    transform: translateY(-1px);
}

.btn-download:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
    transform: none;
}

.btn-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: transparent;
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 13px;
    border-radius: 10px;
    border: 2px solid var(--color-light-gray);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}

.btn-reset:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.btn-reset:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Success animation */
@keyframes qrReveal {
    from {
        transform: scale(0.8) rotateY(20deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
}

.qr-revealed {
    animation: qrReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--color-dark-gray);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 5% 32px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
    color: white;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-red);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-bottom a {
    color: var(--color-red);
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        display: none;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qr-container {
        grid-template-columns: 1fr;
    }

    .qr-preview-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        display: none;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .about-facts {
        grid-template-columns: 1fr;
    }

    .weather-body {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .weather-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .weather-body {
        grid-template-columns: repeat(2, 1fr);
    }
}
