:root {
    /* Color System */
    --bg-light: #F5F5F7;
    --bg-white: #FFFFFF;
    --bg-dark: #0B0B0F;
    
    /* Glass Surfaces */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-hover: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    
    /* Accents */
    --primary-dark: #0A2540;
    --primary-light: #1E3A5F;
    --accent-aqua: #4FD1C5;
    --accent-aqua-dark: #38B2AC;
    --accent-gold: #F6AD55;
    
    /* Text */
    --text-main: #1D1D1F;
    --text-muted: #6E6E73;
    
    /* Typography & Spacing */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 40px;
    
    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.3s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.bg-alt {
    background-color: var(--bg-white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 3rem; }
.w-100 { width: 100%; }

/* Glassmorphism Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

/* Custom Cursor */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.15) 0%, rgba(79, 209, 197, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
    transition: opacity 0.3s;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: white;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.3);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--primary-dark);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--bg-white);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--accent-aqua-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}
.btn-text:hover { color: var(--primary-dark); }

/* Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    width: 90%;
    max-width: 1000px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-slow);
}

.floating-nav.scrolled {
    top: 1rem;
    padding: 0.5rem 0.75rem 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
}

.nav-brand a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}
.nav-brand span { color: var(--accent-aqua-dark); }

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-aqua);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.65rem;
    gap: 4px;
}

.mobile-bottom-nav svg {
    width: 20px;
    height: 20px;
}

.mobile-bottom-nav a.active {
    color: var(--primary-dark);
}

.mobile-cta-inner {
    background: var(--primary-dark);
    color: white;
    padding: 8px;
    border-radius: 50%;
    transform: translateY(-8px);
    box-shadow: 0 4px 12px rgba(10,37,64,0.3);
}

@media (max-width: 800px) {
    .floating-nav { display: none; }
    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 80px; }
}

/* Inner Pages & Utilities */
.inner-hero {
    padding: 10rem 5% 4rem;
    background: linear-gradient(135deg, var(--primary-dark), #000);
    color: white;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.inner-hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.inner-hero p {
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-content h2 { font-size: 2rem; margin: 3rem 0 1rem; color: var(--primary-dark); }
.text-content h3 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--primary-dark); }
.text-content p { margin-bottom: 1.5rem; line-height: 1.8; color: var(--text-main); }
.text-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; line-height: 1.8; color: var(--text-main); }
.text-content li { margin-bottom: 0.5rem; }

.detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.fleet-specs {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0,0,0,0.03);
    border-radius: var(--radius-sm);
}

.fleet-specs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fleet-specs li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0.75rem;
    color: var(--text-muted);
}

.fleet-specs li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fleet-specs strong {
    color: var(--primary-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 6rem;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: slowPan 20s linear infinite alternate;
}

@keyframes slowPan {
    from { transform: scale(1.05) translate(0, 0); }
    to { transform: scale(1.1) translate(-2%, -2%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11,11,15,0.2), rgba(11,11,15,0.7));
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    color: white;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections General */
.page-section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* Yacht Cards */
.yacht-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.yacht-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
}

.yacht-img-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    margin-bottom: 1.5rem;
}

.yacht-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.yacht-card:hover .yacht-img {
    transform: scale(1.05);
}

.yacht-location-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.yacht-info h3 { font-size: 1.5rem; color: var(--primary-dark); }
.yacht-desc { font-size: 0.95rem; margin-bottom: 1rem; height: 2.85em; overflow: hidden; }

.yacht-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.yacht-specs span {
    font-size: 0.8rem;
    background: rgba(10, 37, 64, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    color: var(--text-muted);
}

.yacht-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.yacht-footer .price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
}
.yacht-footer .price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Bento Grid (Experiences) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    cursor: pointer;
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.bento-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.bento-item:hover .bento-bg {
    transform: scale(1.05);
}

.bento-content {
    position: relative;
    z-index: 2;
    color: white;
}

.bento-content h3 { color: white; margin-bottom: 0.5rem; }
.bento-content p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large, .bento-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .bento-large, .bento-wide { grid-column: span 1; grid-row: span 1; }
}

/* Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.dest-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.dest-image {
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.dest-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.dest-card:hover .dest-bg { transform: scale(1.08); }

.dest-info h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.dest-info h3 span { font-weight: 400; font-size: 0.9rem; color: var(--text-muted); }

.dest-details { list-style: none; }
.dest-details li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.dest-details li strong { color: var(--primary-dark); }

/* Pricing */
.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--accent-gold);
    transform: scale(1.02);
}

.premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1rem 0;
}
.price-amount span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.pricing-features {
    list-style: none;
    margin-top: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.pricing-features svg { width: 20px; height: 20px; color: var(--accent-aqua-dark); }

.addons-card {
    padding: 2rem;
    background: var(--primary-dark);
    color: white;
}
.addons-card h3 { color: white; margin-bottom: 1.5rem; }

.addon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.addon-item:last-child { border: none; margin: 0; padding: 0; }

.addon-icon { font-size: 1.5rem; }
.addon-item h4 { color: white; font-size: 1rem; margin: 0; }
.addon-item p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

@media (max-width: 1024px) {
    .pricing-container { grid-template-columns: 1fr 1fr; }
    .addons-card { grid-column: span 2; }
    .pricing-card.premium { transform: scale(1); }
}
@media (max-width: 768px) {
    .pricing-container { grid-template-columns: 1fr; }
    .addons-card { grid-column: span 1; }
}

/* Booking Wizard */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.booking-left {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
}

.booking-left h2 { color: white; }
.booking-left p { color: rgba(255,255,255,0.8); }

.wizard-progress {
    margin-top: auto;
    padding-top: 3rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 25%;
    background: var(--accent-aqua);
    transition: width var(--transition-slow);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.progress-steps span.active { color: white; font-weight: 600; }

.booking-right {
    padding: 4rem 3rem;
    background: var(--glass-bg);
}

.wizard-step {
    display: none;
    animation: fadeIn var(--transition-fast);
}
.wizard-step.active { display: block; }

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

/* Form Styles */
.radio-group, .checkbox-group {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.radio-card input, .checkbox-card input {
    display: none;
}

.card-content {
    display: block;
    padding: 1rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.radio-card input:checked + .card-content,
.checkbox-card input:checked + .card-content {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(10,37,64,0.15);
}

.input-group {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.floating-input {
    position: relative;
}

.floating-input input, .floating-input select, .floating-input textarea {
    width: 100%;
    padding: 1.25rem 1rem 0.5rem;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all var(--transition-fast);
    outline: none;
}

.floating-input label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    pointer-events: none;
}

.floating-input input:focus, 
.floating-input select:focus, 
.floating-input textarea:focus,
.floating-input input:not(:placeholder-shown),
.floating-input select:valid {
    border-color: var(--primary-light);
    background: white;
}

.floating-input input:focus + label, 
.floating-input select:focus + label,
.floating-input textarea:focus + label,
.floating-input input:not(:placeholder-shown) + label,
.floating-input select:valid + label {
    top: 0.35rem;
    font-size: 0.75rem;
    color: var(--primary-light);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

@media (max-width: 800px) {
    .booking-wrapper { grid-template-columns: 1fr; }
    .booking-left { padding: 3rem 2rem; }
    .booking-right { padding: 3rem 2rem; }
}

/* Gallery (Masonry) */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) { .masonry-grid { column-count: 2; } }
@media (max-width: 600px) { .masonry-grid { column-count: 1; } }

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
}

.contact-details { margin: 2rem 0; }
.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.detail-item .icon { font-size: 1.5rem; }
.detail-item p { margin: 0; color: var(--text-main); }

.social-links {
    display: flex;
    gap: 1rem;
}
.social-icon {
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.social-icon:hover { background: var(--primary-dark); color: white; }

.contact-form-container form {
    display: grid;
    gap: 1.5rem;
}

@media (max-width: 800px) {
    .contact-wrapper { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4rem;
}

.footer-brand h2 { color: white; }
.footer-brand span { color: var(--accent-aqua); }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 1rem; }

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-col h4 { color: white; margin-bottom: 1.5rem; font-size: 1rem; }
.link-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color var(--transition-fast);
}
.link-col a:hover { color: var(--accent-aqua); }

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

@media (max-width: 800px) {
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { flex-direction: column; gap: 2rem; }
}

/* Animations & Interactions */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}
.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg) translateY(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { transform: rotate(45deg) translateY(100%); }
}