:root {
    /* Refined 2026 Luxury Palette */
    --primary: #fcf6f3;
    --secondary: #2d2422;
    --accent: #d4a373;
    --bg: #fffaf8;
    --bg-card: rgba(255, 255, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 20px 40px rgba(45, 36, 34, 0.04);
    --shadow-deep: 0 30px 60px rgba(45, 36, 34, 0.08);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" /></svg>');
    opacity: 0.02;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* Background Logo Watermark */
.background-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background-image: url('Logo/Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.loader-logo {
    height: 180px;
    width: auto;
    animation: floatingPulse 3s infinite ease-in-out;
}
@media (max-width: 768px) {
    .loader-logo { height: 120px; }
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(45, 36, 34, 0.05);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    animation: fillLoader 5s ease-in-out forwards;
}

@keyframes fillLoader {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Global Elements */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Floating Capsule Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 36, 34, 0.05);
    z-index: 1000;
    padding: 0.5rem 4rem;
    transition: var(--transition);
}

.brand-logo {
    height: 150px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(45, 36, 34, 0.1));
}

.header.scrolled {
    padding: 0.8rem 4rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header.scrolled .brand-logo {
    height: 70px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 4px;
    font-weight: 400;
    transition: var(--transition);
}

.header.scrolled .brand-text {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.6;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8rem;
    align-items: center;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(212, 163, 115, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1.0;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--accent);
    letter-spacing: -3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(45, 36, 34, 0.6);
    margin-bottom: 4rem;
    max-width: 550px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.btn-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--secondary);
}

.btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-deep);
}

.hero-image {
    max-width: 800px;
    width: 100%;
}

.image-wrapper {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.services {
    padding: 10rem 0;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.6;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.service-card {
    padding: 1.5rem 2.5rem;
    background: white;
    border-radius: 100px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-deep);
    background: #fdfaf8;
}

.service-card .icon svg {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--secondary);
}

/* Glass Cards Layer */
.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow);
}

/* Info Section */
.info {
    padding: 10rem 0;
    background: #fdfaf8;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.info-text {
    padding: 3.5rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.info-text h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.check-list {
    margin: 2.5rem 0;
    display: grid;
    gap: 1.2rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.check-icon svg {
    color: var(--accent);
}

.info-times {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.7;
    margin-top: 2.5rem;
}

.time-icon svg {
    color: var(--secondary);
    transform: translateY(2px);
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Contact Section */
.contact {
    padding: 12rem 0;
}

.contact-container {
    text-align: center;
    padding: 6rem 4rem;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 50px 120px rgba(45, 36, 34, 0.08);
}

.contact-container h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.contact-card {
    padding: 3rem 2rem;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card .icon svg {
    color: var(--accent);
    margin-bottom: 2rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-card p, 
.contact-card .contact-content p {
    font-size: 1.05rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.contact-hours {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.95rem;
    gap: 1rem;
}

.hour-row .day {
    font-weight: 600;
    color: var(--accent);
    text-align: left;
}

.hour-row .time {
    text-align: right;
    opacity: 0.8;
    white-space: nowrap;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: white;
    box-shadow: var(--shadow-deep);
}

/* Contact Form Styles */
.contact-form {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(45, 36, 34, 0.1);
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.8rem;
    opacity: 0.5;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.form-submit {
    display: flex;
    justify-content: center;
}

.form-submit .btn-primary {
    background: var(--secondary);
    border: none;
    padding: 1.2rem 4rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
}

.form-submit .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
    background: var(--accent);
    color: white;
}

.form-submit .btn-primary.btn-success {
    background: #28a745 !important;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.contact-info-divider {
    margin: 6rem 0 4rem;
    position: relative;
    text-align: center;
}

.contact-info-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(45, 36, 34, 0.1);
    z-index: 1;
}

.contact-info-divider span {
    position: relative;
    z-index: 2;
    background: #fdfaf8;
    padding: 0 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}



/* Footer Section */
.footer {
    padding: 6rem 0;
    background: var(--bg);
    border-top: 1px solid rgba(45, 36, 34, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.4;
}

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

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatingPulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes slideLoader {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
}

/* ============================
   MOBILE RESPONSIVE OVERHAUL
   ============================ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    .container { padding: 0 2.5rem; }
    .header { padding: 1rem 2.5rem; }
    .header.scrolled { padding: 0.8rem 2.5rem; }
    .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-text h1 { font-size: 4.5rem; }
    .hero-btns { justify-content: center; }
    .hero-image { max-width: 500px; margin: 0 auto; }
    .info-content { grid-template-columns: 1fr; gap: 4rem; }
    .info-text h2 { font-size: 3rem; }
    .section-header h2 { font-size: 3.2rem; }
    .contact { padding: 8rem 0; }
    .contact-container { padding: 4rem 3rem; border-radius: 40px; }
    .contact-container h2 { font-size: 3rem; }
}

/* Small Tablet / Large Phone: 768px */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    
    /* Header & Navigation */
    .header { width: 100%; top: 0; padding: 0.5rem 1.5rem; border-radius: 0; min-width: auto; }
    .header.scrolled { padding: 0.4rem 1.5rem; }
    .brand-logo { height: 110px; }
    .header.scrolled .brand-logo { height: 70px; }
    .brand-text { font-size: 1.3rem; letter-spacing: 3px; }
    .nav { gap: 0; }
    .nav-links { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition);
        z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1rem; letter-spacing: 2px; opacity: 0.8; }
    .mobile-menu-btn { display: flex; }
    
    /* Hero */
    .hero { min-height: auto; padding-top: 10rem; padding-bottom: 4rem; }
    .hero-content { gap: 2.5rem; }
    .hero-text h1 { font-size: 3rem; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 1.5rem; }
    .hero-subtitle { font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 100%; }
    .hero-btns { gap: 1rem; }
    .btn { padding: 1rem 2rem; font-size: 0.85rem; }
    .hero-image { max-width: 100%; }
    .image-wrapper { border-radius: 25px; }
    
    /* Services */
    .services { padding: 5rem 0; }
    .section-header { margin-bottom: 3rem; }
    .section-header h2 { font-size: 2.5rem; letter-spacing: -1px; }
    .section-header p { font-size: 1rem; }
    .services-grid { gap: 1rem; padding: 1rem 0; }
    .service-card { padding: 1.2rem 1.8rem; gap: 0.8rem; }
    .service-card h3 { font-size: 0.95rem; }
    
    /* Info Section */
    .info { padding: 5rem 0; }
    .info-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .info-text { padding: 2.5rem; border-radius: 30px; }
    .info-text h2 { font-size: 2.4rem; margin-bottom: 1.5rem; }
    .check-list { margin: 1.5rem 0; gap: 1rem; }
    .info-image img { border-radius: 25px; }
    
    /* Contact Section */
    .contact { padding: 5rem 0; }
    .contact-container { padding: 3rem 1.5rem; border-radius: 30px; }
    .contact-container h2 { font-size: 2.4rem; }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .form-group input, .form-group textarea, .form-group select { padding: 1rem 1.4rem; border-radius: 15px; }
    .form-submit .btn-primary { padding: 1rem 3rem; font-size: 1rem; width: 100%; justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
    .contact-card { padding: 2rem 1.5rem; border-radius: 25px; }
    .contact-info-divider { margin: 3rem 0 2rem; }
    
    /* FAQ */
    .section-padding { padding: 5rem 0; }
    .faq-content { padding: 2rem; border-radius: 25px; margin-top: 2rem; }
    
    /* About / Über uns */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { max-width: 100%; }
    .about-text { padding: 2.5rem; border-radius: 25px; }
    .about-text h2 { font-size: 2.4rem; }
    .about-text p { font-size: 1rem; }
    .about-features { gap: 2rem; }
    
    /* Footer */
    .footer { padding: 3rem 0; }
    .footer-links { gap: 1.5rem; }
    
    /* Modal */
    .modal-card { padding: 2.5rem 1.5rem; }
    .modal-content h2 { font-size: 1.8rem; }
}

/* Phone: 480px */
@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .hero-text h1 { font-size: 2.2rem; letter-spacing: -1px; line-height: 1.1; hyphens: auto; word-wrap: break-word; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
    .hero-btns { flex-direction: column; gap: 0.8rem; width: 100%; }
    .btn { width: 100%; text-align: center; padding: 1rem 1.5rem; }
    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 0.9rem; }
    .services-grid { flex-direction: column; }
    .service-card { width: 100%; justify-content: center; }
    .info-text { padding: 2rem; }
    .info-text h2 { font-size: 2rem; }
    .contact-container { padding: 2.5rem 1.2rem; border-radius: 25px; }
    .contact-container h2 { font-size: 2rem; }
    .form-group label { font-size: 0.85rem; }
    .about-text { padding: 2rem; }
    .about-text h2 { font-size: 2rem; }
    .about-features { flex-direction: column; gap: 1.5rem; }
    .faq-content { padding: 1.5rem; }
    .faq-item-static h3 { font-size: 1.1rem; }
}
/* Service Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 36, 34, 0.5);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-card {
    width: 90%;
    max-width: 600px;
    padding: 4rem;
    position: relative;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff !important;
    border-radius: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--secondary);
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}

.modal-close:hover {
    opacity: 1;
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.modal-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(45, 36, 34, 0.7);
    margin-bottom: 3rem;
}

.modal-btn {
    width: 100%;
    text-align: center;
}

/* FAQ Accordion */
/* Global Layout Utilities */
.section-padding {
    padding: 7rem 0;
}

/* FAQ Static Layout */
.faq-content {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 4rem;
    border-radius: 40px;
    text-align: left;
}

.faq-item-static {
    margin-bottom: 3rem;
}

.faq-item-static:last-of-type {
    margin-bottom: 0;
}

.faq-item-static h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.faq-item-static p {
    font-size: 1.1rem;
    color: rgba(45, 36, 34, 0.7);
    line-height: 1.7;
}

.faq-actions {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* About Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    position: relative;
    z-index: 2;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.about-text {
    padding: 5rem;
    border-radius: 40px;
}

.section-subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.about-text p {
    font-size: 1.15rem;
    color: rgba(45, 36, 34, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    gap: 3rem;
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    box-shadow: var(--shadow);
}

.about-feature p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
}

/* About Section Mobile Overrides */
@media (max-width: 1024px) {
    .container.about-grid { gap: 3rem; }
    .about-text { padding: 3rem; }
    .about-text h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .container.about-grid { 
        grid-template-columns: 1fr !important; 
        gap: 2rem; 
    }
    .about-image { max-width: 100%; }
    .about-text { padding: 2.5rem; border-radius: 25px; }
    .about-text h2 { font-size: 2.4rem; }
    .about-text p { font-size: 1rem; margin-bottom: 2rem; }
    .about-features { gap: 2rem; }
}

@media (max-width: 480px) {
    .about-text { padding: 2rem; }
    .about-text h2 { font-size: 2rem; }
    .about-features { flex-direction: column; gap: 1.5rem; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 15px 35px rgba(18, 140, 126, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Instagram Floating Button */
.instagram-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.3);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.instagram-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(214, 36, 159, 0.4);
}

.instagram-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .instagram-float {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .instagram-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Facebook Floating Button */
.facebook-float {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #1877F2;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.facebook-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4);
}

.facebook-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .facebook-float {
        bottom: 150px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .facebook-float svg {
        width: 28px;
        height: 28px;
    }
}
