/* SINTALIS - Global CSS */

/* ============================================
   CSS VARIABLES - COLOR PALETTE
   ============================================ */
:root {
    /* Primary Colors */
    --primary-color: #03366d;
    --primary-dark: #022a57;
    --primary-light: #0d4a8f;

    /* Accent Colors */
    --gold: #d4af37;
    --gold-light: #f4d87f;
    --gold-dark: #b8941f;

    /* Neutral Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --text-dark: #212529;
    --text-light: #6c757d;
    --text-white: #ffffff;

    /* Border & Shadow */
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(3, 54, 109, 0.08);
    --shadow-md: 0 4px 16px rgba(3, 54, 109, 0.12);
    --shadow-lg: 0 8px 32px rgba(3, 54, 109, 0.16);

    /* Effects */
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --border-radius-lg: 12px;

    /* Layout */
    --max-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
    padding-top: 80px; /* Compensate for fixed header */
    cursor: url('../cursors/cursor-pointer-sintalis.png'), auto;
    opacity: 0;
    transition: opacity 0.15s ease-in;
}

body.translations-ready {
    opacity: 1;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed);
    cursor: url('../cursors/cursor-hand-sintalis.png'), pointer;
}

button {
    font-family: inherit;
    cursor: url('../cursors/cursor-hand-sintalis.png'), pointer;
    border: none;
    background: none;
}

input, select, textarea {
    cursor: url('../cursors/cursor-hand-sintalis.png'), text;
}

input[type="submit"],
input[type="button"],
input[type="checkbox"],
input[type="radio"],
label {
    cursor: url('../cursors/cursor-hand-sintalis.png'), pointer;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ============================================
   HEADER NAVIGATION
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(3, 54, 109, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(3, 54, 109, 0.08);
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(3, 54, 109, 0.1);
    border-bottom-color: rgba(212, 175, 55, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 60%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(3, 54, 109, 0.03);
}

/* Active Page Link */
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(3, 54, 109, 0.05);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 60%;
}

/* Startups Special Link in Navigation */
.nav-startups-special {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-color) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.nav-startups-special::after {
    display: none !important;
}

.nav-startups-special::before {
    content: '✨';
    margin-right: 0.4rem;
    font-size: 0.9em;
}

.nav-startups-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Mobile Startups Button */
.mobile-nav-startups-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d87f 100%) !important;
    color: var(--primary-color) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: 1rem !important;
    display: block !important;
}

/* ============================================
   GTRANSLATE PREMIUM WIDGET STYLES
   ============================================ */

/* GTranslate Container - Positioned to the right */
.nav-container > .gtranslate_wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 15px;
    position: relative;
    z-index: 1001;
}

/* Style the GTranslate dropdown/selector - FORCED CONSISTENT STYLES */
.gtranslate_wrapper select,
.gtranslate_wrapper a,
.gtranslate_wrapper .gt_switcher,
.gtranslate_wrapper .gt-current-lang {
    font-size: 14px !important;
    padding: 10px 40px 10px 15px !important;
    border: 2px solid rgba(3, 54, 109, 0.15) !important;
    border-radius: 10px !important;
    background: rgba(3, 54, 109, 0.02) !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    outline: none !important;
    min-width: 100px !important;
    max-width: 150px !important;
    letter-spacing: 0.3px !important;
    text-decoration: none !important;
    display: inline-block !important;
    height: auto !important;
    line-height: normal !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.gtranslate_wrapper select:hover,
.gtranslate_wrapper a:hover,
.gtranslate_wrapper .gt_switcher:hover,
.gtranslate_wrapper .gt-current-lang:hover {
    border-color: var(--primary-color) !important;
    background-color: rgba(3, 54, 109, 0.05) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(3, 54, 109, 0.15) !important;
}

.gtranslate_wrapper select:focus,
.gtranslate_wrapper a:focus,
.gtranslate_wrapper .gt_switcher:focus,
.gtranslate_wrapper .gt-current-lang:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(3, 54, 109, 0.1) !important;
    background-color: white !important;
}

/* Flag icons styling */
.gtranslate_wrapper img {
    max-height: 16px !important;
    width: auto !important;
    vertical-align: middle !important;
    margin-right: 6px !important;
}

/* GTranslate Dropdown Menu - Fixed positioning to prevent header expansion */
.gtranslate_wrapper .gt_switcher_wrapper,
.gtranslate_wrapper .gt-lang-list,
.gtranslate_wrapper ul {
    position: absolute !important;
    left: auto !important;
    right: 0 !important;
    top: 100% !important;
    bottom: auto !important;
    margin-top: 5px !important;
    z-index: 9999 !important;
    background: white !important;
    border: 2px solid rgba(3, 54, 109, 0.15) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(3, 54, 109, 0.2) !important;
    min-width: 150px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
}

/* Dropdown items styling */
.gtranslate_wrapper .gt-lang-list a,
.gtranslate_wrapper ul li a {
    padding: 10px 15px !important;
    display: block !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    min-width: auto !important;
    max-width: none !important;
}

.gtranslate_wrapper .gt-lang-list a:hover,
.gtranslate_wrapper ul li a:hover {
    background: rgba(3, 54, 109, 0.08) !important;
    color: var(--primary-color) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile translate wrapper */
.mobile-translate-wrapper {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-translate-wrapper .gtranslate_wrapper {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-translate-wrapper .gtranslate_wrapper * {
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-translate-wrapper .gtranslate_wrapper select,
.mobile-translate-wrapper .gtranslate_wrapper a,
.mobile-translate-wrapper .gtranslate_wrapper .gt_switcher,
.mobile-translate-wrapper .gtranslate_wrapper .gt-current-lang {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    padding: 14px 35px 14px 15px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-translate-wrapper .gtranslate_wrapper select:hover,
.mobile-translate-wrapper .gtranslate_wrapper a:hover,
.mobile-translate-wrapper .gtranslate_wrapper .gt_switcher:hover,
.mobile-translate-wrapper .gtranslate_wrapper .gt-current-lang:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}

/* Mobile dropdown menu positioning */
.mobile-translate-wrapper .gtranslate_wrapper .gt-lang-list,
.mobile-translate-wrapper .gtranslate_wrapper ul {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    background: rgba(3, 54, 109, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.mobile-translate-wrapper .gtranslate_wrapper .gt-lang-list a,
.mobile-translate-wrapper .gtranslate_wrapper ul li a {
    color: white !important;
}

.mobile-translate-wrapper .gtranslate_wrapper .gt-lang-list a:hover,
.mobile-translate-wrapper .gtranslate_wrapper ul li a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
}

/* Force mobile translator to ALWAYS be visible - override GTranslate inline styles */
.mobile-menu .mobile-translate-wrapper,
.mobile-menu .mobile-translate-wrapper .gtranslate_wrapper,
.mobile-menu .mobile-translate-wrapper .gtranslate_wrapper > *,
.mobile-menu .mobile-translate-wrapper .gtranslate_wrapper select,
.mobile-menu .mobile-translate-wrapper .gtranslate_wrapper a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    position: relative !important;
}

.mobile-menu .mobile-translate-wrapper .gtranslate_wrapper {
    display: flex !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1999;
    position: relative;
    transition: opacity var(--transition-speed) ease;
    opacity: 1;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-color);
    padding: 2rem;
    transition: right var(--transition-speed);
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
    z-index: 10;
    line-height: 1;
}

.mobile-menu-close:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}

.mobile-menu-logo img {
    height: 50px;
    margin-bottom: 2rem;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.mobile-menu ul li a:hover {
    color: var(--gold-light);
}

.mobile-menu ul li a.active {
    color: var(--gold);
    font-weight: 600;
    position: relative;
}

.mobile-menu ul li a.active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
}

/* Mobile Language Selector */
.mobile-language-selector {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.mobile-lang-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold-light);
}

.mobile-lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-color);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    text-align: center;
    cursor: url('../cursors/cursor-hand-sintalis.png'), pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-gold {
    background: var(--gold);
    color: var(--primary-color);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description,
.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-speed);
}

.footer-section ul li a:hover {
    color: var(--gold-light);
}

.payment-methods {
    margin-top: 1.5rem;
}

.payment-methods h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.payment-methods p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ============================================
   MODALS - BASE STYLES
   ============================================ */
.demo-modal,
.calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 54, 109, 0.85);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.demo-modal.active,
.calendar-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content,
.demo-form,
.calendar-content {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform var(--transition-speed);
}

.demo-modal.active .demo-form,
.calendar-modal.active .calendar-content {
    transform: translateY(0);
}

.demo-form-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

.demo-form-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.demo-form-header h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.close-modal:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: rotate(90deg);
}

/* Form Elements */
.form-group,
.form-field {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-speed);
    color: var(--text-dark);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(3, 54, 109, 0.1);
}

textarea {
    resize: vertical;
}

.modal-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.modal-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.time-slot {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    color: var(--text-dark);
}

.time-slot:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.time-slot.selected {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.confirmation-message {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    border: 2px solid var(--gold);
}

.confirmation-message h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ============================================
   COOKIE BANNER - MATERIAL DESIGN
   ============================================ */
.cookie-banner {
    position: fixed !important;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(3, 54, 109, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    padding-right: 4rem;
    border-radius: 16px;
    display: none;
    z-index: 99999 !important;
    border: 1px solid rgba(3, 54, 109, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-banner.active {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    animation: slideUpSmooth 0.5s ease-out;
}

@keyframes slideUpSmooth {
    0% {
        transform: translateY(150px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.cookie-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cookieRotate 2s ease-in-out infinite;
}

@keyframes cookieRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.cookie-icon svg,
.cookie-icon img.cookie-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--gold);
    border-bottom-color: var(--primary-color);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer !important;
    border: none;
    position: relative;
    z-index: 1;
    pointer-events: auto !important;
}

.btn-reject {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-reject:hover {
    background: var(--border-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-accept {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(3, 54, 109, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 54, 109, 0.4);
}

.cookie-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(3, 54, 109, 0.08);
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10;
    pointer-events: auto !important;
}

.cookie-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* ============================================
   UTILITIES & ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hidden {
    display: none !important;
}

/* Gold Accent Border */
.gold-accent {
    border-top: 3px solid var(--gold);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .nav-menu,
    .nav-container > .gtranslate_wrapper {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section {
        padding: var(--spacing-md) 0;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cookie-banner {
        display: none !important;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-md: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
