/**
 * NESTPRO - Premium Corporate Website
 * Main Stylesheet
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Brand Colors */
    --primary: #E86A2A;
    --primary-dark: #C75620;
    --primary-light: #F08850;
    --primary-rgb: 232, 106, 42;
    
    --gold: #D4A853;
    --gold-dark: #B8903E;
    --gold-light: #E8C478;
    --gold-rgb: 212, 168, 83;
    
    --navy: #0A1628;
    --navy-light: #132240;
    --navy-rgb: 10, 22, 40;
    
    --charcoal: #1A1A2E;
    --charcoal-light: #252542;
    --charcoal-rgb: 26, 26, 46;
    
    --emerald: #2ECC71;
    --emerald-rgb: 46, 204, 113;
    
    --sky: #3498DB;
    --sky-rgb: 52, 152, 219;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-grey: #F5F5F7;
    --mid-grey: #E0E0E0;
    --grey: #999999;
    --dark-grey: #666666;
    --text: #333333;
    --text-light: #777777;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--gold));
    --gradient-dark: linear-gradient(135deg, var(--navy), var(--charcoal));
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    --gradient-hero: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(26,26,46,0.75));
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--primary));
    --gradient-luxury: linear-gradient(135deg, #0A1628 0%, #1A1A2E 50%, #132240 100%);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Outfit', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    
    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3rem;
    --fs-5xl: 3.5rem;
    --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-section: clamp(4rem, 8vw, 8rem);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 50%;
    --radius-pill: 100px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 30px rgba(var(--primary-rgb), 0.3);
    --shadow-gold: 0 0 30px rgba(var(--gold-rgb), 0.3);
    --shadow-card: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-glass: 0 8px 32px rgba(0,0,0,0.1);
    
    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --glass-blur: 16px;
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: 0.2s var(--ease);
    --transition: 0.3s var(--ease);
    --transition-slow: 0.5s var(--ease);
    
    /* Z-Index */
    --z-preloader: 99999;
    --z-header: 10000;
    --z-float: 9999;
    --z-modal: 99998;
    --z-overlay: 99997;
    
    /* Layout */
    --container: 1280px;
    --container-sm: 960px;
    --container-lg: 1400px;
    --header-height: 80px;
    --header-height-scrolled: 65px;
}

/* ============================================
   FONT IMPORTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Buttons */
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Form Elements */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
    line-height: 1.8;
}

.lead {
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: var(--dark-grey);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-sm {
    max-width: var(--container-sm);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-lg {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-section) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    position: relative;
    padding: 0 var(--space-xl);
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-subtitle::before { left: 0; }
.section-subtitle::after { right: 0; }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: var(--fs-md);
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-accent);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.5);
    color: var(--navy);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-sm {
    padding: 10px 24px;
    font-size: var(--fs-xs);
}

.btn-lg {
    padding: 18px 42px;
    font-size: var(--fs-base);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-body {
    padding: var(--space-xl);
}

.card-image {
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--navy-rgb), 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover .card-overlay {
    opacity: 1;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
    padding: var(--space-xl);
    transition: all var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
    padding: var(--space-xl);
    transition: all var(--transition);
}

.glass-card-light:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: var(--space-lg);
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--font-accent);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: var(--fs-base);
    color: var(--text);
    background: var(--light-grey);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-control::placeholder {
    color: var(--grey);
}

.form-control.error {
    border-color: #e74c3c;
    background: #fef2f2;
}

.form-error {
    font-size: var(--fs-xs);
    color: #e74c3c;
    margin-top: 4px;
    display: none;
}

.form-control.error + .form-error {
    display: block;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: var(--fs-xs);
    font-weight: 600;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.badge-success {
    background: rgba(var(--emerald-rgb), 0.1);
    color: var(--emerald);
}

.badge-warning {
    background: rgba(var(--gold-rgb), 0.15);
    color: var(--gold-dark);
}

.badge-info {
    background: rgba(var(--sky-rgb), 0.1);
    color: var(--sky);
}

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash-message {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    animation: slideInDown 0.4s var(--ease);
    position: relative;
}

.flash-success {
    background: rgba(var(--emerald-rgb), 0.1);
    border-left: 4px solid var(--emerald);
    color: #1a7a42;
}

.flash-error {
    background: #fef2f2;
    border-left: 4px solid #e74c3c;
    color: #991b1b;
}

.flash-warning {
    background: rgba(var(--gold-rgb), 0.1);
    border-left: 4px solid var(--gold);
    color: #8a6d2b;
}

.flash-info {
    background: rgba(var(--sky-rgb), 0.1);
    border-left: 4px solid var(--sky);
    color: #1e5a8a;
}

.flash-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
    background: none;
    border: none;
    color: inherit;
}

.flash-close:hover {
    opacity: 1;
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: var(--gradient-luxury);
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: var(--fs-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* Floating shapes in page header */
.page-header .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatShape 20s infinite ease-in-out;
}

.page-header .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    right: -50px;
}

.page-header .shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    bottom: -80px;
    left: -60px;
    animation-delay: -5s;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-nav {
    margin-top: var(--space-lg);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.6);
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255,255,255,0.3);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-grey { color: var(--grey); }
.text-light { color: var(--text-light); }

.bg-white { background: var(--white); }
.bg-light { background: var(--light-grey); }
.bg-navy { background: var(--navy); }
.bg-charcoal { background: var(--charcoal); }
.bg-gradient { background: var(--gradient-luxury); }

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

.w-100 { width: 100%; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.position-relative { position: relative; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-nav {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

.pagination {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--text);
    background: var(--light-grey);
    transition: all var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.page-dots {
    padding: 0 8px;
    color: var(--grey);
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-grey);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-pill);
    transition: width 1.5s var(--ease);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--light-grey) 25%, #e8e8e8 50%, var(--light-grey) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 16px;
}

.skeleton-image {
    height: 200px;
    width: 100%;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes slideInDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-10px, 20px) rotate(180deg); }
    75% { transform: translate(30px, 10px) rotate(270deg); }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s;
    transform: translate(-50%, -50%);
}

.custom-cursor.active {
    width: 40px;
    height: 40px;
    border-color: var(--gold);
    background: rgba(var(--primary-rgb), 0.1);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s;
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 20px;
    z-index: var(--z-float);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.cookie-consent p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: var(--fs-sm);
}

.cookie-consent .btn {
    flex-shrink: 0;
}
