/* ===================================
   LISOTTO CONSULTING FZCO
   Premium Website Stylesheet
   Royal Gold & White Theme
   =================================== */

/* CSS Variables */
:root {
    /* Gold Palette */
    --gold-dark: #8B7355;
    --gold-primary: #C9A227;
    --gold-light: #D4AF37;
    --gold-bright: #FFD700;
    --gold-shimmer: #F4E4BA;
    --gold-gradient: linear-gradient(135deg, #C9A227 0%, #FFD700 25%, #D4AF37 50%, #C9A227 75%, #FFD700 100%);
    --gold-gradient-text: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #C9A227 100%);
    
    /* Neutral Palette */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #FDF8F0;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #333333;
    --black: #1A1A1A;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--gold-primary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
    color: var(--gray-dark);
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--gold-dark);
}

/* ===================================
   PRELOADER
   =================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo img {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.9; }
}

/* ===================================
   LANGUAGE SWITCHER
   =================================== */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gold-shimmer);
}

.lang-btn {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.lang-btn:hover {
    color: var(--gold-primary);
}

.lang-btn.active {
    background: var(--gold-gradient);
    color: var(--white);
}

.lang-divider {
    color: var(--gray-medium);
}

/* ===================================
   NAVIGATION
   =================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
    background: var(--white);
}

.main-nav.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-medium);
}

.main-nav.scrolled .nav-logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.nav-menu a {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-dark);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-medium);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-dark);
    transition: var(--transition-fast);
    pointer-events: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--gold-shimmer) 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 70%, var(--gold-shimmer) 50%, transparent 50%),
        radial-gradient(1px 1px at 90% 40%, var(--gold-shimmer) 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 80%, var(--gold-shimmer) 50%, transparent 50%),
        radial-gradient(1px 1px at 10% 90%, var(--gold-shimmer) 50%, transparent 50%);
    animation: particleFloat 20s linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-crown {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    animation: crownShine 3s ease-in-out infinite;
}

@keyframes crownShine {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
        transform: scale(1.05);
    }
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: var(--gray-dark);
}

.title-line.gold {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
    background: var(--white);
    padding: 10px 0;
}

/* Buttons */
.btn {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 15px 40px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--white);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    background: var(--white);
    padding: 10px 20px;
}

.hero-scroll-indicator span {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 10px;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--gold-primary);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===================================
   SECTION HEADERS & ORNAMENTS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.section-header.light .section-subtitle,
.section-header.light .section-title {
    color: var(--white);
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ornament-line {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
}

.title-ornament i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.title-ornament.light .ornament-line {
    background: rgba(255, 255, 255, 0.5);
}

.title-ornament.light i {
    color: var(--gold-shimmer);
}

.section-ornament {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    background-repeat: repeat-x;
    background-size: 200px auto;
    opacity: 0.15;
}

.section-ornament.top {
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cpath d='M0,80 Q50,0 100,80 Q150,0 200,80' fill='none' stroke='%23D4AF37' stroke-width='2'/%3E%3C/svg%3E");
}

.section-ornament.bottom {
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cpath d='M0,0 Q50,80 100,0 Q150,80 200,0' fill='none' stroke='%23D4AF37' stroke-width='2'/%3E%3C/svg%3E");
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--gold-primary);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 15px 25px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
}

.about-content {
    padding: 20px 0;
}

.about-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-dark);
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--gray-medium);
    position: relative;
    transition: var(--transition-medium);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-medium);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.service-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--gray-dark);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--gray-light);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.6rem;
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */
.philosophy-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.philosophy-content {
    position: relative;
    z-index: 1;
}

.philosophy-main {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--gold-primary);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.philosophy-text {
    font-size: 1.4rem;
    color: var(--white);
    line-height: 2;
    position: relative;
    z-index: 1;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 4rem;
}

.pillar {
    text-align: center;
    padding: 30px;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.pillar-icon i {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.pillar:hover .pillar-icon {
    background: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.pillar:hover .pillar-icon i {
    color: var(--white);
}

.pillar h4 {
    font-size: 1.2rem;
    color: var(--gold-shimmer);
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.philosophy-highlight {
    text-align: center;
    padding: 40px;
    border: 2px solid var(--gold-primary);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.highlight-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-badge i {
    color: var(--white);
    font-size: 1.2rem;
}

.highlight-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-shimmer);
    margin: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border: 1px solid var(--gray-medium);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-medium);
}

.info-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-soft);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 1.1rem;
}

.info-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.info-card h4 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin: 0;
    min-width: 80px;
}

.info-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

.info-card a {
    color: var(--gray-dark);
}

.info-card a:hover {
    color: var(--gold-primary);
}

.info-card.license {
    background: var(--gold-gradient);
}

.info-card.license .info-icon {
    background: rgba(255, 255, 255, 0.2);
}

.info-card.license h4,
.info-card.license p {
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--gray-medium);
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-dark);
    background: var(--off-white);
    border: 1px solid var(--gray-medium);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-medium);
}

.form-group input:focus ~ .input-border,
.form-group textarea:focus ~ .input-border {
    width: 100%;
}

/* Checkbox */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
}

.checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
}

.checkbox-text {
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.btn-submit {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit i {
    transition: var(--transition-fast);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-status {
    grid-column: 1 / -1;
    text-align: center;
    padding: 15px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===================================
   MAP SECTION
   =================================== */
.map-section {
    position: relative;
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.map-card {
    background: var(--white);
    padding: 40px 50px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border-top: 4px solid var(--gold-primary);
    pointer-events: auto;
}

.map-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.map-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.map-card p {
    margin: 0;
    color: #666;
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-brand {
    padding-right: 40px;
}

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

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-shimmer);
    letter-spacing: 0.1em;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-shimmer);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold-primary);
    width: 20px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-ornament .ornament-line {
    width: 40px;
    background: rgba(212, 175, 55, 0.5);
}

.footer-ornament i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.copyright {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.license-info {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

/* ===================================
   BACK TO TOP
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.back-to-top i {
    color: var(--white);
    font-size: 1.2rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-pillars .pillar:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation Container - Hamburger links, Sprache rechts */
    .nav-container {
        padding: 0 15px;
        justify-content: flex-start;
        position: relative;
    }
    
    /* Hamburger Menu - Links positioniert */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 15px;
        z-index: 1001;
        position: relative;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        touch-action: manipulation;
    }
    
    .nav-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--gold-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Menu - Slide from Left */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 0;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 18px 0;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .nav-menu a {
        font-size: 1rem;
        display: block;
        padding: 5px 0;
    }
    
    /* Mobile Menu Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Language Switcher - Rechts oben */
    .language-switcher {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
        z-index: 1002;
    }
    
    .lang-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 100vh;
        padding: 120px 15px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-title .title-line {
        display: block;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    /* Sections */
    .section-header {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    /* About Section */
    .about-section {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        max-height: 300px;
    }
    
    .highlight-text {
        font-size: 1.2rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    /* Philosophy Section */
    .philosophy-section {
        padding: 60px 0;
    }
    
    .philosophy-pillars {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .philosophy-pillars .pillar:last-child {
        max-width: none;
    }
    
    .pillar {
        padding: 30px 25px;
    }
    
    .philosophy-text {
        font-size: 1.1rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .info-icon {
        margin-bottom: 10px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    /* Map */
    .map-card {
        padding: 20px;
    }
    
    .map-container {
        height: 250px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 20px 15px;
    }
    
    /* Success Overlay */
    .success-content {
        padding: 30px 25px;
        margin: 15px;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
    }
    
    .success-content p {
        font-size: 1rem;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
    }
    
    /* Buttons */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 25px;
        font-size: 0.8rem;
    }
    
    /* About */
    .highlight-text {
        font-size: 1.1rem;
    }
    
    .about-image img {
        max-height: 250px;
    }
    
    /* Services */
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    /* Philosophy */
    .pillar {
        padding: 25px 20px;
    }
    
    .pillar-icon {
        width: 55px;
        height: 55px;
    }
    
    .pillar h3 {
        font-size: 1.1rem;
    }
    
    .philosophy-text {
        font-size: 1rem;
    }
    
    /* Contact */
    .info-card {
        padding: 15px;
    }
    
    .info-card h4 {
        font-size: 0.75rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    /* Map */
    .map-card {
        padding: 15px;
    }
    
    .map-container {
        height: 200px;
    }
    
    /* Footer */
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 15px 10px;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    /* Language Switcher */
    .language-switcher {
        top: 12px;
        right: 60px;
        padding: 5px 10px;
    }
    
    .lang-btn {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    /* Navigation */
    .main-nav {
        padding: 12px 0;
    }
    
    .nav-menu {
        width: 85%;
        padding: 90px 30px 30px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    /* Success Overlay */
    .success-content {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .success-icon {
        font-size: 2.5rem;
    }
    
    .success-content h3 {
        font-size: 1.3rem;
    }
    
    .success-content p {
        font-size: 0.9rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gold-shimmer {
    background: linear-gradient(90deg, 
        var(--gold-dark) 0%, 
        var(--gold-bright) 25%, 
        var(--gold-primary) 50%, 
        var(--gold-bright) 75%, 
        var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Print Styles */
@media print {
    .main-nav,
    .language-switcher,
    .hero-scroll-indicator,
    .back-to-top,
    .preloader {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
    
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        padding: 14px 30px;
    }
    
    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .lang-btn {
        min-height: 40px;
        min-width: 40px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
    }
    
    .service-card:hover,
    .pillar:hover,
    .info-card:hover {
        transform: none;
    }
}

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.5;
    margin-bottom: 5px;
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--gold-dark);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    white-space: nowrap;
}

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

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-icon {
        font-size: 2rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 20px 40px;
    }
    
    .hero-logo {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* Fallback: Ensure content is visible */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.hero-section,
.about-section,
.services-section,
.philosophy-section,
.contact-section {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Success Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: var(--white);
    padding: 50px 60px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-overlay.active .success-content {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.success-content p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-close {
    min-width: 150px;
}
