:root {
    --vision-surface: #ffffff;
    --vision-ink: #1e2024;
    --focus-tone: #fbfbfd;
    --optic-vibe: #FF4757;
    --retina-pop: #2ED573;
    --lens-dark: #121215;
    --optic-gradient: linear-gradient(135deg, #FF4757 0%, #FFA502 100%);
    --font-display: 'Nunito', sans-serif;
    --font-body: 'Mulish', sans-serif;
    --pad-spacious: 16dvh;
    --rad-soft: 16px;
    --shadow-deep: 0 15px 35px -5px rgba(0,0,0,0.15);
    --shadow-heavy: 0 20px 40px -10px rgba(0,0,0,0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--vision-ink);
    background-color: var(--vision-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ================= HEADER (Preset C) ================= */
.optic-top-bar {
    background: var(--optic-vibe);
    color: var(--vision-surface);
    position: relative;
    z-index: 100;
}

.optic-wrap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.optic-logo-zone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.optic-logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
}

.optic-navigation-zone {
    display: flex;
    gap: 30px;
}

.optic-nav-link {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: opacity 0.3s ease;
}

.optic-nav-link:hover {
    opacity: 0.8;
}

/* Hamburger Setup */
.optic-hamburger-input {
    display: none;
}

.optic-hamburger-label {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.optic-hamburger-label span {
    width: 25px;
    height: 3px;
    background: var(--vision-surface);
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .optic-hamburger-label {
        display: flex;
    }
    
    .optic-navigation-zone {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--optic-vibe);
        flex-direction: column;
        align-items: center;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .optic-hamburger-input:checked ~ .optic-navigation-zone {
        max-height: 300px;
        padding: 30px 0;
    }
}

/* ================= TYPOGRAPHY ================= */
.ocular-main-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.ocular-second-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ocular-third-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.ocular-sub-heading {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
}

.ocular-body-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ================= BUTTONS ================= */
.ocular-action-trigger {
    display: inline-block;
    background: var(--vision-surface);
    color: var(--optic-vibe);
    font-weight: 700;
    padding: 18px 40px;
    border-radius: var(--rad-soft);
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-deep);
    border: none;
    cursor: pointer;
}

.ocular-action-trigger:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.ocular-action-pill {
    display: inline-block;
    background: var(--optic-vibe);
    color: var(--vision-surface);
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 999px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.ocular-action-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.4);
}

/* ================= HERO (Preset C) ================= */
.ocular-hero-canvas {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--pad-spacious) 5%;
    position: relative;
    overflow: hidden;
    color: var(--vision-surface);
}

.ocular-hero-huge-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    font-family: var(--font-display);
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.ocular-hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
}

.ocular-hero-shapes {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.ocular-shape-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 30px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 0;
    left: 0;
}

.ocular-shape-rect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.15);
    bottom: 20px;
    right: 20px;
    border-radius: var(--rad-soft);
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .ocular-hero-content { width: 100%; text-align: center; }
    .ocular-hero-shapes { display: none; }
    .ocular-sub-heading { margin: 0 auto 40px auto; }
}

.ocular-minimal-hero {
    min-height: 60vh;
    justify-content: center;
}

.ocular-center-align {
    width: 100%;
    text-align: center;
}

/* ================= CONTENT CLIP (Preset C) ================= */
.ocular-clip-ribbon {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8dvh 0;
}

.ocular-clip-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    z-index: 1;
}

.ocular-clip-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ocular-clip-info {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.ocular-reverse-clip .ocular-clip-info {
    justify-content: flex-end;
}

.ocular-clip-surface {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 40px;
    max-width: 600px;
    border-radius: var(--rad-soft);
    box-shadow: var(--shadow-deep);
}

/* ================= NUM GRID / FEATURES (Preset C) ================= */
.ocular-num-grid {
    padding: var(--pad-spacious) 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    background: var(--focus-tone);
}

.ocular-num-item {
    position: relative;
}

.ocular-fat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--optic-vibe);
    line-height: 1;
    margin-bottom: 20px;
}

/* ================= PROCESS TRACK (Preset C) ================= */
.ocular-process-track {
    padding: var(--pad-spacious) 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.ocular-process-step {
    flex: 1;
    position: relative;
    text-align: center;
}

.ocular-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    width: 100%;
    height: 4px;
    background: var(--optic-vibe);
    z-index: 1;
}

.ocular-process-node {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.ocular-node-filled {
    background: var(--optic-vibe);
    color: var(--vision-surface);
}

.ocular-node-outline {
    background: var(--vision-surface);
    border: 4px solid var(--optic-vibe);
    color: var(--optic-vibe);
}

.ocular-step-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .ocular-process-track { flex-direction: column; gap: 60px; }
    .ocular-process-step:not(:last-child)::after { display: none; }
}

/* ================= CTA STRIP (Preset C) ================= */
.ocular-dark-cta {
    background: var(--lens-dark);
    color: var(--vision-surface);
    padding: var(--pad-spacious) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.ocular-immediate-cta {
    padding: 8dvh 5%;
}

.ocular-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    margin: 0;
}

@media (max-width: 768px) {
    .ocular-dark-cta { flex-direction: column; text-align: center; }
}

/* ================= EXPERT LAYOUT ================= */
.ocular-split-layout {
    display: flex;
    padding: var(--pad-spacious) 5%;
    align-items: center;
    gap: 60px;
    background: var(--focus-tone);
}

.ocular-split-text {
    flex: 55%;
}

.ocular-split-img {
    flex: 45%;
}

.ocular-split-img img {
    border-radius: var(--rad-soft);
    box-shadow: var(--shadow-heavy);
}

.ocular-stat-strip {
    display: flex;
    flex-wrap: wrap;
    padding: 8dvh 5%;
    background: var(--vision-surface);
    gap: 30px;
    justify-content: space-around;
}

.ocular-stat-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.ocular-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--optic-vibe);
}

.ocular-stat-label {
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .ocular-split-layout { flex-direction: column; }
}

/* ================= RESERVE LAYOUT ================= */
.ocular-booking-layout {
    display: flex;
    padding: var(--pad-spacious) 5%;
    gap: 60px;
    background: var(--focus-tone);
}

.ocular-form-area {
    flex: 60%;
}

.ocular-info-area {
    flex: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ocular-form-heading {
    color: var(--optic-vibe);
}

.ocular-text-link {
    color: var(--optic-vibe);
    font-weight: 600;
    text-decoration: underline;
}

.ocular-input-form {
    background: var(--vision-surface);
    padding: 40px;
    border-radius: var(--rad-soft);
    box-shadow: var(--shadow-deep);
    margin-top: 30px;
}

.ocular-input-group {
    margin-bottom: 25px;
}

.ocular-input-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.ocular-text-field, .ocular-text-area {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.ocular-text-field:focus, .ocular-text-area:focus {
    border-color: var(--optic-vibe);
    outline: none;
}

.ocular-text-area {
    height: 120px;
    resize: vertical;
}

.ocular-checkbox-group {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.ocular-submit-trigger {
    width: 100%;
    background: var(--optic-vibe);
    color: var(--vision-surface);
    font-weight: 700;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.ocular-submit-trigger:hover {
    background: #ff2e43;
}

.ocular-info-card {
    background: var(--vision-surface);
    padding: 30px;
    border-radius: var(--rad-soft);
    box-shadow: var(--shadow-deep);
}

.ocular-info-card svg {
    width: 40px;
    height: 40px;
    color: var(--optic-vibe);
    margin-bottom: 15px;
}

.ocular-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.ocular-card-desc {
    margin-bottom: 15px;
    color: #666;
}

.ocular-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.ocular-card-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--optic-vibe);
    color: var(--vision-surface);
    border-radius: 50%;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .ocular-booking-layout { flex-direction: column; }
    .ocular-input-form { padding: 25px; }
}

/* ================= FAQ ZONE ================= */
.ocular-faq-zone {
    padding: var(--pad-spacious) 5%;
    max-width: 900px;
    margin: 0 auto;
}

.ocular-faq-item {
    background: var(--focus-tone);
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--optic-vibe);
}

.ocular-faq-question {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.ocular-faq-question::-webkit-details-marker {
    display: none;
}

.ocular-faq-answer {
    margin-top: 15px;
    color: #555;
}

/* ================= LEGAL PAGES ================= */
.ocular-legal-page {
    padding: var(--pad-spacious) 5%;
    background: var(--focus-tone);
    min-height: 100vh;
}

.ocular-legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--vision-surface);
    padding: 60px;
    border-radius: var(--rad-soft);
    box-shadow: var(--shadow-deep);
}

@media (max-width: 768px) {
    .ocular-legal-content { padding: 30px; }
}

/* ================= THANK YOU PAGE ================= */
.ocular-thank-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 5%;
}

.ocular-thank-box {
    background: var(--vision-surface);
    padding: 60px 40px;
    border-radius: var(--rad-soft);
    box-shadow: var(--shadow-heavy);
    text-align: center;
    max-width: 600px;
}

/* ================= FOOTER ================= */
.optic-bottom-bar {
    background: var(--lens-dark);
    color: #a0a0a5;
    padding: 60px 5% 30px 5%;
}

.optic-footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.optic-footer-layout .optic-logo-text {
    color: var(--vision-surface);
}

.optic-footer-links {
    display: flex;
    gap: 20px;
}

.optic-footer-links a {
    transition: color 0.3s;
}

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

.optic-disclaimer-zone {
    text-align: center;
    font-size: 0.9rem;
}

.optic-disclaimer-zone p {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .optic-footer-layout { flex-direction: column; gap: 30px; }
    .optic-footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ================= COOKIE BANNER ================= */
.optic-cookie-zone {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--vision-surface);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    padding: 20px 5%;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.optic-cookie-zone p {
    font-weight: 600;
    margin-right: 20px;
}

.optic-cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.optic-cookie-actions .ocular-action-trigger {
    padding: 10px 25px;
    font-size: 1rem;
    background: var(--optic-vibe);
    color: #fff;
}

.optic-cookie-actions .ocular-action-pill {
    padding: 10px 25px;
    font-size: 1rem;
    background: #e0e0e0;
    color: #333;
}

@media (max-width: 768px) {
    .optic-cookie-zone { flex-direction: column; text-align: center; gap: 15px; }
    .optic-cookie-zone p { margin-right: 0; }
}