:root {
    --primary: #ff385c;
    --primary-hover: #e31c5f;
    --text-main: #222222;
    --text-muted: #717171;
    --border-color: #dddddd;
    --bg-color: #ffffff;
    --card-bg: transparent;
    --footer-bg: #f7f7f7;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

[data-theme='dark'] {
    --primary: #ff385c;
    --primary-hover: #e31c5f;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    --bg-color: #121212;
    --card-bg: transparent;
    --footer-bg: #1e1e1e;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.5;
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Navbar */
header {
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-color);
    z-index: 100;
    transition: background-color 0.3s;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 8px 8px 8px 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
    cursor: pointer;
    background: var(--bg-color);
}

.search-bar:hover {
    box-shadow: var(--shadow-md);
}

.search-text {
    font-weight: 500;
    padding-right: 16px;
    border-right: 1px solid var(--border-color);
}

.search-guests {
    color: var(--text-main);
    padding: 0 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.search-guests:hover {
    color: var(--primary);
}

.search-icon {
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-color);
    border: 1px solid #333333;
    border-radius: 16px;
    width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 16px 0;
    z-index: 9999;
}

.search-dropdown-header {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 24px 12px;
    letter-spacing: 0.5px;
}

.search-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-dropdown-list li {
    padding: 12px 24px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

.search-dropdown-list li:hover {
    background: var(--bg-color);
}

.search-dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 12px 0;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    /* Widened the gap so items don't stick together */
}

.theme-toggle,
.cart-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    position: relative;
    transition: background 0.2s;
}

.theme-toggle:hover,
.cart-toggle:hover {
    background: var(--border-color);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary);
    color: white;
    font-size: 0.70rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-color);
}

.profile-button {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 8px 12px;
    background: var(--bg-color);
    cursor: pointer;
    transition: box-shadow 0.2s;
    color: var(--text-main);
}

.profile-button:hover {
    box-shadow: var(--shadow-sm);
}

/* Categories */
.categories {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-evenly;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--border-color);
}

/* Card Kontakt Button */
.card-kontakt-btn {
    margin-top: 12px;
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.card-kontakt-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
.card-hint { margin-top: 6px; font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* Empty Category State */
.empty-category { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-title { font-size: 1.2rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.empty-sub { font-size: 0.95rem; color: var(--text-muted); }

/* Nav Kontakt Button */
.nav-kontakt-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-kontakt-btn:hover { border-color: var(--primary); color: var(--primary); }

.categories::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    min-width: max-content;
}

.category-item:hover,
.category-item.active {
    opacity: 1;
    color: var(--text-main);
}

.category-item.active {
    border-bottom: 2px solid var(--text-main);
    padding-bottom: 10px;
    margin-bottom: -12px;
}

.category-item i {
    font-size: 24px;
}

.category-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Main Content */
main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 40px;
    min-height: 50vh;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Listing Card - Reverted to Clean Airbnb style */
.listing-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* PERFECT 1:1 SQUARE CSS RATIO */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    background: var(--border-color);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.listing-card:hover .image-container img {
    transform: scale(1.05);
    /* subtle zoom */
}

/* Bestseller Card Adjustments */
.listing-card.bestseller {
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 12px;
    margin: -12px;
}

.listing-card.bestseller .image-container {
    border-radius: 8px;
}

.bestseller-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

/* Hide Heart button for cleaner layout */
.like-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.like-button svg {
    stroke: white;
    stroke-width: 2;
    fill: rgba(0, 0, 0, 0.5);
}

.like-button:hover svg {
    fill: rgba(0, 0, 0, 0.7);
}

.like-button.liked:hover {
    transform: scale(1.2);
}

.like-button.liked svg {
    fill: var(--primary);
    stroke: white;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.listing-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
}

.listing-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
}

.listing-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.listing-price {
    margin-top: 8px;
    font-size: 1rem;
}

.listing-price span {
    font-weight: 600;
}

/* Modal CSS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-color);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: fadeIn 0.2s ease-out;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--border-color);
}

.modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.modal-price {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.modal-price span {
    font-weight: 700;
}

.modal-cta {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.modal-cta:hover {
    background: var(--primary-hover);
}

/* Proper Full Width Footer */
footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 0 0;
    /* padding bottom applied to footer-bottom */
    margin-top: 60px;
    width: 100%;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 0 40px;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-section ul li a {
    color: var(--text-muted);
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.payment-methods div {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-bottom {
    max-width: 1440px;
    margin: 40px auto 0;
    padding: 24px 40px 48px 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {

    /* Nav */
    .nav-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-bar { display: none; }
    .nav-kontakt-btn { display: none; }

    .mobile-search {
        display: flex;
        flex: 1;
        align-items: center;
        border-radius: 40px;
        box-shadow: var(--shadow-sm);
        padding: 10px 16px;
        border: 1px solid var(--border-color);
        background: var(--bg-color);
        gap: 12px;
        font-size: 13px;
    }

    /* Hero */
    .hero-section { height: 100svh; }
    .hero-inner { padding: 0 20px; }
    .hero-section h1 { font-size: 2.2rem; letter-spacing: -0.5px; line-height: 1.15; }
    .hero-section p { font-size: 1rem; margin-bottom: 32px; }
    .hero-scroll-btn { padding: 14px 24px; font-size: 0.95rem; }

    /* Ticker – smaller cards on mobile */
    .ticker-card { min-width: 220px; max-width: 220px; padding: 12px 16px; }
    .ticker-text { font-size: 0.8rem; }

    /* Categories – scrollable on mobile */
    .categories {
        padding: 16px 20px;
        gap: 28px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .category-item {
        min-width: unset;
        flex-shrink: 0;
    }
    .category-item span { font-size: 0.75rem; }

    /* Grid – single column on mobile */
    main { padding: 20px 16px; }
    .listings-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .listing-card .image-container { height: 160px; }

    /* Contact */
    .contact-section { padding: 40px 16px; margin: 0; border-radius: 0; }
    .contact-container { padding: 0; }
    .contact-container h2 { font-size: 1.6rem; }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 16px 20px;
    }

    /* FAQ / Legal */
    .faq-container { padding: 24px 20px; }
    .legal-container { padding: 24px 20px; }

    /* Modal */
    .modal-content { padding: 24px 20px; margin: 0 12px; }
}

@media (max-width: 480px) {
    .hero-section h1 { font-size: 1.85rem; }
    .listings-grid { grid-template-columns: 1fr; }
    .listing-card .image-container { height: 200px; }
}

/* Quiz Modal */
.quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.quiz-content {
    background: var(--bg-color);
    color: var(--text-main);
    padding: 40px;
    border-radius: 16px;
    width: 500px;
    max-width: 90%;
    position: relative;
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.2s ease-out;
}

.quiz-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-btn {
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.quiz-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 56, 92, 0.05);
    transform: translateY(-2px);
}

.quiz-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: background 0.2s;
}

.quiz-close:hover {
    background: var(--border-color);
}

/* FAQ User Custom Implementation */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: var(--font-sans);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.faq-category {
    font-size: 28px;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 24px;
    color: var(--text-main);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
}

.faq-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
    font-weight: 400;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 24px;
    background: var(--bg-color);
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 24px 24px 24px;
}

/* Legal Pages Customizations */
.legal-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 40px;
    font-family: var(--font-sans);
    line-height: 1.6;
}

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-main);
}

.legal-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.legal-container p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.legal-container a {
    color: var(--primary);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

/* Hero Section – Apple style full viewport */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    will-change: transform, opacity;
    overflow: hidden;
}

.hero-inner {
    max-width: 760px;
    padding: 0 24px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--text-main);
}

.hero-section p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.hero-scroll-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.hero-arrow {
    display: inline-block;
    animation: bounce 1.6s infinite;
    font-size: 1.1rem;
}

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

/* Testimonial ticker */
.hero-ticker {
    margin-top: 48px;
    width: 100vw;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-ticker-track {
    display: flex;
    gap: 20px;
    animation: ticker 32s linear infinite;
    width: max-content;
    will-change: transform;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 20px;
    min-width: 270px;
    max-width: 270px;
    text-align: left;
    flex-shrink: 0;
}

[data-theme='light'] .ticker-card {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.1);
}

.ticker-stars { color: var(--primary); font-size: 0.8rem; margin-bottom: 6px; letter-spacing: 2px; }
.ticker-text { font-size: 0.85rem; color: var(--text-main); line-height: 1.4; margin-bottom: 6px; }
.ticker-author { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* Page transition fade */
.page-fade-in {
    animation: pageFadeIn 0.35s ease-out both;
}

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-primary, .btn-secondary, .btn-submit {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary, .btn-submit {
    background-color: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover, .btn-submit:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--footer-bg);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: var(--footer-bg);
    border-radius: 16px;
    margin-top: 64px;
    margin-bottom: 24px;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-container p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.btn-submit {
    width: 100%;
    margin-top: 16px;
    font-size: 1.1rem;
}

.contact-success {
    padding: 32px;
    background-color: rgba(34, 197, 94, 0.1);
    color: #10b981;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 24px;
}

[data-theme='dark'] .contact-success {
    background-color: rgba(16, 185, 129, 0.15);
}