/* Marc.de - Modern Redesign 2026 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #030712;
  --bg-surface: #0f172a;
  --primary: #E1306C;
  --secondary: #F77737;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255, 255, 255, 0.1);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: #030712 !important; color: #f8fafc !important; line-height: 1.6; min-height: 100vh !important; overflow-x: hidden; }

.bg-noise { position: fixed; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.03; pointer-events: none; z-index: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); }
.bg-gradient-glow { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; background: radial-gradient(ellipse at 20% 0%, rgba(225, 48, 108, 0.12) 0%, transparent 50%), radial-gradient(ellipse at 80% 100%, rgba(247, 119, 55, 0.08) 0%, transparent 50%); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.text-gradient { background: linear-gradient(135deg, #E1306C 0%, #F77737 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #E1306C; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 50px; border: none; cursor: pointer; transition: all 0.3s ease; font-family: var(--font-body); }
.btn-primary { background: linear-gradient(135deg, #E1306C 0%, #F77737 100%); color: white; box-shadow: 0 0 30px rgba(225, 48, 108, 0.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(225, 48, 108, 0.5), 0 10px 40px rgba(0,0,0,0.3); color: black; }
.btn-secondary { background: transparent; color: #f8fafc !important; border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: #E1306C; color: #E1306C !important; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; background: rgba(3, 7, 18, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-size: 24px; font-weight: 800; letter-spacing: -0.03em; color: #f8fafc !important; }
.logo span { color: #E1306C; }
.nav { display: none; align-items: center; gap: 8px; }
@media (min-width: 768px) { .nav { display: flex; } }
.nav.mobile-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px); padding: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); z-index: 1000; }
.nav.mobile-open a { width: 100%; text-align: center; padding: 14px 20px; }
.nav.mobile-open .btn { margin-top: 10px; }
.nav a { padding: 10px 16px; font-size: 14px; font-weight: 500; color: #94a3b8; border-radius: 8px; transition: all 0.3s ease; }
.nav a:hover, .nav a.active { color: #f8fafc !important; background: rgba(255, 255, 255, 0.05); }
.mobile-menu-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; color: #f8fafc !important; font-size: 20px; cursor: pointer; z-index: 1001; }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

/* Hero - Compact */
.hero { position: relative; min-height: auto; display: flex; align-items: center; padding: 100px 0 40px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(3, 7, 18, 0.3) 0%, #030712 100%); }
.hero .container { position: relative; display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
@media (min-width: 1200px) { .hero .container { grid-template-columns: 1fr 340px; gap: 60px; } }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.1; margin-bottom: 16px; animation: fadeInUp 0.8s ease-out 0.1s both; }
.hero p { font-size: 16px; color: #94a3b8; max-width: 480px; margin-bottom: 24px; animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeInUp 0.8s ease-out 0.3s both; }
@media (max-width: 1199px) { .hero { text-align: center; } .hero p { margin-left: auto; margin-right: auto; } .hero-buttons { justify-content: center; } }

/* Offer Box - Compact */
.offer-box { position: relative; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 24px; width: 100%; max-width: 340px; animation: float 6s ease-in-out infinite; display: none; cursor: pointer; transition: all 0.3s ease; z-index: 10; justify-self: end; }
.offer-box:hover { border-color: rgba(225, 48, 108, 0.5); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(225, 48, 108, 0.5); transform: translateY(-5px); }
@media (min-width: 1200px) { .offer-box { display: block; } }
.offer-box::before { content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px; background: linear-gradient(135deg, #E1306C, #F77737); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.5; }
.offer-box h3 { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.offer-price { margin-bottom: 14px; }
.offer-price .price { font-size: 36px; font-weight: 800; background: linear-gradient(135deg, #E1306C, #F77737); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.offer-price .old-price { font-size: 16px; color: #64748b; text-decoration: line-through; margin-left: 10px; }
.offer-features { list-style: none; }
.offer-features li { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13px; color: #94a3b8; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.offer-features li:last-child { border-bottom: none; }
.offer-features li::before { content: '✓'; color: #E1306C; font-weight: bold; font-size: 12px; }
.offer-box .offer-btn { width: 100%; margin-top: 14px; padding: 10px 20px; font-size: 13px; }

/* Services - Compact */
.services { padding: 60px 0 80px; position: relative; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.section-header p { font-size: 16px; color: #94a3b8; }
.services-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card { position: relative; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px; padding: 24px; transition: all 0.4s ease; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #E1306C, transparent); opacity: 0; transition: opacity 0.4s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(225, 48, 108, 0.3); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(225, 48, 108, 0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(131, 58, 180, 0.2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: #94a3b8; line-height: 1.6; }

/* Features */
.features { padding: 60px 0; position: relative; }
.features-grid-balanced { display: grid; gap: 24px; align-items: stretch; }
@media (min-width: 1200px) { .features-grid-balanced { grid-template-columns: 1fr 1fr; } }
.features-image-balanced { position: relative; border-radius: 20px; overflow: hidden; height: 100%; min-height: 280px; }
.features-image-balanced img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; position: absolute; inset: 0; }
.features-image-balanced::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(131, 58, 180, 0.2)); border-radius: 20px; pointer-events: none; z-index: 1; }
.features-cards-grid { display: grid; grid-template-rows: repeat(4, 1fr); gap: 10px; height: 100%; }
.feature-item { display: flex; gap: 12px; padding: 10px 14px; background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; transition: all 0.3s ease; align-items: center; }
.feature-item:hover { border-color: rgba(225, 48, 108, 0.3); transform: translateX(6px); }
.feature-icon { width: 32px; height: 32px; background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(131, 58, 180, 0.2)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.feature-item h4 { font-size: 14px; margin-bottom: 2px; }
.feature-item p { font-size: 12px; color: #94a3b8; }

/* Contact */
.contact { padding: 80px 0; position: relative; }
.contact-grid { display: grid; gap: 50px; }
@media (min-width: 1200px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: #94a3b8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; transition: all 0.3s ease; }
.contact-item:hover { border-color: rgba(225, 48, 108, 0.3); transform: translateX(6px); }
.contact-item-icon { width: 42px; height: 42px; background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(131, 58, 180, 0.2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item span { font-size: 14px; color: #94a3b8; }

/* Contact Form */
.contact-form { background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 28px; height: fit-content; }
.contact-form h3 { font-size: 20px; margin-bottom: 20px; }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #64748b; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: #f8fafc !important; font-size: 14px; font-family: var(--font-body); transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #E1306C; box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #64748b; }
.form-group textarea { resize: none; min-height: 80px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
.form-group select option { background: #0f172a; color: #f8fafc; }

.form-status { padding: 16px; border-radius: 10px; margin-bottom: 20px; display: none; text-align: center; }
.form-status.success { display: block; background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #4ade80; }
.form-status.error { display: block; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #f87171; }
.form-status strong { display: block; font-size: 14px; margin-bottom: 6px; }

.quick-response { background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(131, 58, 180, 0.1)); border: 1px solid rgba(225, 48, 108, 0.2); border-radius: 14px; padding: 20px; margin-top: 24px; }
.quick-response h4 { font-size: 14px; margin-bottom: 6px; }
.quick-response p { font-size: 13px; color: #94a3b8; }

/* Footer */
.footer { background: #0f172a; border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 14px 0; }
.footer-oneline { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; font-size: 13px; }
.footer-oneline .logo { font-size: 18px; }
.footer-oneline a { color: #94a3b8; }
.footer-oneline a:hover { color: #E1306C; }
.footer-oneline .divider { color: rgba(255, 255, 255, 0.1); }
.footer-oneline .copyright { color: #64748b; }
.footer-grid { display: grid; gap: 28px; padding: 36px 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .logo { font-size: 22px; margin-bottom: 8px; display: inline-block; }
.footer-brand p { font-size: 13px; color: #94a3b8; max-width: 280px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(225, 48, 108, 0.1); border: 1px solid rgba(225, 48, 108, 0.2); border-radius: 8px; color: #E1306C; transition: all 0.3s ease; }
.social-link:hover { background: #E1306C; color: white; transform: translateY(-3px); }
.footer h4 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #f8fafc !important; margin-bottom: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 13px; color: #94a3b8; }
.footer-contact p { display: flex; align-items: flex-start; gap: 6px; font-size: 12px; color: #94a3b8; margin-bottom: 6px; }
.footer-bottom { text-align: center; padding-top: 16px; margin-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 11px; color: #64748b; }

/* Page Styles */
.page-header { padding: 120px 0 60px; text-align: center; }
.page-header h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 12px; }
.page-header p { font-size: 16px; color: #94a3b8; max-width: 550px; margin: 0 auto; }
.page-content { padding: 0 0 80px; }
.content-section { margin-bottom: 40px; }
.content-section h2 { font-size: 20px; margin-bottom: 14px; color: #f8fafc !important; }
.content-section h3 { font-size: 16px; margin-bottom: 10px; margin-top: 20px; color: #94a3b8; }
.content-section p { font-size: 14px; color: #94a3b8; margin-bottom: 14px; line-height: 1.7; }
.content-section a { color: #E1306C; }
.content-section a:hover { text-decoration: underline; }

/* Leistungen */
.leistungen-detail { padding: 80px 0; }
.leistungen-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .leistungen-grid { grid-template-columns: repeat(2, 1fr); } }
.leistung-card { position: relative; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 20px 24px; transition: all 0.4s ease; overflow: hidden; }
.leistung-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #E1306C, #F77737); opacity: 0; transition: opacity 0.4s ease; }
.leistung-card:hover { transform: translateY(-6px); border-color: rgba(225, 48, 108, 0.3); box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3); }
.leistung-card:hover::before { opacity: 1; }
.leistung-card h3 { font-size: 20px; margin-bottom: 8px; }
.leistung-card > p { font-size: 13px; color: #94a3b8; margin-bottom: 12px; }
.leistung-card ul { list-style: none; margin-bottom: 0; }
.leistung-card li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; color: #94a3b8; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.leistung-card li:last-child { border-bottom: none; }
.leistung-card li::before { content: '✓'; color: #E1306C; font-weight: bold; }
.leistung-price { font-size: 32px !important; font-weight: 800 !important; background: linear-gradient(135deg, #E1306C, #F77737) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; margin-top: 0 !important; padding-top: 0 !important; line-height: 1 !important; text-align: right !important; }
.leistung-price span { font-size: 14px !important; font-weight: 400 !important; background: none !important; -webkit-text-fill-color: #64748b !important; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal { background: #030712 !important; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; }
.modal.modal-booking { max-width: 660px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.modal-header h2 { font-size: 20px; }
.modal-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: #94a3b8; font-size: 22px; cursor: pointer; transition: all 0.3s ease; }
.modal-close:hover { background: rgba(225, 48, 108, 0.1); border-color: #E1306C; color: #E1306C; }
.modal-body { padding: 20px; }

.booking-contact-row { display: grid; gap: 14px; margin-bottom: 20px; }
@media (min-width: 640px) { .booking-contact-row { grid-template-columns: repeat(3, 1fr); } }
.section-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #64748b; margin-bottom: 14px; }
.booking-datetime-row { display: grid; gap: 16px; margin-bottom: 10px; }
@media (min-width: 640px) { .booking-datetime-row { grid-template-columns: 1fr 1fr; } }
.booking-hint { font-size: 11px; color: #64748b; margin-bottom: 16px; display: block; }

.calendar-container { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 14px; }
.flatpickr-calendar { background: transparent !important; border: none !important; box-shadow: none !important; width: 100% !important; font-family: var(--font-body) !important; }
.flatpickr-months { background: transparent !important; padding: 0 0 10px 0 !important; }
.flatpickr-months .flatpickr-month { background: transparent !important; color: #f8fafc !important; height: 40px !important; }
.flatpickr-current-month { font-size: 14px !important; font-weight: 600 !important; color: #f8fafc !important; }
.flatpickr-weekday { color: #64748b !important; font-size: 11px !important; font-weight: 600 !important; }
.flatpickr-day { color: #94a3b8 !important; border-radius: 8px !important; height: 34px !important; line-height: 34px !important; font-size: 13px !important; }
.flatpickr-day:hover { background: rgba(225, 48, 108, 0.2) !important; border-color: transparent !important; }
.flatpickr-day.selected { background: linear-gradient(135deg, #E1306C, #F77737) !important; border-color: transparent !important; color: white !important; }
.flatpickr-day.today { border-color: #E1306C !important; }
.flatpickr-day.flatpickr-disabled { color: #64748b !important; opacity: 0.3 !important; }

.time-slots-container { display: flex; flex-direction: column; gap: 8px; }
.time-slot { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; cursor: pointer; transition: all 0.3s ease; }
.time-slot:hover { border-color: #E1306C; background: rgba(225, 48, 108, 0.05); transform: translateX(3px); }
.time-slot.selected { background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(131, 58, 180, 0.15)); border-color: #E1306C; }
.time-slot .time-icon { font-size: 18px; }
.time-slot .time-label { flex: 1; font-size: 12px; color: #64748b; }
.time-slot.selected .time-label { color: #94a3b8; }
.time-slot .time-range { font-size: 13px; font-weight: 600; color: #94a3b8; }
.time-slot.selected .time-range { color: #f8fafc !important; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #030712 !important; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 3px; }
::selection { background: rgba(225, 48, 108, 0.3); color: white; }

/* Contact Cards Row */
.contact-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}
@media (min-width: 640px) { .contact-cards-row { grid-template-columns: 1fr 1fr; } }

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-card:hover { border-color: rgba(225, 48, 108, 0.4); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.contact-card-icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(131, 58, 180, 0.2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-card span { font-size: 15px; color: #f8fafc; font-weight: 500; }

/* Horizontal Contact Form */
.contact-form-horizontal { background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 28px; max-width: 900px; margin: 0 auto; }
.form-horizontal-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .form-horizontal-layout { grid-template-columns: 1fr 1fr; gap: 30px; } }
.form-left-column { display: flex; flex-direction: column; gap: 0; }
.form-right-column { display: flex; flex-direction: column; gap: 16px; }
.form-right-column .btn { align-self: flex-end; padding: 12px 32px; }

/* Booking Page */
.booking-page-content { padding: 0 0 80px; }
.booking-form-container { background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px; padding: 32px; max-width: 700px; margin: 0 auto; }
