/* ── MINIMALIST DESIGN SYSTEM ─────────────────── */
:root {
    --bg: #FFFFFF;
    --bg-warm: #FAF9F6;
    --bg-dark: #0A0A0A;
    --text: #121212;
    --text-muted: #666666;
    --accent: #C97B2E;
    --accent-light: #FDF8F3;
    --border: rgba(0,0,0,0.06);
    --font-display: 'Sen', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
::selection { background: var(--accent); color: white; }
body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: var(--font-body); 
    font-size: 16px; 
    line-height: 1.6; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 80px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo img { height: 42px; transition: all 0.4s; }

/* Transparent State (Only for Hero Sliders) */
.nav.nav-transparent {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding: 32px 80px;
}
.nav.nav-transparent .nav-logo img { height: 56px; filter: brightness(0) invert(1); }

/* Scrolled State for Transparent Nav */
.nav.nav-transparent.scrolled {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
    padding: 20px 80px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.nav.nav-transparent.scrolled .nav-logo img { height: 42px; filter: none; }

.nav-links { display: flex; align-items: stretch; gap: 40px; list-style: none; height: 100%; }
.nav-links > li { display: flex; align-items: center; }
#navToggle { display: none; background: none; border: none; cursor: pointer; font-size: 32px; color: var(--text); }
.nav.nav-transparent #navToggle { color: white; }
.nav.nav-transparent.scrolled #navToggle { color: var(--text); }

@media (max-width: 1100px) {
    .nav-links { display: none; }
    #navToggle { display: block; }
}

.nav-links a {
    color: var(--text); text-decoration: none;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}
.nav.nav-transparent .nav-links a {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.nav.nav-transparent.scrolled .nav-links a {
    color: var(--text);
    text-shadow: none;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: white !important; color: black !important;
    padding: 14px 28px !important; border-radius: 0; font-size: 10px !important;
    transition: all 0.3s !important;
    text-shadow: none !important;
}
.nav-cta::after { display: none !important; }
.nav.scrolled .nav-cta {
    background: var(--text) !important; color: white !important;
}
.nav-cta:hover { transform: translateY(-2px); opacity: 1 !important; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; height: 100vh; overflow: hidden; background: #000; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: transform 8s ease; }
.hero-slide.active .slide-bg { transform: scale(1.05); }
.slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.slide-content { position: absolute; left: 80px; bottom: 120px; max-width: 700px; z-index: 10; color: white; }
.slide-eyebrow { font-size: 10px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; display: block; }
.slide-heading { font-family: var(--font-display); font-size: clamp(60px, 8vw, 110px); font-weight: 400; line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 32px; }
.slide-heading em { font-style: normal; color: var(--accent); }
.slide-actions { display: flex; align-items: center; gap: 32px; }
.btn-primary { background: white; color: black; padding: 18px 36px; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: transform 0.3s; }
.btn-primary:hover { transform: translateY(-2px); }

/* Hero Navigation */
.slider-dots { position: absolute; bottom: 120px; right: 80px; display: flex; flex-direction: column; gap: 16px; }
.sdot { width: 1px; height: 40px; background: rgba(255,255,255,0.2); border: none; cursor: pointer; transition: background 0.3s; position: relative; }
.sdot.active { background: white; }
.sdot::after { content: attr(data-target); position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: white; font-size: 10px; opacity: 0; transition: opacity 0.3s; }
.sdot.active::after { opacity: 0.5; }

/* ── MEGA MENU ── */
.nav-links li { position: static; } /* Essential for full-width mega menu */
.mega-trigger:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-menu {
    position: absolute; top: 100%; left: 0; right: 0; 
    background: rgba(255,255,255,0.99); 
    backdrop-filter: blur(30px);
    border-top: 1px solid var(--border); 
    border-bottom: 2px solid var(--accent);
    padding: 0; 
    display: grid; grid-template-columns: 1fr 1fr 1fr 1.8fr; 
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 99;
    box-shadow: 0 50px 100px rgba(0,0,0,0.12);
    overflow: hidden;
}
.mega-col { padding: 60px 40px; border-right: 1px solid var(--border); }
.mega-col:last-child { border-right: none; padding: 0; }

.mega-trigger { position: relative; }
.mega-trigger::after { 
    content: ''; position: absolute; bottom: -20px; left: 0; right: 0; height: 20px; 
}
 /* Invisible bridge to prevent hover loss */
.mega-col-h { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 32px; display: block; position: relative; }
.mega-col-h::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 20px; height: 2px; background: var(--accent); }

.mega-list { list-style: none; }
.mega-list li { margin-bottom: 16px; }
.mega-list a { 
    color: var(--text-muted) !important; text-decoration: none; font-size: 15px; font-weight: 500; 
    transition: all 0.3s; display: block;
}
.mega-list a:hover { color: var(--accent); transform: translateX(5px); }
.mega-feat { position: relative; height: 100%; min-height: 400px; overflow: hidden; }
.mega-feat img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.mega-feat:hover img { transform: scale(1.1); }
.mega-feat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; color: white; }
.mega-feat-h { font-family: var(--font-display); font-size: 28px; margin-bottom: 8px; font-weight: 400; line-height: 1; }
.mega-feat-p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.mega-feat-btn { display: inline-block; font-size: 10px; font-weight: 800; text-transform: uppercase; color: white; text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 4px; transition: color 0.3s; }
.mega-feat-btn:hover { color: var(--accent); }

/* ── SECTION COMMON ── */
.section-wrap { padding: 160px 80px; }
.section-head { margin-bottom: 80px; max-width: 800px; }
.section-label { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 400; line-height: 1; letter-spacing: -0.03em; margin-bottom: 24px; }
.section-desc { font-size: 18px; color: var(--text-muted); line-height: 1.6; max-width: 600px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.svc { border-bottom: 1px solid var(--border); padding-bottom: 40px; transition: border-color 0.3s; }
.svc:hover { border-color: var(--accent); }
.svc-img { width: 100%; height: 280px; object-fit: cover; margin-bottom: 32px; filter: grayscale(100%); transition: filter 0.4s; }
.svc:hover .svc-img { filter: grayscale(0%); }
.svc-name { font-family: var(--font-display); font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.svc-desc { font-size: 15px; color: var(--text-muted); }

/* ── TOUR PACKAGES ── */
.pkg-bg { background: var(--bg-warm); }
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.pkg-card { 
    background: white; 
    border-radius: 0; /* Keeping with the square/minimalist theme of the site but adding depth */
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.pkg-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--border);
}

.pkg-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.pkg-card:hover .pkg-img { 
    transform: scale(1.1); 
}

.pkg-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--text);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.pkg-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pkg-meta i {
    color: var(--accent);
    font-size: 14px;
}

.pkg-name { 
    font-family: var(--font-display);
    font-size: 24px; 
    font-weight: 400; 
    line-height: 1.2;
    margin-bottom: 24px; 
    color: var(--text);
    transition: color 0.3s;
}

.pkg-card:hover .pkg-name {
    color: var(--accent);
}

.pkg-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.pkg-price-wrap {
    display: flex;
    flex-direction: column;
}

.pkg-price-lbl {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pkg-price { 
    font-size: 22px; 
    font-weight: 400; 
    font-family: var(--font-display); 
    color: var(--text);
}

.pkg-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 18px;
}

.pkg-card:hover .pkg-arrow {
    background: var(--text);
    color: white;
    border-color: var(--text);
    transform: translateX(5px);
}

/* ── DESTINATIONS ── */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.dest-card { background: white; padding: 60px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.dest-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 24px; }
.dest-name { font-family: var(--font-display); font-size: 32px; margin-bottom: 8px; }
.dest-tag { font-size: 12px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; }
.tcard { padding: 0; }
.tcard-quote { font-family: var(--font-display); font-size: 32px; font-weight: 400; line-height: 1.2; margin-bottom: 40px; }
.tcard-author { display: flex; align-items: center; gap: 16px; }
.tcard-avatar { width: 48px; height: 48px; border-radius: 50%; filter: grayscale(1); }

/* ── ABOUT US ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-img-frame { position: relative; padding-bottom: 125%; background: var(--bg-warm); overflow: hidden; }
.about-img-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-content { padding-right: 40px; }

/* ── TRUST & CAPABILITY ── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 40px; }
.proc-item { border-left: 1px solid var(--border); padding-left: 32px; }
.proc-num { font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 20px; display: block; }
.proc-title { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.proc-desc { font-size: 15px; color: var(--text-muted); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 80px; }
.stat-item { background: white; padding: 60px 40px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 48px; line-height: 1; margin-bottom: 8px; color: var(--text); }
.stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

.creds-minimal { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cred-unit { display: flex; align-items: center; gap: 12px; }
.cred-unit i { font-size: 24px; color: var(--accent); }
.cred-txt { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4; }

/* ── VISA & PARTNERS ── */
.visa-minimal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 40px; }
.visa-item { border-bottom: 1px solid var(--border); padding-bottom: 32px; }
.visa-country { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.visa-time { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 0.05em; }

.partners-minimal { padding: 100px 80px; text-align: center; border-top: 1px solid var(--border); }
.partners-label { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 40px; }
.partners-flex { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; opacity: 0.5; filter: grayscale(1); }
.partner-tag { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.05em; }

/* ── CTA ── */
.cta-minimal { background: var(--bg-warm); padding: 160px 80px; text-align: center; }
.cta-minimal h2 { font-family: var(--font-display); font-size: 56px; line-height: 1.1; margin-bottom: 40px; }
.cta-minimal .btn-primary { background: var(--text); color: white; display: inline-flex; align-items: center; gap: 12px; }

/* ── FLOATING WHATSAPP ── */
.wa-float {
    position: fixed; bottom: 40px; right: 40px;
    width: 60px; height: 60px;
    background: #25D366; color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wa-float:hover { transform: scale(1.1) translateY(-5px); }

/* FAQ */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 28px 0; cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--text); transition: color 0.3s; }
.faq-q:hover { color: var(--accent); }
.faq-q i { font-size: 14px; transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 28px; font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* RICH CONTENT */
.content-block { max-width: 800px; }
.content-block h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 16px; }
.content-block p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.content-block ul { list-style: none; margin-bottom: 24px; }
.content-block li { padding: 8px 0; padding-left: 20px; position: relative; font-size: 15px; color: var(--text-muted); }
.content-block li::before { content: ''; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* SVC EXPANDED */
.svc-expanded { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 12px; }

/* ── FOOTER ── */
footer { padding: 120px 80px 40px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
.footer-logo { height: 24px; margin-bottom: 32px; }
.footer-about { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.footer-col-h { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--text); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s, transform 1s; }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .nav, .section-wrap, footer { padding-left: 40px; padding-right: 40px; }
    .mega-menu { padding: 60px 40px; gap: 40px; }
    .services-grid, .pkg-grid, .visa-minimal-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
    /* Mobile Nav */
    #navToggle { display: block; }
    .nav-links {
        display: flex; flex-direction: column;
        position: fixed; top: 0; right: 0; bottom: 0;
        width: 300px; background: white;
        padding: 100px 40px; gap: 32px;
        z-index: 1000;
        box-shadow: -20px 0 60px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        opacity: 1; visibility: visible; /* Override hidden states */
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a { color: var(--text) !important; text-shadow: none !important; font-size: 14px; }
    .nav-logo img { height: 32px !important; filter: none !important; }
    .nav { padding: 15px 25px !important; background: white !important; }
    
    .mega-trigger:hover .mega-menu { display: none; } /* Hide mega menu on mobile for simplicity */
    .mega-trigger i { display: none; }
}

@media (max-width: 900px) {
    .about-split { grid-template-columns: 1fr; gap: 40px; }
    .about-content { order: -1; padding-right: 0; }
    .process-grid { grid-template-columns: 1fr; gap: 32px; }
    .proc-item { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 32px; }
    .stat-item { padding: 40px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-wrap { padding: 80px 24px; }
    .section-head { margin-bottom: 48px; }
    .section-title { font-size: 38px; }
    
    .slide-content { left: 24px; bottom: 80px; padding-right: 24px; }
    .slide-heading { font-size: 48px; }
    .slider-dots { display: none; }
    
    .services-grid, .pkg-grid, .dest-grid, .testi-grid, .visa-minimal-grid, .footer-top { grid-template-columns: 1fr; }
    
    .svc-img { height: 220px; }
    .pkg-card { padding: 16px; }
    .tcard-quote { font-size: 24px; }
    
    .cta-minimal { padding: 80px 24px; }
    .cta-minimal h2 { font-size: 32px; }
    
    .creds-minimal { gap: 32px; padding: 40px 0; }
    .partners-flex { gap: 32px; }
    
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
    .wa-float { width: 50px; height: 50px; bottom: 24px; right: 24px; font-size: 24px; }
}

/* ── FOOTER STYLES ── */
footer { background: var(--bg-dark); color: rgba(255,255,255,0.62); padding: 80px 80px 40px; border-top: 1px solid var(--border); }
.footer-logo { height: 28px; filter: brightness(0) invert(1); opacity: 0.55; margin-bottom: 24px; display: block; }
.footer-about { font-size: 14px; line-height: 1.8; max-width: 320px; margin-bottom: 32px; color: rgba(255,255,255,0.5); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: rgba(255,255,255,0.3); font-size: 18px; text-decoration: none; transition: color 0.3s; }
.footer-socials a:hover { color: white; }
.footer-col-h { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: white; margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* MOBILE OVERLAY */
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    opacity: 0; visibility: hidden; transition: 0.4s; z-index: 900;
    backdrop-filter: blur(4px);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
