/* ==========================================================================
   seminargo Theme - Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables & Custom Properties
   ========================================================================== */
:root {
    /* Colors - Matching seminargo Brand */
    --color-primary: #AC2A6E;
    --color-primary-dark: #8A1F56;
    --color-primary-light: #D93A8A;
    --color-primary-gradient-from: #AC2A6E;
    --color-primary-gradient-to: #D93A8A;
    --color-secondary: #10b981;
    --color-accent: #f59e0b;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-background: #ffffff;
    --color-surface: #f9fafb;
    --color-border: #e5e7eb;
    --color-gray-light: #F3F4F6;
    --color-gray-medium: #9CA3AF;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: var(--font-primary);
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    --spacing-5xl: 6rem;

    /* Layout - CRITICAL: All sections must use these */
    --container-max-width: 1440px;
    --container-padding: 2rem;
    --sidebar-width: 300px;
    --header-height: 80px;

    /* Borders & Radii */
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-width: 1px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure no blue outlines - always use berry color */
*:focus {
    outline-color: var(--color-primary) !important;
}

*:focus-visible {
    outline-color: var(--color-primary) !important;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

p {
    margin-bottom: var(--spacing-md);
}

/* Only apply berry color to main content links, not admin or footer */
body:not(.wp-admin) .site-main a,
body:not(.wp-admin) .site-header a,
body:not(.wp-admin) .hero-section-wrapper a {
    color: #AC2A6E;
    text-decoration: none;
    transition: color var(--transition-fast);
}

body:not(.wp-admin) .site-main a:hover,
body:not(.wp-admin) .site-header a:hover,
body:not(.wp-admin) .hero-section-wrapper a:hover {
    color: #8B1E5A;
}

/* ==========================================================================
   4. Layout Components
   ========================================================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

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

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

.button-cta {
    background-color: white;
    color: var(--color-primary);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.button-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.button-white:hover {
    background-color: var(--color-gray-light);
}

/* ==========================================================================
   6. Header Styles
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 9997;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

/* Adjust for WordPress Admin Bar */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* Main Header */
.header-main {
    background: white;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    /* No max-width or padding needed - parent .container handles that */
}

@media (max-width: 768px) {
    .header-inner {
        height: 60px;
        /* No padding - container handles it */
    }
}

/* Site Branding */
.site-branding {
    flex-shrink: 0;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
}

@media (max-width: 768px) {
    .custom-logo {
        height: 35px;
    }
}

.site-title-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.logo-text .logo-swiss {
    font-size: 0.5rem;
    vertical-align: super;
    font-weight: 400;
    color: var(--color-accent);
    margin-left: 2px;
}

.logo-tagline {
    font-size: 0.625rem;
    color: #6b7280;
    margin-top: 0.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Header Right Side */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Login Button */
.header-login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    color: #AC2A6E !important; /* Force berry color directly */
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-login-btn:hover {
    background-color: rgba(172, 42, 110, 0.1);
    color: #8B1E5A !important; /* Darker berry color */
}

.header-login-btn svg {
    width: 20px;
    height: 20px;
    stroke: #AC2A6E !important; /* Force berry color */
}

@media (max-width: 480px) {
    .header-login-btn span {
        display: none;
    }
    .header-login-btn svg {
        width: 24px;
        height: 24px;
    }
    .header-right {
        gap: 2px
    }
}

/* Menu Button */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: 2px solid #AC2A6E !important; /* Force berry color directly */
    border-radius: 50px;
    color: #AC2A6E !important; /* Force berry color directly */
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(172, 42, 110, 0.1);
}

.menu-toggle:hover {
    background: #AC2A6E !important;
    color: white !important;
}

.menu-toggle:hover svg {
    stroke: white !important;
}

.menu-toggle svg {
    width: 20px;
    height: 20px;
    stroke: #AC2A6E !important; /* Force berry color directly */
    transition: stroke 0.3s ease;
}

@media (max-width: 480px) {
    .menu-toggle span {
        display: none;
    }

    .menu-toggle {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Slide-out Menu */
.slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000001;
    pointer-events: none;
}

.admin-bar .slide-menu {
    top: 32px;
    height: calc(100% - 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .slide-menu {
        top: 46px;
        height: calc(100% - 46px);
    }
}

.slide-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.slide-menu-panel {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 480px) {
    .slide-menu-panel {
        max-width: 85%;
    }
}

.slide-menu.active {
    pointer-events: auto;
}

.slide-menu.active .slide-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.slide-menu.active .slide-menu-panel {
    right: 0;
}

.slide-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(172, 42, 110, 0.1);
    backdrop-filter: blur(10px);
}

.slide-menu-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.slide-menu-logo .logo-text .logo-swiss {
    font-size: 0.75rem;
    vertical-align: super;
    font-weight: 400;
}

.slide-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slide-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: #6b7280;
    transition: all 0.3s ease;
}

.slide-menu-close:hover {
    background-color: #f3f4f6;
}

.slide-menu-content {
    padding: 1.5rem;
    padding-bottom: 3rem;
}

.mobile-menu-container {
    margin-bottom: 2rem;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.mobile-menu li a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    color: var(--color-text) !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-menu li a .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.mobile-menu li a .menu-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-text-light);
    transition: all 0.3s ease;
}

.mobile-menu li a:hover {
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.08), rgba(217, 58, 138, 0.08));
    color: #AC2A6E !important;
    border-color: rgba(172, 42, 110, 0.2);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(172, 42, 110, 0.1);
}

.mobile-menu li a:hover .menu-icon svg {
    stroke: var(--color-primary);
    transform: scale(1.1);
}

.mobile-menu li.current-menu-item > a {
    background: linear-gradient(135deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.3);
}

.mobile-menu li.current-menu-item > a .menu-icon svg {
    stroke: white;
}

/* ===== Expandable Submenu Styles ===== */

/* Menu item wrapper for parent items with toggle button */
.mobile-menu .menu-item-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    background: white;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu .menu-item-wrapper > a {
    flex: 1;
    border: none !important;
    border-radius: 10px 0 0 10px;
}

/* Submenu toggle button */
.submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.submenu-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover states - unified wrapper */
.mobile-menu .menu-item-wrapper:hover {
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.08), rgba(217, 58, 138, 0.08));
    border-color: rgba(172, 42, 110, 0.2);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(172, 42, 110, 0.1);
}

.mobile-menu .menu-item-wrapper:hover > a {
    background: transparent !important;
    color: #AC2A6E !important;
    border-color: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.mobile-menu .menu-item-wrapper:hover > a .menu-icon svg {
    stroke: var(--color-primary);
    transform: scale(1.1);
}

.mobile-menu .menu-item-wrapper:hover .submenu-toggle {
    border-left-color: rgba(172, 42, 110, 0.15);
}

.mobile-menu .menu-item-wrapper:hover .submenu-toggle svg {
    stroke: var(--color-primary);
}

/* Active/expanded state */
.mobile-menu li.menu-item-has-children.submenu-open > .menu-item-wrapper {
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.1), rgba(217, 58, 138, 0.1));
    border-color: rgba(172, 42, 110, 0.3);
}

.mobile-menu li.menu-item-has-children.submenu-open > .menu-item-wrapper > a {
    background: transparent !important;
}

.mobile-menu li.menu-item-has-children.submenu-open > .menu-item-wrapper .submenu-toggle {
    border-left-color: rgba(172, 42, 110, 0.2);
}

.mobile-menu li.menu-item-has-children.submenu-open > .menu-item-wrapper .submenu-toggle svg {
    transform: rotate(180deg);
    stroke: var(--color-primary);
}

/* Current menu item with children */
.mobile-menu li.menu-item-has-children.current-menu-item > .menu-item-wrapper {
    background: linear-gradient(135deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.3);
}

.mobile-menu li.menu-item-has-children.current-menu-item > .menu-item-wrapper > a {
    background: transparent !important;
    color: white !important;
}

.mobile-menu li.menu-item-has-children.current-menu-item > .menu-item-wrapper > a .menu-icon svg {
    stroke: white;
}

.mobile-menu li.menu-item-has-children.current-menu-item > .menu-item-wrapper .submenu-toggle {
    border-left-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu li.menu-item-has-children.current-menu-item > .menu-item-wrapper .submenu-toggle svg {
    stroke: white;
}

/* Submenu styles */
.mobile-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}

.mobile-menu li.submenu-open > .sub-menu {
    max-height: 1000px;
    opacity: 1;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

/* Submenu items */
.mobile-menu .sub-menu li {
    margin-bottom: 0.25rem;
}

.mobile-menu .sub-menu li a {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.03), rgba(217, 58, 138, 0.03));
    border-left: 3px solid rgba(172, 42, 110, 0.2);
    position: relative;
}

.mobile-menu .sub-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, #AC2A6E, #D93A8A);
    transition: height 0.3s ease;
}

.mobile-menu .sub-menu li a:hover::before {
    height: 100%;
}

.mobile-menu .sub-menu li a .menu-icon {
    width: 16px;
    height: 16px;
}

.mobile-menu .sub-menu li a .menu-icon svg {
    width: 16px;
    height: 16px;
}

/* Nested submenu items (third level) */
.mobile-menu .sub-menu .sub-menu {
    padding-left: 1.5rem;
}

.mobile-menu .sub-menu .sub-menu li a {
    padding-left: 0.75rem;
    font-size: 0.875rem;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.02), rgba(217, 58, 138, 0.02));
    border-left-color: rgba(172, 42, 110, 0.15);
}

/* Current menu item in submenu */
.mobile-menu .sub-menu li.current-menu-item > a {
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.15), rgba(217, 58, 138, 0.15));
    color: var(--color-primary) !important;
    font-weight: 600;
    border-left-color: var(--color-primary);
}

.mobile-menu .sub-menu li.current-menu-item > a .menu-icon svg {
    stroke: var(--color-primary);
}

/* Animation for submenu items - stagger effect */
.mobile-menu li.submenu-open > .sub-menu > li {
    animation: slideInSubmenu 0.3s ease forwards;
    opacity: 0;
}

.mobile-menu li.submenu-open > .sub-menu > li:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu li.submenu-open > .sub-menu > li:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu li.submenu-open > .sub-menu > li:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu li.submenu-open > .sub-menu > li:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu li.submenu-open > .sub-menu > li:nth-child(5) { animation-delay: 0.25s; }

@keyframes slideInSubmenu {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .mobile-menu li.submenu-open > .sub-menu {
        padding-left: 0.5rem;
    }

    .mobile-menu .sub-menu li a {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
}

.mobile-icon-nav {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-icon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.mobile-icon-link svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
    transition: all 0.3s ease;
}

.mobile-icon-link span {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.mobile-icon-link:hover {
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.08), rgba(217, 58, 138, 0.08));
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(172, 42, 110, 0.2);
}

.mobile-icon-link:hover svg {
    transform: scale(1.1);
}

.mobile-cta {
    margin-top: 2rem;
}

.mobile-cta .btn-block {
    width: 100%;
}

/* Mobile Support Section */
.mobile-support-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.05), rgba(217, 58, 138, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(172, 42, 110, 0.1);
}

.support-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.support-header svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.support-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
}

.support-text {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.support-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.support-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    color: var(--color-primary) !important;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.support-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    transition: stroke 0.3s ease;
}

.support-link:hover {
    background: var(--color-primary);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.2);
}

.support-link:hover svg {
    stroke: white;
}

/* Mobile Quick Links */
.mobile-quick-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.quick-links-title {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.quick-links-list li {
    margin-bottom: 0.5rem;
}

.quick-links-list li:last-child {
    margin-bottom: 0;
}

.quick-links-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-text) !important;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.quick-links-list a svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-text-light);
    flex-shrink: 0;
    transition: stroke 0.2s ease;
}

.quick-links-list a:hover {
    background-color: rgba(172, 42, 110, 0.05);
    color: var(--color-primary) !important;
}

.quick-links-list a:hover svg {
    stroke: var(--color-primary);
}

/* Mobile Trust Badges */
.mobile-trust-badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.03), rgba(217, 58, 138, 0.03));
    border: 1px solid rgba(172, 42, 110, 0.1);
    border-radius: 8px;
    text-align: center;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    fill: none;
}

.trust-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

body.slide-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Page Content Offset for Fixed Header */
#content {
    padding-top: 70px;
}

.admin-bar #content {
    padding-top: 70px; /* Just header height - admin bar pushes header down */
}

@media (max-width: 768px) {
    #content {
        padding-top: 60px;
    }
}

@media screen and (max-width: 782px) {
    .admin-bar #content {
        padding-top: 60px; /* Just header height - admin bar pushes header down */
    }
}

/* ==========================================================================
   7. Hero Section
   ========================================================================== */
.hero-section-wrapper {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    margin-top: 0;
    padding-bottom: 1rem;
    /* Make it smaller so logo section is visible */
    min-height: calc(85vh - 70px); /* 85% of viewport minus navbar */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: stretch;
}

/* Hero Search Area */
.hero-search-area {
    background: transparent; /* Now using parent wrapper background */
    padding: 5rem var(--container-padding) 2rem var(--container-padding);
    text-align: center;
}

.hero-search-area .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Hero Content Wrapper */
.hero-content {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out;
}

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

.hero-title {
    color: #1a1a1a;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero-subtitle {
    color: #4b5563;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 42em;
    margin-left: auto;
    margin-right: auto;
    text-wrap: pretty;
}

/* Search Widget Container - for external widget */
.search-widget-container {
    max-width: 1200px; /* Wider widget for better usability */
    margin: 0 auto;
}

/* Hero Section Search Form Specific Styling */
.hero-search-area .search-filters-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out 0.2s both;
    will-change: transform, opacity;
}

.hero-search-area .search-bar-main {
    margin-bottom: 0;
}

.hero-search-area .search-field {
    transition: all 0.2s ease;
}

.hero-search-area .search-field:focus-within {
    transform: translateY(-2px);
}

.hero-search-area .search-field input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-search-area .search-field input:focus {
    border-color: #AC2A6E;
    box-shadow: 0 0 0 3px rgba(172, 42, 110, 0.1);
    outline: none;
}

.hero-search-area .btn-search-submit {
    background: #AC2A6E;
    color: white;
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 0 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-search-area .btn-search-submit:hover {
    background: #8A1F56;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 42, 110, 0.3);
}

.hero-search-area .btn-search-submit:active {
    transform: translateY(0);
}

/* Widget Wrapper */
.search-widget-wrapper {
    min-height: 80px;
    position: relative;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky Widget Styles */
.search-widget-wrapper.is-sticky {
    position: fixed;
    top: 70px; /* Actual desktop header height */
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem var(--container-padding);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.3s ease-out;
    border-bottom: 1px solid rgba(172, 42, 110, 0.1);
}

.search-widget-wrapper.is-sticky .search-widget-wrapper-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure smooth transitions */
.search-widget-wrapper-inner {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Placeholder to prevent layout shift */
.search-widget-placeholder {
    display: none;
}

.search-widget-placeholder.is-active {
    display: block;
}

/* Mobile adjustments for sticky widget */
@media (max-width: 768px) {
    .search-widget-wrapper.is-sticky {
        padding: 1rem 1rem;
        top: 60px; /* Mobile header height */
    }

    /* Account for admin bar on mobile */
    body.admin-bar .search-widget-wrapper.is-sticky {
        top: calc(60px + 46px); /* Mobile header + admin bar */
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Desktop admin bar adjustment */
@media (min-width: 769px) {
    body.admin-bar .search-widget-wrapper.is-sticky {
        top: calc(70px + 32px); /* Header + admin bar */
    }
}

/* Ensure widget elements are fully clickable */
#seminargo-widget,
#seminargo-widget * {
    pointer-events: auto !important;
}

#seminargo-widget a,
#seminargo-widget button,
#seminargo-widget [type="submit"] {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
    height: 450px;
    width: calc(100% - (var(--container-padding) * 2));
    max-width: calc(var(--container-max-width) - (var(--container-padding) * 2));
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.hero-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 0;
}

.hero-image-section:hover::before {
    transform: scale(1.08);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    transition: background 0.5s ease;
}

.hero-image-section:hover .hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
}

.hero-cta-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.1;
    white-space: nowrap; /* Keep text on one line on desktop */
}

.hero-cta-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 400;
}

.btn-inspirier {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: white;
    color: #AC2A6E !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.hero-image-section:hover .btn-inspirier,
.btn-inspirier:hover {
    background: #AC2A6E;
    color: white !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-inspirier:visited {
    color: #AC2A6E !important;
}

.btn-inspirier svg {
    width: 20px;
    height: 20px;
    stroke: #AC2A6E !important;
    transition: stroke 0.5s ease;
}

.hero-image-section:hover .btn-inspirier svg,
.btn-inspirier:hover svg {
    stroke: white !important;
}

/* Extra specificity to ensure berry color */
a.btn-inspirier,
a.btn-inspirier:link,
a.btn-inspirier:visited,
a.btn-inspirier:hover,
a.btn-inspirier:active,
a.btn-inspirier:focus {
    color: #AC2A6E !important;
    text-decoration: none !important;
}

a.btn-inspirier:hover {
    color: #8B1E5A !important;
}

/* Features Section */
.features-section {
    padding: 2rem 0 1.5rem;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: calc(var(--container-max-width) - (var(--container-padding) * 2));
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1rem 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(172, 42, 110, 0.15);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
    margin-top: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-link-text {
    position: relative;
    display: inline-block;
}

.feature-link-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #AC2A6E, #D93A8A);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-link {
    color: #8A1F56;
    gap: 0.5rem;
}

.feature-item:hover .feature-link-text::after {
    width: 100%;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.1) 0%, rgba(172, 42, 110, 0.05) 100%);
    border-radius: 12px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #AC2A6E !important;
    stroke-width: 2;
    fill: none;
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 700px;
    }

    .feature-item {
        padding: 1.5rem 1.5rem;
    }

    .hero-image-section {
        width: calc(100% - (var(--container-padding) * 1));
        margin-left: 1rem!important;
        margin-right: 0rem!important
    }

    .features-section {
        padding: 1.75rem 0 1.25rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 1.5rem 0 1rem;
    }

    .feature-item {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.8125rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-search-area .search-filters-wrapper {
        animation: none;
    }

    .hero-search-area .search-field:focus-within,
    .hero-search-area .btn-search-submit:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-search-area {
        padding: 2rem 0 1.5rem;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .hero-search-area .search-filters-wrapper {
        padding: 1.5rem;
    }

    .hero-cta-content {
        left: 30px;
        bottom: 30px;
    }

    .hero-cta-title {
        font-size: 2rem;
        white-space: normal; /* Allow wrapping on tablets and smaller */
    }

    .hero-cta-subtitle {
        font-size: 1.125rem;
    }

    .features-section {
        padding: 2rem 0;
    }

    .features-grid {
        padding: 0 1rem;
    }

    .hero-image-section {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-cta-title {
        font-size: 1.5rem;
        white-space: normal; /* Allow wrapping on mobile */
    }

    .hero-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-inspirier {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-cta-content {
        left: 20px;
        bottom: 20px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   8. CTA Banner Section
   ========================================================================== */
.cta-banner-section {
    padding: var(--spacing-3xl) 0;
}

.cta-banner {
    background: linear-gradient(90deg, #AC2A6E 0%, #D93A8A 100%);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    color: white;
}

.cta-banner-title {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.cta-banner-subtitle {
    color: white;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
}

/* ==========================================================================
   9. Logo Slider Section
   ========================================================================== */
.logo-slider-section {
    padding: 2.5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.logo-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.logo-slider {
    display: flex;
    gap: var(--spacing-4xl);
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.logo-slider:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex-shrink: 0;
}

.logo-item {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo-item svg,
.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* Duplicate logos for seamless scroll */
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .logo-slider-section {
        padding: var(--spacing-3xl) 0;
    }

    .logo-item {
        width: 100px;
        height: 50px;
    }

    .logo-slider {
        gap: var(--spacing-2xl);
    }
}

/* ==========================================================================
   10. SEO Content Section
   ========================================================================== */
.seo-content-section {
    padding: calc(var(--spacing-5xl) + var(--spacing-xl)) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.seo-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(172, 42, 110, 0.1), transparent);
}

.seo-content-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    line-height: 1.2;
    position: relative;
    padding-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    border-radius: 2px;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-4xl);
}

.seo-content-block {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(172, 42, 110, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seo-content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.seo-content-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(172, 42, 110, 0.15);
    border-color: rgba(172, 42, 110, 0.2);
}

.seo-content-block:hover::before {
    transform: scaleX(1);
}

.seo-content-block h3 {
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-left: var(--spacing-lg);
}

.seo-content-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60%;
    background: linear-gradient(180deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    border-radius: 3px;
}

.seo-content-block p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.seo-link {
    display: inline-block;
    margin-top: var(--spacing-md);
    text-decoration: none;
}

.seo-content-block:hover .feature-link {
    color: #8A1F56;
    gap: 0.5rem;
}

.seo-content-block:hover .feature-link-text::after {
    width: 100%;
}

.seo-keywords {
    margin-bottom: var(--spacing-2xl);
}

.seo-keywords h3 {
    color: var(--color-text);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.keyword-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    color: var(--color-text-light) !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background: #AC2A6E;
    border-color: #AC2A6E;
    color: white !important;
}

.trust-signals {
    text-align: center;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.02), rgba(217, 58, 138, 0.02));
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(172, 42, 110, 0.08);
    position: relative;
    overflow: hidden;
}

.trust-signals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary-gradient-from), var(--color-primary-gradient-to), transparent);
}

.trust-text {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .seo-content-block {
        padding: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: calc(var(--spacing-4xl) / 2) 0;
    }

    .seo-content-wrapper h2 {
        font-size: 1.75rem;
        margin-bottom: calc(var(--spacing-3xl) / 2);
    }

    .seo-content-block h3 {
        font-size: 1.25rem;
    }

    .seo-content-block p {
        font-size: 0.9375rem;
    }

    .trust-signals {
        padding: var(--spacing-xl);
    }

    .trust-text {
        font-size: 0.9375rem;
    }

    .keyword-tags {
        gap: 0.5rem;
    }

    .keyword-tag {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }
}

/* ==========================================================================
   10.5 Blog Teaser Section
   ========================================================================== */
.blog-teaser-section {
    padding: calc(var(--spacing-5xl) + var(--spacing-xl)) 0;
    background: white;
}

.blog-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-4xl);
}

.blog-teaser-card {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-teaser-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(172, 42, 110, 0.15);
    border-color: rgba(172, 42, 110, 0.2);
}

.blog-teaser-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--color-gray-100);
}

.blog-teaser-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-teaser-card:hover .blog-teaser-image img {
    transform: scale(1.05);
}

.blog-teaser-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-teaser-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.blog-teaser-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.blog-teaser-date svg {
    opacity: 0.6;
}

.blog-teaser-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.08), rgba(217, 58, 138, 0.08));
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
}

.blog-teaser-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.blog-teaser-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-teaser-title a:hover {
    color: var(--color-primary);
}

.blog-teaser-excerpt {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.blog-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.blog-teaser-link svg {
    transition: transform 0.2s ease;
}

.blog-teaser-link:hover {
    color: var(--color-primary-dark);
}

.blog-teaser-link:hover svg {
    transform: translateX(4px);
}

.blog-teaser-footer {
    text-align: center;
}

.button-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-2xl);
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-outline-primary svg {
    transition: transform 0.2s ease;
}

.button-outline-primary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(172, 42, 110, 0.3);
}

.button-outline-primary:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-teaser-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .blog-teaser-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-teaser-section {
        padding: var(--spacing-4xl) 0;
    }

    .blog-teaser-content {
        padding: var(--spacing-lg);
    }

    .blog-teaser-title {
        font-size: 1.25rem;
    }

    .button-outline-primary {
        padding: var(--spacing-sm) var(--spacing-xl);
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   10.6 Hotel Archive Section (Filterable)
   ========================================================================== */
.hotel-archive-section {
    padding: calc(var(--spacing-5xl) + var(--spacing-xl)) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: white;
    color: var(--color-text);
    border: 2px solid transparent;
    border-radius: var(--border-radius-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-tab svg {
    transition: transform 0.2s ease;
}

.filter-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(172, 42, 110, 0.3);
}

.filter-tab.active svg {
    transform: scale(1.1);
}

/* Filter Options */
.filter-options {
    margin-bottom: var(--spacing-3xl);
}

.filter-option-group {
    display: none;
    animation: fadeIn 0.3s ease;
}

.filter-option-group.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-description {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.0625rem;
    margin: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.03), rgba(217, 58, 138, 0.03));
    border-radius: var(--border-radius-lg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.625rem 1.25rem;
    background: white;
    color: var(--color-text);
    border: 2px solid var(--color-gray-200);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.filter-button.active {
    background: linear-gradient(135deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    color: white;
    border-color: var(--color-primary);
}

/* Hotel Archive Grid */
.hotel-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.hotel-archive-card {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    opacity: 1;
}

.hotel-archive-card.hidden {
    display: none;
}

.hotel-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(172, 42, 110, 0.15);
    border-color: rgba(172, 42, 110, 0.2);
}

.hotel-archive-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hotel-archive-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--color-gray-100);
}

.hotel-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-archive-card:hover .hotel-archive-image img {
    transform: scale(1.08);
}

.hotel-archive-stars {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hotel-archive-content {
    padding: var(--spacing-xl);
}

.hotel-archive-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.hotel-archive-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}

.hotel-archive-location svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.hotel-archive-features {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.08), rgba(217, 58, 138, 0.08));
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
}

.hotel-archive-footer {
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hotel-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .hotel-archive-section {
        padding: var(--spacing-4xl) 0;
    }

    .filter-tabs {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .filter-tab {
        width: 100%;
        justify-content: center;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .hotel-archive-grid {
        grid-template-columns: 1fr;
    }

    .hotel-archive-image {
        height: 200px;
    }
}

/* ==========================================================================
   11. Hotels Section
   ========================================================================== */
.hotels-section {
    padding: calc(var(--spacing-5xl) + var(--spacing-xl)) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

/* Section Header Styling - Homepage */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tagline {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-header .section-title {
    color: var(--color-text);
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #AC2A6E, #d64a94);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.hotel-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hotel-card.hidden {
    display: none;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.hotel-card > a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hotel-card a.hotel-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.hotel-rating-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: linear-gradient(135deg, #AC2A6E, #D93A8A);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hotel-review-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #AC2A6E;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-review-badge svg {
    width: 14px;
    height: 14px;
    fill: #fbbf24;
}

.hotel-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Legacy hotel card title - scoped */
.hotel-card .hotel-title {
    color: var(--color-text);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.hotel-location {
    color: var(--color-primary);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.hotel-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.hotel-rooms,
.hotel-bedrooms {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Featured Hotel Card - Homepage */
.featured-hotel-card .hotel-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: var(--spacing-md);
}

.featured-hotel-card .hotel-location svg {
    stroke: #AC2A6E;
    flex-shrink: 0;
}

.hotel-info-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
    margin-top: auto; /* Push to bottom of card for consistent alignment */
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-feature svg {
    width: 20px;
    height: 20px;
    color: #AC2A6E;
    flex-shrink: 0;
}

.info-feature-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-feature-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
}

.info-feature-label {
    font-size: 0.6875rem;
    color: var(--color-text-light);
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hotels-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   11. Event Types Section
   ========================================================================== */
.event-types-section {
    padding: var(--spacing-5xl) 0;
    background-color: #ffffff;
}


.event-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.event-type-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: var(--spacing-2xl);
    text-align: center;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.event-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #AC2A6E 0%, #D93A8A 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-type-card:hover {
    border-color: #AC2A6E;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(172, 42, 110, 0.15);
}

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

.event-type-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.05) 0%, rgba(217, 58, 138, 0.05) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-type-card:hover .event-type-icon {
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    transform: scale(1.1) rotate(5deg);
}

.event-type-icon svg {
    width: 48px;
    height: 48px;
    stroke: #AC2A6E;
    transition: stroke 0.4s ease;
}

.event-type-card:hover .event-type-icon svg {
    stroke: white;
}

.event-type-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.event-type-description {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
}

.event-type-arrow {
    display: none;
}

@media (max-width: 1024px) {
    .event-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .event-types-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .event-type-card {
        padding: var(--spacing-xl);
    }

    .event-types-section {
        padding: 0 0 var(--spacing-3xl);
    }
}

.inspiration-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
}

.inspiration-card h3 {
    color: var(--color-text);
    font-size: 1.125rem;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.carousel-prev,
.carousel-next {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* ==========================================================================
   12. Popular Locations Section
   ========================================================================== */
.popular-locations-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}


.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.location-card {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.location-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.location-card:hover img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: var(--spacing-xl);
    display: flex;
    align-items: flex-end;
}

.location-title {
    color: white;
    font-size: 1.25rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   13. Location Finder CTA
   ========================================================================== */
.location-finder-cta {
    padding: calc(var(--spacing-5xl) + var(--spacing-xl)) 0;
    background: linear-gradient(80deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to) 130%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.location-finder-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.location-finder-cta::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.location-finder-cta .cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    text-align: center;
}

.cta-eyebrow {
    display: inline-block;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-md);
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-finder-cta h2 {
    color: white;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.03em;
}

.location-finder-cta p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.7;
    max-width: 650px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: white;
}

.cta-benefit svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.cta-benefit span {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
}

.cta-actions {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
    flex-shrink: 0;
}

.cta-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    min-width: 240px;
    position: relative;
    overflow: hidden;
}

.cta-actions .button-white {
    background: white;
    color: #AC2A6E !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-actions .button-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(172, 42, 110, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-actions .button-white:hover::before {
    width: 300px;
    height: 300px;
}

.cta-actions .button-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.cta-actions .button-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-actions .button-outline-white:hover {
    background: white;
    color: #AC2A6E !important;
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-actions .button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-actions .button:hover svg {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .location-finder-cta .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-text {
        text-align: center;
    }

    .location-finder-cta h2 {
        font-size: 3rem;
    }

    .location-finder-cta p {
        max-width: 100%;
    }

    .cta-benefits {
        align-items: center;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .location-finder-cta {
        padding: var(--spacing-5xl) 0;
    }

    .cta-eyebrow {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: var(--spacing-sm);
    }

    .location-finder-cta h2 {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-md);
        font-weight: 700;
    }

    .location-finder-cta p {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-lg);
    }

    .cta-benefits {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-lg);
    }

    .cta-benefit span {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
    }

    .cta-actions .button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .location-finder-cta::before,
    .location-finder-cta::after {
        width: 300px;
        height: 300px;
    }
}

/* ==========================================================================
   14. Image Gallery Section
   ========================================================================== */
.image-gallery-section {
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.gallery-carousel {
    display: flex;
    gap: var(--spacing-lg);
    animation: scroll-gallery 30s linear infinite;
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-carousel:hover {
    animation-play-state: paused;
}

/* ==========================================================================
   15. Footer Styles
   ========================================================================== */
.site-footer {
    background: #111827;
    color: #d1d5db;
    margin-top: auto;
}

/* Main Footer Content */
.footer-main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-column .footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #9ca3af;
    font-size: 0.9375rem;
}

/* Social Media Links */
.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social-link:hover {
    background: #AC2A6E;
    color: white;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-column .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column .footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-column .footer-menu a {
    color: #9ca3af !important;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column .footer-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-column .footer-menu a:hover,
.footer-column .footer-menu a:focus {
    color: white !important;
}

.footer-column .footer-menu a:hover::before {
    width: 100%;
}

/* Newsletter Section */
.footer-newsletter .newsletter-text {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-email {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--color-text);
    outline: none;
}

.newsletter-email::placeholder {
    color: #9ca3af;
}

.newsletter-submit {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #AC2A6E;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

.newsletter-submit:hover {
    background: #8B2257;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    background: #030712;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0 0 0.5rem 0;
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-addresses {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

.footer-legal .separator {
    color: #4b5563;
    user-select: none;
}

/* Hide WPML Development Banner */
.otgs-development-site-front-end,
.otgs-development-site-front-end-js,
#wpml-ls-message-bar,
.wpml-development-banner {
    display: none !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 0.8rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #AC2A6E;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.3);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.back-to-top:hover {
    background: #8B2257;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 42, 110, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   16. Animations
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-600 {
    animation-delay: 600ms;
}

/* ==========================================================================
   17. Utility Classes
   ========================================================================== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.no-scroll {
    overflow: hidden;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ==========================================================================
   18. Responsive Images
   ========================================================================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   19. Forms
   ========================================================================== */
input,
textarea,
select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

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

/* ==========================================================================
   20. WordPress Specific Styles
   ========================================================================== */
.wp-block-separator {
    border-top: 2px solid var(--color-border);
    margin: var(--spacing-2xl) 0;
}

.wp-block-quote {
    border-left: 4px solid var(--color-primary);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    font-style: italic;
}

/* Alignments */
.alignleft {
    float: left;
    margin-right: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.alignright {
    float: right;
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-md);
}

/* Comments */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    padding: var(--spacing-lg);
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.comment-author .avatar {
    border-radius: 50%;
    margin-right: var(--spacing-md);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-3xl) 0;
}

.pagination a,
.pagination span {
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.pagination a:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination .current {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* ==========================================================================
   Elementor Compatibility
   ========================================================================== */

/* Elementor Canvas - Full page without header/footer */
.elementor-page.elementor-canvas {
    margin: 0 !important;
    padding: 0 !important;
}

/* Elementor Full Width - Remove container padding */
.elementor-page-layout-elementor_header_footer #primary .container {
    max-width: 100%;
    padding: 0;
}

.elementor-page-layout-elementor_header_footer .site-main {
    padding: 0;
}

/* Fix Elementor editor in admin */
.elementor-editor-active #page {
    margin: 0;
}

/* Ensure Elementor sections work properly */
.elementor-section-wrap {
    width: 100%;
}

/* Elementor widget spacing */
.elementor-widget-wrap {
    width: 100%;
}

/* Override theme container for Elementor full width */
.elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--container-max-width);
}

/* Ensure Elementor columns work */
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 10px;
}

/* Elementor button compatibility */
.elementor-button-wrapper .elementor-button {
    font-family: var(--font-primary);
}

/* Admin bar compatibility with Elementor */
.admin-bar .elementor-section {
    top: 0;
}

/* Elementor editing mode */
.elementor-editor-active .site-header {
    position: relative;
}

.elementor-editor-active body {
    overflow-x: hidden;
}

/* ==========================================================================
   Seminarhotels Archive Page
   ========================================================================== */

/* Hero Search Section */
.seminarhotels-hero {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 100%),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2000') center/cover no-repeat;
    padding: var(--spacing-5xl) 0 var(--spacing-4xl);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.seminarhotels-hero .hero-content {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.seminarhotels-hero .page-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.seminarhotels-hero .page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Search Filters */
.search-filters-wrapper {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hotel-search-form {
    width: 100%;
}

/* Main Search Bar */
.search-bar-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr auto auto;
    gap: var(--spacing-md);
    margin-bottom: 0;
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.search-field:focus-within {
    border-color: #AC2A6E;
    background: white;
    box-shadow: 0 0 0 4px rgba(172, 42, 110, 0.1);
}

.search-field label {
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
    color: var(--color-text-light);
}

.search-field input,
.search-field select {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--color-text);
    outline: none;
}

.search-field input::placeholder {
    color: var(--color-text-light);
}

.btn-search-submit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(172, 42, 110, 0.3);
}

/* Toggle Filters Button */
.toggle-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    color: #AC2A6E;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.toggle-filters:hover {
    background: #f9fafb;
    border-color: #AC2A6E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.15);
}

.toggle-filters.active {
    background: #AC2A6E;
    border-color: #AC2A6E;
    color: white;
}

.toggle-filters svg {
    stroke: currentColor;
}

/* Advanced Filters Panel */
.advanced-filters {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 0;
}

.advanced-filters.active {
    max-height: 1000px;
    margin-top: var(--spacing-lg);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--color-border);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.filter-group label:first-child {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9375rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--color-text);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: #AC2A6E;
    outline: none;
    box-shadow: 0 0 0 4px rgba(172, 42, 110, 0.1);
}

/* Price Range */
.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-range-inputs input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
}

.price-range-inputs span {
    color: var(--color-text-light);
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.checkbox-label:hover {
    background: #f9fafb;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #AC2A6E;
}

.checkbox-label span {
    font-size: 0.9375rem;
    color: var(--color-text);
}

/* Filter Actions */
.filters-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.btn-clear-filters {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-clear-filters:hover {
    color: var(--color-text);
}

.btn-apply-filters {
    padding: 0.75rem 2rem;
    background: #AC2A6E;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply-filters:hover {
    background: #8B1E5A;
    transform: translateY(-2px);
}

/* Results Section */
.seminarhotels-results {
    padding: var(--spacing-5xl) 0;
    background: #fafbfc;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.results-count {
    display: flex;
    align-items: baseline;
}

.count-text {
    font-size: 1rem;
    color: var(--color-text);
}

.count-number {
    font-weight: 600;
    color: var(--color-text-light);
    margin-right: 0.375rem;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: #f9fafb;
    padding: 0.25rem;
    border-radius: 8px;
}

.view-btn {
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    color: var(--color-text);
}

.view-btn.active {
    background: white;
    color: #AC2A6E;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Active Filters Tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(172, 42, 110, 0.1);
    color: #AC2A6E;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.filter-tag button {
    background: none;
    border: none;
    color: #AC2A6E;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.hotels-grid.view-grid {
    grid-template-columns: repeat(3, 1fr);
}

.hotels-grid.view-list {
    grid-template-columns: 1fr;
}

/* No Hotels Found Message */
.no-hotels-found {
    grid-column: 1 / -1;
    padding: var(--spacing-5xl) var(--spacing-xl);
    text-align: center;
    background: var(--color-gray-50);
    border-radius: 8px;
}

.no-hotels-found p {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    margin: 0;
}

/* Hotel Card */
.hotel-card {
    position: relative;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hotel-card:hover {
    border-color: #AC2A6E;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(172, 42, 110, 0.15);
}

.hotel-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hotel Image */
.hotel-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.hotel-stars-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #f59e0b;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Rating Badge (top-left on hotel cards) */
.hotel-rating-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #AC2A6E, #D93A8A);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    z-index: 2;
}

.hotel-rating-badge .rating-stars-container {
    display: flex;
    gap: 1px;
}

.hotel-rating-badge .rating-stars-container .star {
    font-size: 0.875rem;
    line-height: 1;
}

.hotel-rating-badge .rating-stars-container .star.full {
    color: #fbbf24;
}

.hotel-rating-badge .rating-stars-container .star.empty {
    color: rgba(255, 255, 255, 0.3);
}

.hotel-rating-badge .rating-stars-container .star.partial {
    position: relative;
    color: rgba(255, 255, 255, 0.3);
}

.hotel-rating-badge .rating-stars-container .star.partial::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #fbbf24;
    width: var(--fill-percent, 50%);
    overflow: hidden;
}

.hotel-rating-badge .rating-score {
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
}

.hotel-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Hotel Content */
.hotel-card-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card .hotel-header {
    margin-bottom: 0.5rem;
}

.hotel-card .hotel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.hotel-location svg {
    stroke: var(--color-text-light);
}

/* Rating */
.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.125rem;
}

.rating-stars .star {
    color: #e5e7eb;
    font-size: 1rem;
}

.rating-stars .star.filled {
    color: #f59e0b;
}

.rating-stars .star.half {
    color: #f59e0b;
}

.rating-score {
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.9375rem;
}

/* Rating Stars with Partial Fill */
.hotel-rating-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars-container {
    display: flex;
    gap: 0.125rem;
}

.rating-stars-container .star {
    font-size: 1rem;
    line-height: 1;
}

.rating-stars-container .star.full {
    color: #f59e0b;
}

.rating-stars-container .star.empty {
    color: #e5e7eb;
}

.rating-stars-container .star.partial {
    position: relative;
    color: #e5e7eb;
}

.rating-stars-container .star.partial::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #f59e0b;
    width: var(--fill-percent, 50%);
    overflow: hidden;
}

.rating-reviews {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Hotel Info Grid */
.hotel-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto; /* Push to bottom of card for consistent alignment */
    padding-top: var(--spacing-md); /* Spacing from header */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-size: 0.875rem;
}

.info-item svg {
    stroke: var(--color-text-light);
    flex-shrink: 0;
}

/* Amenities */
.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-md); /* Spacing from previous section */
}

.amenity-tag {
    padding: 0.375rem 0.75rem;
    background: #f9fafb;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--color-text);
    font-weight: 500;
}

.amenity-more {
    padding: 0.375rem 0.75rem;
    background: rgba(172, 42, 110, 0.1);
    color: #AC2A6E;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Features */
.hotel-features {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: var(--spacing-md); /* Spacing from previous section */
}



.feature-item svg {
    stroke: #10b981;
    flex-shrink: 0;
}

/* Hotel Footer */
.hotel-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid #f0f0f0;
    background: #f9fafb;
    margin-top: auto;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-bottom: 0.125rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #AC2A6E;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.price-period {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.price-amount-request {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.01em;
}

.card-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #AC2A6E;
    font-weight: 600;
    font-size: 0.9375rem;
}

.hotel-card:hover .card-action {
    gap: 0.75rem;
}

.card-action svg {
    transition: transform 0.3s ease;
}

.hotel-card:hover .card-action svg {
    transform: translateX(4px);
}

/* Wishlist Button */
.btn-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.btn-wishlist:hover {
    background: #AC2A6E;
    transform: scale(1.1);
}

.btn-wishlist svg {
    stroke: #AC2A6E;
    transition: all 0.3s ease;
}

.btn-wishlist:hover svg {
    stroke: white;
    fill: white;
}

.btn-wishlist.active svg {
    fill: #AC2A6E;
}

/* List View Specific Styles */
.hotels-grid.view-list .hotel-card {
    flex-direction: row;
}

.hotels-grid.view-list .hotel-card-image {
    width: 300px;
    height: auto;
    min-height: 250px;
}

.hotels-grid.view-list .hotel-card-link {
    flex-direction: row;
}

.hotels-grid.view-list .hotel-card-content {
    flex: 1;
}

.hotels-grid.view-list .hotel-info-grid {
    flex-direction: row;
    flex-wrap: wrap;
}

/* Pagination */
.pagination-wrapper {
    margin-top: var(--spacing-4xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--color-border);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.pagination-prev,
.pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: white;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
    border-color: #AC2A6E;
    background: #AC2A6E;
    color: white;
}

.pagination-prev.disabled,
.pagination-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: #f9fafb;
    border-color: var(--color-border);
}

.pagination-number.active {
    background: #AC2A6E;
    color: white;
    border-color: #AC2A6E;
}

.pagination-dots {
    color: var(--color-text-light);
    padding: 0 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .search-bar-main {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .seminarhotels-hero .page-title {
        font-size: 2rem;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .hotels-grid.view-grid {
        grid-template-columns: 1fr;
    }

    .hotels-grid.view-list .hotel-card {
        flex-direction: column;
    }

    .hotels-grid.view-list .hotel-card-image {
        width: 100%;
        height: 220px;
    }

    .hotels-grid.view-list .hotel-card-link {
        flex-direction: column;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Hotel Single Page Styles
   ========================================================================== */

body.single-hotel {
    background: #fafbfc;
}

/* Hero Section */
.hotel-hero {
    position: relative;
    margin-bottom: var(--spacing-3xl);
}

.hotel-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hotel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-featured-badge-large {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    background: #AC2A6E;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.hotel-featured-badge-large svg {
    width: 20px;
    height: 20px;
}

.hotel-hero .btn-wishlist {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 56px;
    height: 56px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.hotel-hero .btn-wishlist:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hotel-hero .btn-wishlist.active {
    background: #AC2A6E;
    color: white;
}

.hotel-hero .btn-wishlist.active svg {
    fill: white;
}

.hotel-hero .btn-wishlist svg {
    width: 24px;
    height: 24px;
    stroke: #AC2A6E;
    transition: all var(--transition-normal);
}

/* Gallery Thumbnails */
.hotel-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: -100px;
    position: relative;
    z-index: 5;
    padding: 0 var(--spacing-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-thumb {
    position: relative;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-2xl);
    font-weight: 700;
}

/* Content Wrapper */
.hotel-content-wrapper {
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-5xl);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.breadcrumbs a {
    color: var(--color-text-light) !important;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: #AC2A6E !important;
}

.breadcrumbs .separator {
    color: var(--color-gray-400);
}

.breadcrumbs .current {
    color: var(--color-text);
    font-weight: 500;
}

/* Hotel Layout: TWO COLUMNS - Left Images + Right Content */
.hotel-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column: Images (sticky) */
.hotel-images-column {
    position: sticky;
    top: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hotel-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hotel-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

/* Right Column: All Content (no sidebar) */
.hotel-content-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Remove inner layout - everything stacks */
.hotel-inner-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.hotel-main-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Hotel Header */
.hotel-header {
    margin-bottom: 0;
    border-bottom: 2px solid var(--color-gray-100);
    padding-bottom: 0;
}

.hotel-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.hotel-title-area {
    flex: 1;
}

/* Hotel title on single page only */
.hotel-single h1.hotel-title {
    font-size: 2rem !important;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.2;
}

.hotel-address-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--color-text-light);
    font-size: var(--text-base);
    margin-bottom: 0;
}

.hotel-address-header svg {
    color: #AC2A6E;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Hotel Stars Text (classification like "4S" or "5S" after hotel title) */
.hotel-stars-text {
    display: inline-block;
    font-size: 0.6em;
    color: #8A1F56;
    font-weight: 600;
    vertical-align: middle;
    line-height: 1;
    background: #fce7f3;
    padding: 0.3em 0.6em;
    border-radius: 4px;
}

/* Rating Badge (with star symbols and rating number) */
.hotel-stars-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fef3c7;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.hotel-stars-badge-large .stars-display {
    color: #f59e0b;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
}

.hotel-stars-badge-large .rating-display {
    color: #f59e0b;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
}

.hotel-meta-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hotel-location-header {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

.hotel-location-header svg {
    color: #AC2A6E;
}

.hotel-stars-badge {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: var(--text-base);
    color: #FFA500;
}

.hotel-rating-compact {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-sm);
}

.hotel-rating-compact .rating-score {
    font-weight: 700;
    color: #AC2A6E;
}

.hotel-rating-compact .rating-reviews {
    color: var(--color-text-light);
}

/* Mobile Booking Card */
.booking-card-mobile {
    display: none;
}

.hotel-rating-large {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.rating-score-large {
    width: 60px;
    height: 60px;
    background: #AC2A6E;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 700;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars-small {
    display: flex;
    gap: 2px;
}

.rating-stars-small .star {
    color: var(--color-gray-300);
    font-size: var(--text-sm);
}

.rating-stars-small .star.filled {
    color: #FFA500;
}

.rating-stars-small .star.half {
    color: #FFA500;
    opacity: 0.5;
}

.rating-reviews-count {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* Key Features Grid - Box */
.hotel-key-features {
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.key-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: white;
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.key-feature-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.key-feature-item svg {
    width: 24px;
    height: 24px;
    color: #AC2A6E;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-label {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1;
}

.feature-value {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1;
}

/* Description - Box */
.hotel-description {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-description h2 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--spacing-md) 0;
}

/* Description with Read More */
.description-content-wrapper {
    position: relative;
}

.description-content {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text);
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.description-content.expanded {
    max-height: 2000px;
}

.description-content p {
    margin-bottom: var(--spacing-md);
}

.description-content p:last-child {
    margin-bottom: 0;
}

.description-fade {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.description-content-wrapper.expanded .description-fade {
    opacity: 0;
}

.btn-read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 0;
    background: none;
    border: none;
    color: #AC2A6E;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-read-more:hover {
    color: #8a2259;
}

.btn-read-more svg {
    transition: transform 0.3s ease;
}

.btn-read-more[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.btn-read-more .read-less-text {
    display: none;
}

.btn-read-more[aria-expanded="true"] .read-more-text {
    display: none;
}

.btn-read-more[aria-expanded="true"] .read-less-text {
    display: inline;
}

/* Hide read more button if content is short */
.description-content-wrapper.no-overflow .description-fade,
.description-content-wrapper.no-overflow .btn-read-more {
    display: none;
}

.description-content-wrapper.no-overflow .description-content {
    max-height: none;
}

/* Amenities & Features - Box */
.hotel-amenities-features {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.amenities-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.amenities-section h3,
.features-section h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0;
}

.amenities-section h3 svg,
.features-section h3 svg {
    color: #AC2A6E;
}

.amenities-list,
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-sm) var(--spacing-lg);
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
}

.amenities-list li,
.features-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--text-base);
    color: var(--color-text);
}

.amenities-list li svg,
.features-list li svg {
    color: #AC2A6E;
    flex-shrink: 0;
}

/* FAQs - Box */
.hotel-faqs {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-faqs h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--spacing-lg) 0;
}

.faqs-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: #fafbfc;
}

.faq-item:hover {
    border-color: #AC2A6E;
    box-shadow: 0 2px 8px rgba(172, 42, 110, 0.08);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    transition: all 0.2s ease;
    line-height: 1.5;
}

.faq-question:hover {
    color: #AC2A6E;
}

.faq-question[aria-expanded="true"] {
    color: #AC2A6E;
}

.faq-icon {
    flex-shrink: 0;
    color: #AC2A6E;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Meeting Rooms Card */
.hotel-meeting-rooms {
    margin-top: var(--spacing-md);
}

.meeting-rooms-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.meeting-rooms-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.meeting-rooms-icon {
    width: 48px;
    height: 48px;
    background: #AC2A6E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meeting-rooms-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke: white;
}

.meeting-rooms-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meeting-rooms-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
}

.meeting-rooms-title .rooms-count {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 400;
}

/* Remove old info bar - no longer needed */

.meeting-rooms-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.meeting-rooms-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    table-layout: fixed;
}

/* Column widths for simple table */
.meeting-rooms-table-simple th:nth-child(1),
.meeting-rooms-table-simple td.room-name {
    width: 42%;
}

.meeting-rooms-table-simple th:nth-child(2),
.meeting-rooms-table-simple td.room-area {
    width: 15%;
}

.meeting-rooms-table-simple th:nth-child(3),
.meeting-rooms-table-simple td.room-capacity {
    width: 20%;
}

.meeting-rooms-table-simple th:nth-child(4),
.meeting-rooms-table-simple td.room-toggle {
    width: 23%;
}

.meeting-rooms-table thead {
    background: #f9fafb;
}

.meeting-rooms-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 2px solid #e5e7eb;
    white-space: nowrap;
}

.meeting-rooms-table th:first-child {
    padding-left: 24px;
}

.meeting-rooms-table th:last-child {
    padding-right: 24px;
}

.meeting-rooms-table tbody tr.room-row {
    border-bottom: 1px solid #f3f4f6;
}

.meeting-rooms-table tbody tr.room-row:hover {
    background: #fafbfc;
}

.meeting-rooms-table td {
    padding: 14px 16px;
    color: var(--color-text);
    vertical-align: middle;
}

.meeting-rooms-table td:first-child {
    padding-left: 24px;
}

.meeting-rooms-table td:last-child {
    padding-right: 24px;
}

.meeting-rooms-table td.room-name {
    font-weight: 600;
    color: #AC2A6E;
    word-break: break-word;
}

.meeting-rooms-table td.room-area {
    color: var(--color-text-light);
    font-weight: 500;
}

.meeting-rooms-table td.room-capacity {
    font-weight: 600;
    color: var(--color-text);
}

/* Simple 3-column table styles */
.meeting-rooms-table-simple .th-details {
    width: 100px;
}

.meeting-rooms-table-simple .room-toggle {
    text-align: right;
}

.btn-room-details {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #AC2A6E;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-room-details:hover {
    background: #e5e7eb;
}

.btn-room-details svg {
    transition: transform 0.2s ease;
}

.btn-room-details[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Expandable details row */
.room-details-row {
    display: none;
}

.room-details-row[aria-hidden="false"] {
    display: table-row;
}

.room-details-row td {
    padding: 0 !important;
    background: #f9fafb;
}

.room-details-content {
    padding: 16px 24px 20px;
    border-top: 1px dashed #e5e7eb;
}

.room-details-content .details-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.seating-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.seating-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.seating-type {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.seating-capacity {
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
}

/* Hidden rows (collapsed state) */
.meeting-rooms-table-wrapper.has-hidden-rows .room-row.room-row-hidden {
    display: none;
}

.meeting-rooms-table-wrapper.has-hidden-rows.expanded .room-row.room-row-hidden {
    display: table-row;
}

/* Details rows for hidden rooms - only show when aria-hidden is false */
.meeting-rooms-table-wrapper.has-hidden-rows .room-details-row.room-row-hidden {
    display: none;
}

.meeting-rooms-table-wrapper.has-hidden-rows.expanded .room-details-row.room-row-hidden[aria-hidden="false"] {
    display: table-row;
}

/* Show more button */
.btn-show-more-rooms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: #f9fafb;
    border: none;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #AC2A6E;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-show-more-rooms:hover {
    background: #f3f4f6;
}

.btn-show-more-rooms svg {
    transition: transform 0.2s ease;
}

.btn-show-more-rooms[data-expanded="true"] svg {
    transform: rotate(180deg);
}

.btn-show-more-rooms .show-less-text {
    display: none;
}

.btn-show-more-rooms[data-expanded="true"] .show-more-text {
    display: none;
}

.btn-show-more-rooms[data-expanded="true"] .show-less-text {
    display: inline;
}

/* Responsive Meeting Rooms Table */
@media (max-width: 768px) {
    .meeting-rooms-header {
        padding: 16px 20px;
    }

    .meeting-rooms-icon {
        width: 40px;
        height: 40px;
    }

    .meeting-rooms-icon svg {
        width: 20px;
        height: 20px;
    }

    .meeting-rooms-title h3 {
        font-size: 1rem;
    }

    .meeting-rooms-table {
        font-size: 0.8125rem;
    }

    .meeting-rooms-table th,
    .meeting-rooms-table td {
        padding: 10px 8px;
    }

    .meeting-rooms-table th:first-child,
    .meeting-rooms-table td:first-child {
        padding-left: 16px;
    }

    .meeting-rooms-table th:last-child,
    .meeting-rooms-table td:last-child {
        padding-right: 16px;
    }
}

/* Sidebar - now just stacks with content */
.hotel-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.booking-card.sticky {
    position: static;
}

.booking-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.booking-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.booking-header-text {
    flex: 1;
    min-width: 0;
}

.booking-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 4px 0;
}

.booking-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.price-info-large {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #AC2A6E;
}

.booking-card-body {
    padding: var(--spacing-lg);
}

/* Booking Form */
.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md) var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-gray-200);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #AC2A6E;
    box-shadow: 0 0 0 3px rgba(172, 42, 110, 0.08);
    background: white;
}

/* Name field - full width (1st) */
.booking-form > .form-group:nth-child(1) {
    grid-column: 1 / -1;
}

/* Email and Phone - side by side (2nd and 3rd) */
.booking-form > .form-group:nth-child(2),
.booking-form > .form-group:nth-child(3) {
    grid-column: span 1;
}

/* Date row (4th child - .form-row) */
.booking-form > .form-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

/* Guests field - full width (5th) */
.booking-form > .form-group:nth-child(5) {
    grid-column: 1 / -1;
}

/* Message field - full width (6th) */
.booking-form > .form-group:nth-child(6) {
    grid-column: 1 / -1;
}

.btn-booking {
    grid-column: 1 / -1;
    width: 100%;
    padding: 14px;
    background: #AC2A6E;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: var(--spacing-xs);
}

.btn-booking:hover {
    background: #8d2258;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.25);
}

.booking-note {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
    margin: 4px 0 0 0;
}

/* Info Card Content (replaces booking form) */
.info-card-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card-text {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.info-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.info-card-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--color-text);
}

.info-card-features li svg {
    color: #AC2A6E;
    flex-shrink: 0;
}

a.btn-info-link,
a.btn-info-link:visited,
a.btn-info-link:hover,
a.btn-info-link:active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-top: var(--spacing-sm);
    color: white !important;
}

a.btn-info-link svg {
    flex-shrink: 0;
    stroke: white;
}

/* Map Card */
.hotel-map-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.map-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.map-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.map-header-text {
    flex: 1;
    min-width: 0;
}

.map-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 4px 0;
}

.map-address {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.btn-google-maps {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-google-maps:hover {
    background: #e5e7eb;
    color: #AC2A6E;
}

.btn-google-maps svg {
    width: 14px;
    height: 14px;
}

.map-distances {
    display: flex;
    gap: 24px;
    padding: 16px 24px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.distance-item svg {
    color: #AC2A6E;
    flex-shrink: 0;
}

.distance-value {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.875rem;
}

.distance-label {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.map-container {
    padding: 0;
}

#hotel-map {
    width: 100%;
    height: 300px;
    border-radius: 0;
    overflow: hidden;
    background: #f9fafb;
}

/* Leaflet controls styling (zoom buttons) */
#hotel-map .leaflet-control-zoom {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

#hotel-map .leaflet-control-zoom a {
    background: white;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 20px;
    transition: all 0.2s ease;
}

#hotel-map .leaflet-control-zoom a:hover {
    background: #fce7f3;
    color: #AC2A6E;
}

#hotel-map .leaflet-control-zoom a:last-child {
    border-bottom: none;
}

/* Attribution styling */
#hotel-map .leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px 0 0 0;
}

#hotel-map .leaflet-control-attribution a {
    color: #6b7280;
}

/* Custom marker */
.custom-marker {
    background: transparent;
    border: none;
}

/* Popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 8px;
    background: white;
}

.leaflet-popup-content {
    margin: 8px 12px;
    line-height: 1.4;
}

.leaflet-popup-content strong {
    color: #AC2A6E;
    font-size: 15px;
    font-weight: 600;
}

.leaflet-popup-tip {
    background: white;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-close-button {
    color: #9ca3af !important;
    font-size: 20px !important;
    padding: 6px 8px !important;
    transition: color 0.2s ease;
}

.leaflet-popup-close-button:hover {
    color: #AC2A6E !important;
}

/* Quick Info */
.hotel-quick-info {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-quick-info h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 var(--spacing-md) 0;
}

.hotel-quick-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.hotel-quick-info li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: var(--text-sm);
    color: var(--color-text);
}

.hotel-quick-info li svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Call to Action Section */
.hotel-cta {
    background: linear-gradient(135deg, #AC2A6E 0%, #8d2258 100%);
    padding: var(--spacing-5xl) 0;
}

/* Remove margin-top on single hotel pages (logos section provides spacing) */
.hotel-single .hotel-cta {
    margin-top: 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-3xl);
}

.cta-text h2 {
    color: white;
}

.cta-text p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-cta-primary {
    background: white;
    color: #AC2A6E !important;
}

.btn-cta-primary:hover {
    background: var(--color-gray-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #AC2A6E !important;
    transform: translateY(-2px);
}

/* Responsive Styles for Hotel Single */
@media (max-width: 1024px) {
    .hotel-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hotel-images-column {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .amenities-features-grid {
        grid-template-columns: 1fr;
    }

    .booking-card-mobile {
        display: block;
    }

    .hotel-sidebar .booking-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hotel-card .hotel-title {
        font-size: var(--text-2xl);
    }

    /* Smaller stars text on mobile cards */
    .hotel-card .hotel-stars-text {
        font-size: 0.55em;
        margin-left: 0.4em;
    }

    .key-features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hotel-description,
    .hotel-amenities-features,
    .hotel-faqs,
    .booking-card,
    .hotel-contact-card,
    .hotel-quick-info {
        padding: var(--spacing-md);
    }

    .key-feature-item {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .feature-content {
        flex-direction: row;
        gap: var(--spacing-xs);
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: var(--text-2xl);
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Team Page
   ========================================================================== */

/* Team Header */
.team-header {
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(35deg);
}

.team-page-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

/* Team Members Section */
.team-members-section {
    padding: 4rem 0 6rem;
    background: #fafbfc;
}

.team-group {
    margin-bottom: 4rem;
}

.team-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
    margin: 5rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-divider-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fafbfc;
    padding: 0.5rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* Team Member Card */
.team-member {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.05) 0%, rgba(217, 58, 138, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-member-image {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 1.5rem;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .team-member-image {
    box-shadow: 0 12px 40px rgba(172, 42, 110, 0.2);
    transform: scale(1.02);
}

.team-member-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .team-member-image::after {
    opacity: 1;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.team-member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-member-placeholder::before {
    content: '';
    width: 80px;
    height: 80px;
    background: rgba(172, 42, 110, 0.1);
    border-radius: 50%;
}

.team-member-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.team-member:hover .team-member-name {
    color: #AC2A6E;
}

.team-member-position {
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
}

.team-member:hover .team-member-position {
    color: #AC2A6E;
}

.no-team-members {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    padding: 3rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-members-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 2rem;
    }

    .team-member-image {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .team-header {
        padding: 4rem 0;
    }

    .team-page-title {
        font-size: 2rem;
    }

    .team-members-section {
        padding: 3rem 0 4rem;
    }

    .team-members-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.5rem;
    }

    .team-member-image {
        max-width: 160px;
        border-radius: 16px;
    }

    .team-divider {
        margin: 3rem 0 2.5rem;
    }

    .team-member-name {
        font-size: 1rem;
    }

    .team-member-position {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   FAQ Page
   ========================================================================== */

/* FAQ Header */
.faq-header {
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(35deg);
}

.faq-page-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.faq-page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* FAQ Content Section */
.faq-content-section {
    padding: 4rem 0 6rem;
    background: #fafbfc;
}

/* Category Toggle */
.faq-category-toggle {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.faq-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-category-btn:hover {
    border-color: #AC2A6E;
    color: #AC2A6E;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(172, 42, 110, 0.1);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    border-color: #AC2A6E;
    color: white;
    box-shadow: 0 4px 16px rgba(172, 42, 110, 0.2);
}

.faq-category-btn svg {
    width: 20px;
    height: 20px;
}

/* Search Box */
.faq-search-wrapper {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-search-box:focus-within {
    border-color: #AC2A6E;
    box-shadow: 0 6px 30px rgba(172, 42, 110, 0.15);
}

.faq-search-box svg {
    color: #9ca3af;
    flex-shrink: 0;
}

.faq-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0 1rem;
    color: #1a1a1a;
}

.faq-search-box input::placeholder {
    color: #9ca3af;
}

.faq-search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.faq-search-clear:hover {
    background: #AC2A6E;
    color: white;
}

.faq-search-clear svg {
    color: inherit;
}

.faq-search-results-count {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* FAQ Items */
.faq-items-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(172, 42, 110, 0.3);
    box-shadow: 0 4px 20px rgba(172, 42, 110, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(172, 42, 110, 0.02);
}

.faq-question[aria-expanded="true"] {
    background: rgba(172, 42, 110, 0.05);
}

.faq-question-text {
    flex: 1;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    color: #AC2A6E;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 1.5rem 0 0 0;
}

.faq-answer-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* No Results */
.faq-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.faq-no-results svg {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.faq-no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.faq-no-results p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* FAQ CTA Section */
.faq-cta-section {
    background: linear-gradient(135deg, #AC2A6E 0%, #8A1F56 100%);
    padding: 5rem 0;
    margin-top: 4rem;
    position: relative;
}

.faq-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.faq-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.faq-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #AC2A6E !important;
    text-decoration: none !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.btn-faq-contact svg {
    stroke: #AC2A6E !important;
}

.btn-faq-contact:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    color: #8A1F56 !important;
}

.btn-faq-contact:hover svg {
    stroke: #8A1F56 !important;
}

.btn-faq-contact:visited {
    color: #AC2A6E !important;
}

.btn-faq-contact:active {
    color: #AC2A6E !important;
}

.btn-faq-contact:focus {
    color: #AC2A6E !important;
}

.btn-faq-contact-outline {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-faq-contact-outline svg {
    stroke: #ffffff !important;
}

.btn-faq-contact-outline:hover {
    background: #ffffff;
    color: #AC2A6E !important;
    border-color: #ffffff;
}

.btn-faq-contact-outline:hover svg {
    stroke: #AC2A6E !important;
}

.btn-faq-contact-outline:visited {
    color: #ffffff !important;
}

.btn-faq-contact-outline:active {
    color: #ffffff !important;
}

.btn-faq-contact-outline:focus {
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header {
        padding: 3rem 0 2rem;
    }

    .faq-page-title {
        font-size: 2rem;
    }

    .faq-page-subtitle {
        font-size: 1rem;
    }

    .faq-content-section {
        padding: 3rem 0 4rem;
    }

    .faq-category-toggle {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .faq-category-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-search-box {
        padding: 0.875rem 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 1.25rem 1.5rem 0 1.5rem;
    }

    .faq-cta-content h2 {
        font-size: 1.5rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-faq-contact {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   HOTEL SINGLE PAGE - UPDATED STYLES
   ========================================================================== */

/* Two Column Layout: Gallery Left + Content Right */
.hotel-layout.hotel-layout-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hotel-layout-two-col .hotel-gallery-column {
    position: sticky;
    top: 100px;
    min-width: 0;
    max-width: 100%;
}

.hotel-layout-two-col .hotel-content-column {
    min-width: 0;
    max-width: 100%;
}

/* Smaller rating stars and text */
.hotel-stars-badge-large {
    padding: 6px 12px;
    gap: 8px;
}

.hotel-stars-badge-large .stars-display {
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.hotel-stars-badge-large .rating-display {
    font-size: 0.8125rem;
}

/* ==========================================================================
   STATIC GALLERY (In Left Column)
   ========================================================================== */

.gallery-static {
    width: 100%;
}

.gallery-main-image {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-main-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-main-image:hover img {
    transform: scale(1.02);
}

/* Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
    z-index: 10;
    opacity: 0.7;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(172, 42, 110, 0.15);
    opacity: 1;
}

.gallery-nav svg {
    color: var(--color-gray-700);
    transition: color 0.25s ease;
}

.gallery-nav:hover svg {
    color: #AC2A6E;
}

.gallery-nav-prev {
    left: 16px;
}

.gallery-nav-next {
    right: 16px;
}

/* Image Counter */
.gallery-counter {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
}

/* View All Button */
.gallery-view-all {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-gray-800);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 10;
}

.gallery-view-all:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Thumbnail Strip */
.gallery-thumbnails {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.gallery-thumb-btn {
    flex: 0 0 auto;
    width: 80px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.gallery-thumb-btn:hover {
    opacity: 0.9;
}

.gallery-thumb-btn.active {
    border-color: var(--color-primary);
    opacity: 1;
}

.gallery-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   LIGHTBOX OVERLAY
   ========================================================================== */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox[aria-hidden="false"] {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 100px;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    color: #fff;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
    color: #fff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    max-width: 90%;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.lightbox-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.lightbox-thumb-btn {
    flex: 0 0 auto;
    width: 60px;
    height: 45px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.lightbox-thumb-btn:hover {
    opacity: 0.8;
}

.lightbox-thumb-btn.active {
    border-color: #fff;
    opacity: 1;
}

.lightbox-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   FEATURE CATEGORIES (Ausstattung, Verpflegung, Seminarraum)
   ========================================================================== */

.hotel-features-categories {
    column-count: 3;
    column-gap: 32px;
    margin-top: 24px;
}

.feature-category {
    /* No background box - clean inline with description */
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 32px;
}

.feature-category h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin: 0 0 12px;
}

.feature-category h3 svg {
    color: var(--color-gray-500);
    flex-shrink: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.feature-list li svg {
    flex-shrink: 0;
    color: var(--color-gray-400);
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   SIMILAR HOTELS SECTION
   ========================================================================== */

.similar-hotels-section {
    padding: 64px 0;
    background: var(--color-gray-50);
}

.similar-hotels-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.similar-hotels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Compact hotel cards in similar hotels section */
.similar-hotels-grid .hotel-card {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.similar-hotels-grid .hotel-card-image {
    aspect-ratio: 16 / 10;
}

.similar-hotels-grid .hotel-card-content {
    padding: 16px;
}

.similar-hotels-grid .hotel-card .hotel-header {
    margin-bottom: 0;
}

.similar-hotels-grid .hotel-card .hotel-title {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.similar-hotels-grid .hotel-card .hotel-location {
    font-size: 0.8125rem;
}

.similar-hotels-grid .hotel-card .hotel-rating {
    margin-bottom: 8px;
    font-size: 0.8125rem;
}

.similar-hotels-grid .hotel-card .rating-stars {
    font-size: 0.75rem;
}

.similar-hotels-grid .hotel-card .hotel-info-grid {
    display: none;
}

.similar-hotels-grid .hotel-card .hotel-amenities {
    display: none;
}

.similar-hotels-grid .hotel-card .hotel-features {
    display: none;
}

.similar-hotels-grid .hotel-card-footer {
    padding: 12px 16px;
}

.similar-hotels-grid .card-action {
    font-size: 0.875rem;
}

.similar-hotels-section .section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #AC2A6E;
    border: 2px solid #AC2A6E;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-view-all:hover {
    background: #AC2A6E;
    color: #fff;
}

.btn-view-all svg {
    transition: transform 0.2s ease;
}

.btn-view-all:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1200px) {
    .similar-hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hotel-layout.hotel-layout-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hotel-layout-two-col .hotel-gallery-column {
        position: static;
        top: auto;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

/* Tablet: 2 columns for amenities */
@media (max-width: 1024px) {
    .hotel-features-categories {
        column-count: 2;
        column-gap: 24px;
    }
}

@media (max-width: 768px) {
    .gallery-carousel {
        border-radius: 8px;
    }

    .gallery-slide {
        aspect-ratio: 4 / 3;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav svg {
        width: 20px;
        height: 20px;
    }

    .gallery-nav-prev {
        left: 8px;
    }

    .gallery-nav-next {
        right: 8px;
    }

    .gallery-counter {
        bottom: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 0.8125rem;
    }

    .gallery-view-all {
        bottom: 12px;
        right: 12px;
        padding: 8px 14px;
        font-size: 0.8125rem;
    }

    .gallery-thumbnails {
        padding: 8px 0;
        gap: 6px;
    }

    .gallery-thumb-btn {
        width: 64px;
        height: 48px;
    }

    .lightbox-content {
        padding: 50px 10px 80px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .hotel-features-categories {
        column-count: 1;
        column-gap: 0;
        margin-top: 20px;
    }

    .feature-category {
        margin-bottom: 24px;
    }

    .similar-hotels-section {
        padding: 48px 0 0;
    }

    .similar-hotels-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-view-all span {
        display: none;
    }

    .gallery-view-all {
        padding: 10px;
        border-radius: 8px;
    }

    .lightbox-thumbnails {
        gap: 4px;
    }

    .lightbox-thumb-btn {
        width: 50px;
        height: 38px;
    }
}

/* FORCE: Hotel single page MAIN title only (not card titles) */
body.single-hotel .hotel-header .hotel-title-area h1.hotel-title,
body.single-hotel .hotel-content-column > .hotel-header h1.hotel-title,
.hotel-single .hotel-header h1.hotel-title {
    font-size: 2rem !important;
    line-height: 1.2;
}

@media (max-width: 768px) {
    body.single-hotel .hotel-header .hotel-title-area h1.hotel-title,
    body.single-hotel .hotel-content-column > .hotel-header h1.hotel-title,
    .hotel-single .hotel-header h1.hotel-title {
        font-size: 1.5rem !important;
    }

    /* Smaller stars text on mobile */
    .hotel-stars-text {
        font-size: 0.55em;
        margin-left: 0.4em;
    }

    /* Reorder hotel header on mobile: rating first, then name, then address */
    .hotel-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .hotel-header-top .hotel-stars-badge-large {
        order: -1;
        margin-bottom: 0.25rem;
    }

    .hotel-header-top .hotel-title-area {
        order: 0;
        width: 100%;
    }

    .hotel-title-area .hotel-title {
        margin-bottom: 0.375rem !important;
    }

    .hotel-address-header {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS (480px and below)
   ========================================================================== */

@media (max-width: 480px) {
    /* Container - tighter padding on small phones */
    .container {
        padding: 0 0.75rem;
    }

    /* Logo - smaller on phones */
    .custom-logo {
        height: 28px;
        max-width: 140px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-tagline {
        font-size: 0.5rem;
    }

    /* Search submit button - hide text */
    .btn-search-submit span {
        display: none;
    }

    .btn-search-submit {
        padding: 1rem;
        min-width: 48px;
    }

    /* Hero image - reduce height */
    .hero-image-section {
        height: 260px;
    }

    .hero-cta-content h1 {
        font-size: 1.5rem;
    }

    .hero-cta-content p {
        font-size: 0.875rem;
    }

    /* Price range inputs - stack vertically */
    .price-range-inputs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-range-inputs span {
        display: none;
    }

    /* Pagination - proper touch targets */
    .pagination-prev,
    .pagination-next {
        width: 44px;
        height: 44px;
    }

    /* Team grid - smaller cards */
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .team-member-image {
        max-width: 100%;
        width: 80px;
        height: 80px;
    }

    .team-member-name {
        font-size: 0.8125rem;
    }

    .team-member-role {
        font-size: 0.6875rem;
    }

    /* Footer - tighter spacing */
    .footer-grid {
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a,
    .footer-contact-item {
        font-size: 0.875rem;
    }

    /* Hotels grid on front page */
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hotels-section .hotel-card {
        max-width: 100%;
    }

    /* Event types grid */
    .event-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Section titles */
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }

    .section-tagline {
        font-size: 0.75rem;
    }

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

    .section-header .section-title::after {
        width: 40px;
        height: 2px;
        margin-top: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Breadcrumbs - larger touch targets */
    .breadcrumbs {
        font-size: 0.8125rem;
    }

    .breadcrumbs a {
        padding: 4px 0;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Benefits grid */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* CTA section */
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.9375rem;
    }

    /* Hotel info on single page */
    .hotel-info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .key-features-grid {
        grid-template-columns: 1fr;
    }

    /* Similar hotels section */
    .similar-hotels-section {
        padding: 32px 0 0;
    }

    .similar-hotels-grid {
        gap: 12px;
    }

    /* Booking form */
    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    /* Back to top button */
    .back-to-top {
        bottom: 5.5rem;
        right: 0.7rem;
    }

    /* Slide menu close button - proper touch target */
    .slide-menu-close {
        width: 44px;
        height: 44px;
    }

    /* Lightbox navigation - proper touch targets */
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-close {
        width: 44px;
        height: 44px;
        top: 0.5rem;
        right: 0.5rem;
    }

    /* FAQ accordion - larger touch area */
    .faq-question {
        padding: 1rem;
        min-height: 48px;
    }

    /* Form inputs - prevent iOS zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px;
    }
}

/* ==========================================================================
   24. Collection Pages (SEO Landing Pages)
   ========================================================================== */

/* Hero Section - matching home page style */
.collection-hero-wrapper {
    background: var(--color-surface);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-3xl);
}

.collection-breadcrumbs {
    margin-bottom: var(--spacing-lg);
    font-size: 0.875rem;
}

.collection-breadcrumbs a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.collection-breadcrumbs a:hover {
    color: #AC2A6E;
}

.collection-breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--color-text-light);
}

.collection-breadcrumbs .current {
    color: var(--color-text);
    font-weight: 500;
}

/* Hero Image - same as home page hero-image-section */
.collection-hero-image {
    position: relative;
    height: 450px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: block;
}

.collection-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.collection-hero-image:hover::before {
    transform: scale(1.05);
}

.collection-hero-image .hero-image-wrapper {
    position: relative;
    height: 100%;
    z-index: 1;
}

.collection-hero-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.02) 100%);
    transition: background 0.5s ease;
}

.collection-hero-image:hover .hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
}

.collection-hero-image .hero-cta-content {
    position: absolute;
    left: 4rem;
    bottom: 4rem;
    max-width: 550px;
    z-index: 2;
}

.collection-hero-image .hero-cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.1;
}

.collection-hero-image .hero-cta-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 400;
}

@media (max-width: 768px) {
    .collection-hero-image {
        height: 350px;
        width: calc(100% - 2rem);
        border-radius: var(--border-radius-lg);
    }

    .collection-hero-image .hero-cta-content {
        left: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
        max-width: none;
    }

    .collection-hero-image .hero-cta-title {
        font-size: 1.75rem;
    }

    .collection-hero-image .hero-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Content Section Layout */
.collection-content-section {
    padding: var(--spacing-4xl) 0;
    background: var(--color-background);
}

.collection-layout {
    display: grid;
    gap: var(--spacing-3xl);
}

.collection-layout.has-sidebar {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .collection-layout.has-sidebar {
        grid-template-columns: 1fr 380px;
    }
}

/* Main Content */
.collection-main-content {
    min-width: 0;
}

/* Enhanced Content Styling - Applied to all entry-content areas */
.entry-content,
.collection-article .entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* Headings with gradient accent */
.entry-content h2,
.collection-article .entry-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: var(--spacing-3xl) 0 var(--spacing-lg);
    color: var(--color-text);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.entry-content h2::after,
.collection-article .entry-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    border-radius: 2px;
}

.entry-content h3,
.collection-article .entry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--spacing-2xl) 0 var(--spacing-md);
    color: var(--color-text);
    position: relative;
    padding-left: var(--spacing-md);
}

.entry-content h3::before,
.collection-article .entry-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    border-radius: 2px;
}

.entry-content h4,
.collection-article .entry-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--color-text);
}

/* Paragraphs */
.entry-content p,
.collection-article .entry-content p {
    margin-bottom: var(--spacing-lg);
}

.entry-content p:first-of-type,
.collection-article .entry-content p:first-of-type {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Enhanced Lists */
.entry-content ul,
.entry-content ol,
.collection-article .entry-content ul,
.collection-article .entry-content ol {
    margin-bottom: var(--spacing-xl);
    padding-left: 0;
    list-style: none;
}

.entry-content ul li,
.collection-article .entry-content ul li {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
    position: relative;
}

.entry-content ul li::before,
.collection-article .entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(172, 42, 110, 0.15);
}

.entry-content ol,
.collection-article .entry-content ol {
    counter-reset: list-counter;
}

.entry-content ol li,
.collection-article .entry-content ol li {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
    position: relative;
    counter-increment: list-counter;
}

.entry-content ol li::before,
.collection-article .entry-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Enhanced Links */
.entry-content a,
.collection-article .entry-content a {
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.2s ease;
}

.entry-content a::after,
.collection-article .entry-content a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to));
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.entry-content a:hover,
.collection-article .entry-content a:hover {
    color: var(--color-primary-dark);
}

.entry-content a:hover::after,
.collection-article .entry-content a:hover::after {
    opacity: 1;
}

/* Enhanced Images */
.entry-content img,
.collection-article .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    margin: var(--spacing-2xl) 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entry-content img:hover,
.collection-article .entry-content img:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Beautiful Blockquote */
.entry-content blockquote,
.collection-article .entry-content blockquote {
    position: relative;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.03), rgba(217, 58, 138, 0.03));
    border: none;
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--color-primary-gradient-from), var(--color-primary-gradient-to)) 1;
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xl) var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
    font-style: normal;
    color: var(--color-text);
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    box-shadow: 0 4px 20px rgba(172, 42, 110, 0.08);
}

.entry-content blockquote::before,
.collection-article .entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: var(--spacing-lg);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.entry-content blockquote p,
.collection-article .entry-content blockquote p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.entry-content blockquote p:last-child,
.collection-article .entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content blockquote cite,
.collection-article .entry-content blockquote cite {
    display: block;
    margin-top: var(--spacing-md);
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--color-primary);
    font-weight: 600;
}

.entry-content blockquote cite::before,
.collection-article .entry-content blockquote cite::before {
    content: '— ';
}

/* Sidebar CTA Card */
.collection-sidebar {
    position: relative;
}

.cta-card {
    background: #fff;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.cta-card.sticky {
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-xl));
}

.cta-card-header {
    background: linear-gradient(135deg, #AC2A6E 0%, #8A1F56 100%);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.cta-card-header .cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-card-header .cta-icon svg {
    color: #fff;
}

.cta-card-header .cta-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.cta-card-body {
    padding: var(--spacing-xl);
}

.cta-card-body .cta-description {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.cta-card-body .cta-phone-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--color-surface);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.cta-card-body .cta-phone-link svg {
    color: #AC2A6E;
}

.cta-card-body .cta-phone-link:hover {
    background: #f3f4f6;
}

.cta-card-body .btn-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: #AC2A6E;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-card-body .btn-cta-primary:hover {
    background: #8A1F56;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(172, 42, 110, 0.3);
}

.cta-card-footer {
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.trust-item svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

/* Hotels Grid Section */
.collection-hotels-section {
    padding: var(--spacing-4xl) 0;
    background: var(--color-surface);
}

.collection-hotels-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.collection-hotels-section .section-tagline {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.collection-hotels-section .section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

/* Hotels grid - centered and responsive */
.collection-hotels-section .hotels-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
}

.collection-hotels-section .hotels-grid .hotel-card {
    width: 100%;
    max-width: 340px;
}

@media (min-width: 640px) {
    .collection-hotels-section .hotels-grid .hotel-card {
        width: calc(50% - var(--spacing-xl) / 2);
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .collection-hotels-section .hotels-grid .hotel-card {
        width: calc(33.333% - var(--spacing-xl) * 2 / 3);
    }
}

@media (min-width: 1280px) {
    .collection-hotels-section .hotels-grid .hotel-card {
        width: calc(25% - var(--spacing-xl) * 3 / 4);
    }
}

.collection-hotels-section .section-footer {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.collection-hotels-section .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #fff;
    color: #AC2A6E !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #AC2A6E;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.collection-hotels-section .btn-view-all:hover {
    background: #AC2A6E;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(172, 42, 110, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .collection-content-section {
        padding: var(--spacing-2xl) 0;
    }

    .collection-layout {
        gap: var(--spacing-2xl);
    }

    .cta-card.sticky {
        position: relative;
        top: 0;
    }

    /* Responsive SEO Content Adjustments */
    .entry-content h2,
    .collection-article .entry-content h2 {
        font-size: 1.75rem;
        margin: var(--spacing-2xl) 0 var(--spacing-md);
    }

    .entry-content h3,
    .collection-article .entry-content h3 {
        font-size: 1.375rem;
    }

    .entry-content p:first-of-type,
    .collection-article .entry-content p:first-of-type {
        font-size: 1.0625rem;
    }

    .entry-content blockquote,
    .collection-article .entry-content blockquote {
        padding: var(--spacing-lg) var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
        margin: var(--spacing-xl) 0;
    }

    .entry-content blockquote::before,
    .collection-article .entry-content blockquote::before {
        font-size: 3rem;
        top: -5px;
        left: var(--spacing-sm);
    }

    .entry-content blockquote p,
    .collection-article .entry-content blockquote p {
        font-size: 1rem;
    }

    .collection-hotels-section {
        padding: var(--spacing-2xl) 0 0;
    }

    .hotels-section {
        padding: var(--spacing-2xl) 0 0;
    }

    .popular-locations-section {
        padding: 0 0 var(--spacing-4xl);
    }
}

/* ==========================================================================
   25. Contact Page
   ========================================================================== */

/* Hero Section */
.contact-hero {
    background: var(--color-surface);
    padding: var(--spacing-4xl) 0;
    text-align: center;
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.contact-hours {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--color-text-light);
    background: #fff;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    border: 1px solid var(--color-border);
}

.contact-hours svg {
    color: #AC2A6E;
}

/* Contact Cards */
.contact-cards-section {
    padding: var(--spacing-3xl) 0;
    background: #fff;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #AC2A6E;
    box-shadow: 0 8px 30px rgba(172, 42, 110, 0.1);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    color: #fff;
}

.contact-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.contact-card-content p {
    font-size: 1.125rem;
    color: #AC2A6E;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Main Contact Section */
.contact-main-section {
    padding: var(--spacing-4xl) 0;
    background: var(--color-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: var(--spacing-2xl);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.contact-form-wrapper .form-intro {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.form-message {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-xl);
}

.form-message.form-success {
    background: #ecfdf5;
    color: #047857;
}

.form-message.form-error {
    background: #fef2f2;
    color: #dc2626;
}

.contact-form .form-row {
    margin-bottom: var(--spacing-lg);
}

.contact-form .form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

@media (max-width: 640px) {
    .contact-form .form-row-half {
        grid-template-columns: 1fr;
    }
}

.contact-form .form-group {
    margin-bottom: 0px;
}

.contact-form label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.contact-form label .required {
    color: #AC2A6E;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #AC2A6E;
    box-shadow: 0 0 0 3px rgba(172, 42, 110, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-gray-medium);
}

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

.contact-form .form-submit {
    margin-top: var(--spacing-xl);
}

.contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    background: #AC2A6E;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
    background: #8A1F56;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(172, 42, 110, 0.3);
}

/* Privacy Checkbox */
.contact-form .form-privacy-checkbox {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.contact-form .privacy-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    cursor: pointer;
    margin-bottom: 0;
}

.contact-form .privacy-label input[type="checkbox"] {
    width: auto;
    min-width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #AC2A6E;
    flex-shrink: 0;
}

.contact-form .privacy-label span {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text);
}

.contact-form .privacy-label a {
    color: #AC2A6E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-form .privacy-label a:hover {
    color: #8A1F56;
    text-decoration: underline;
}

/* Contact Info */
.contact-info-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-xl);
}

/* Contact Page Office Cards - Horizontal Layout */
.office-locations {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.office-locations .office-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
}

.office-locations .office-card:hover {
    border-color: rgba(172, 42, 110, 0.2);
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.08);
    transform: translateY(-2px);
}

.office-locations .office-flag {
    flex-shrink: 0;
}

.office-locations .office-flag span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.office-locations .office-flag .flag-at {
    background: linear-gradient(180deg, #ed2939 33%, #fff 33%, #fff 66%, #ed2939 66%);
    color: #1f2937;
    text-shadow: 0 0 2px #fff;
}

.office-locations .office-flag .flag-de {
    background: linear-gradient(180deg, #000 33%, #dd0000 33%, #dd0000 66%, #ffcc00 66%);
    color: #fff;
    text-shadow: 0 0 2px #000;
}

.office-locations .office-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.office-locations .office-details h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
}

.office-locations .office-details address {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

.office-locations .office-details .office-contact {
    margin-top: 4px;
    margin-bottom: 0px;
}

.office-locations .office-details .office-contact a {
    color: #AC2A6E;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.office-locations .office-details .office-contact a:hover {
    color: #8A1F56;
}

/* Contact Map */
.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-map {
    width: 100%;
    height: 300px;
}

/* Custom map marker */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Leaflet popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: var(--spacing-2xl) 0;
    }

    .contact-hero-subtitle {
        font-size: 1.0625rem;
    }

    .contact-hours {
        font-size: 0.8125rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .contact-cards-section {
        padding: var(--spacing-xl) 0;
    }

    .contact-main-section {
        padding: var(--spacing-2xl) 0;
    }

    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }

    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 1.5rem;
    }
}
/* ============================================
   BLOG ARCHIVE STYLES
   ============================================ */

/* Archive Hero */
.archive-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: var(--spacing-4xl) 0 var(--spacing-3xl);
    position: relative;
}

.archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(172, 42, 110, 0.1), transparent);
}

.archive-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.archive-tagline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    background: rgba(172, 42, 110, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.archive-title {
    color: var(--color-text);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.archive-description {
    color: var(--color-text-light);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

/* Posts Section */
.posts-section {
    padding: var(--spacing-5xl) 0;
    background: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(172, 42, 110, 0.12), 0 0 0 1px rgba(172, 42, 110, 0.05);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    background: #e5e7eb;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #AC2A6E;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(172, 42, 110, 0.3);
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-card-date,
.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-card-meta svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #AC2A6E;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-readmore {
    gap: 0.75rem;
}

.blog-card-readmore svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-readmore svg {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-2xl);
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    color: #374151;
    background: white;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover {
    border-color: #AC2A6E;
    color: #AC2A6E;
    background: #fef2f7;
}

.blog-pagination .page-numbers.current {
    background: #AC2A6E;
    color: white;
    border-color: #AC2A6E;
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: none;
    pointer-events: none;
}

.blog-pagination .prev,
.blog-pagination .next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* No Results */
.no-results {
    padding: var(--spacing-5xl) 0;
    text-align: center;
}

.no-results-content h1 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
}

.no-results-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* ============================================
   SINGLE BLOG POST STYLES
   ============================================ */

.blog-single {
    background: #f9fafb;
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding-top: var(--spacing-xl);
}

/* Breadcrumbs */
.blog-post .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.blog-post .breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post .breadcrumbs a:hover {
    color: #AC2A6E;
}

.blog-post .breadcrumbs .separator {
    color: #d1d5db;
}

.blog-post .breadcrumbs .current {
    color: #111827;
    font-weight: 500;
}

/* Post Header */
.blog-post-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.post-category-badge {
    margin-bottom: 1rem;
}

.post-category-badge a {
    display: inline-block;
    background: #AC2A6E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s;
}

.post-category-badge a:hover {
    background: #8A1F56;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}

.author-name:hover {
    color: #AC2A6E;
}

.post-meta-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-separator {
    opacity: 0.5;
}

/* Featured Image */
.post-featured-image {
    margin-bottom: var(--spacing-2xl);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content */
.post-content-wrapper {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-2xl);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-xl);
}

.post-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 2rem 0 1rem;
}

.post-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 1.5rem 0 0.75rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content a {
    color: #AC2A6E;
    text-decoration: underline;
    transition: color 0.2s;
}

.post-content a:hover {
    color: #8A1F56;
}

.post-content blockquote {
    border-left: 4px solid #AC2A6E;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4b5563;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Tags */
.post-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-xl);
}

.tags-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
}

.tags-label svg {
    color: #AC2A6E;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: #f3f4f6;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.tag-item:hover {
    background: #AC2A6E;
    color: white;
}

/* Author Bio Card */
.author-bio-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-xl);
}

.author-bio-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.author-bio-text {
    flex: 1;
}

.author-bio-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
}

.author-bio-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.author-bio-name a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.author-bio-name a:hover {
    color: #AC2A6E;
}

.author-bio-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-posts-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #AC2A6E;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.author-posts-link:hover {
    gap: 0.75rem;
}

.author-posts-link svg {
    transition: transform 0.3s ease;
}

.author-posts-link:hover svg {
    transform: translateX(4px);
}

/* Post Navigation */
.post-navigation-wrapper {
    margin-bottom: var(--spacing-2xl);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.nav-post {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-direction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-title {
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-post-next {
    text-align: right;
}

.nav-post-next .nav-direction {
    justify-content: flex-end;
}

/* Related Posts */
.related-posts-section {
    padding: var(--spacing-4xl) 0;
    background: white;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.related-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.related-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-post-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
    background: #e5e7eb;
}

.related-post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #AC2A6E;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-date {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.related-post-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #AC2A6E;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}

.related-post-card:hover .related-post-readmore {
    gap: 0.75rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .archive-hero {
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
    }

    .archive-title {
        font-size: 2rem;
    }

    .archive-description {
        font-size: 1rem;
    }

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

    .posts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .post-title {
        font-size: 1.75rem;
    }

    .post-content-wrapper {
        padding: var(--spacing-lg);
    }

    .post-content {
        font-size: 1rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .nav-post-next {
        text-align: left;
    }

    .nav-post-next .nav-direction {
        justify-content: flex-start;
    }

    .author-bio-content {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-avatar {
        margin: 0 auto;
    }

    .post-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   404 Error Page Styles
   ========================================================================== */

/* 404 Hero Section */
.error-404-hero {
    padding: 120px 0 96px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.error-404-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-404-number {
    font-size: 10rem;
    font-weight: 900;
    color: #AC2A6E;
    line-height: 1;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--spacing-lg);
}

.error-404-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-3xl);
    line-height: 1.6;
}

.error-404-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.error-404-actions .button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.error-404-actions .button-primary {
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    color: white !important;
    border: none;
}

.error-404-actions .button-primary svg {
    stroke: white;
}

.error-404-actions .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(172, 42, 110, 0.3);
}

.error-404-actions .button-outline {
    background: white;
    color: #AC2A6E;
    border: 2px solid #AC2A6E;
}

.error-404-actions .button-outline:hover {
    background: #AC2A6E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(172, 42, 110, 0.2);
}

/* 404 Links Section */
.error-404-links-section {
    padding: var(--spacing-5xl) 0;
    background: white;
}

.error-404-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.error-404-link-card {
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    text-align: center;
}

.error-404-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #AC2A6E;
}

.link-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    border-radius: 50%;
    color: white;
}

.link-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--spacing-sm);
}

.link-card-description {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.link-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: #AC2A6E;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.link-card-link:hover {
    gap: var(--spacing-sm);
}

.link-card-link svg {
    transition: transform 0.3s ease;
}

.link-card-link:hover svg {
    transform: translateX(4px);
}

/* 404 Hotels Section */
.error-404-hotels-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .error-404-hero {
        padding: 96px 0 80px;
    }

    .error-404-number {
        font-size: 6rem;
    }

    .error-404-title {
        font-size: 1.75rem;
    }

    .error-404-subtitle {
        font-size: 1rem;
    }

    .error-404-actions {
        flex-direction: column;
        width: 100%;
    }

    .error-404-actions .button {
        width: 100%;
        justify-content: center;
    }

    .error-404-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .error-404-hero {
        padding: 80px 0 64px;
    }

    .error-404-number {
        font-size: 4rem;
    }

    .error-404-title {
        font-size: 1.5rem;
    }

    .link-card-icon {
        width: 56px;
        height: 56px;
    }

    .error-404-link-card {
        padding: var(--spacing-lg);
    }
}

/* ==========================================================================
   27. Solutions/Lösungen Page
   ========================================================================== */

/* Hero Section */
.solutions-hero {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(172, 42, 110, 0.1), transparent);
}

.solutions-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solutions-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.solutions-hero-subtitle {
    font-size: 1.375rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-weight: 500;
}

.solutions-hero-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Pricing Table Section */
.solutions-pricing-section {
    padding: var(--spacing-5xl) 0;
    background: white;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--spacing-3xl);
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
}

.pricing-table thead th {
    padding: var(--spacing-xl);
    background: white;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
}

.pricing-header-feature {
    color: var(--color-text);
    font-size: 1rem;
    width: 180px;
    background: #f9fafb;
}

.pricing-header-plan {
    text-align: center;
    position: relative;
}

.pricing-header-plan:nth-child(2) {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.pricing-header-plan:nth-child(3) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pricing-header-plan.highlighted {
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.1) 0%, rgba(172, 42, 110, 0.05) 100%);
}

.pricing-header-plan:nth-child(5) {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

.plan-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.plan-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #AC2A6E;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
}

.pricing-table tbody tr:hover {
    background: #fafafa;
}

.pricing-table tbody td {
    padding: var(--spacing-lg) var(--spacing-xl);
    color: var(--color-text);
    vertical-align: top;
}

.pricing-table tbody td:nth-child(1) {
    background: #f9fafb;
}

.pricing-table tbody td:nth-child(2) {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(224, 242, 254, 0.3) 100%);
}

.pricing-table tbody td:nth-child(3) {
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.5) 0%, rgba(220, 252, 231, 0.3) 100%);
}

.pricing-table tbody td.highlighted {
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.08) 0%, rgba(172, 42, 110, 0.04) 100%) !important;
}

.pricing-table tbody td:nth-child(5) {
    background: linear-gradient(135deg, rgba(254, 252, 232, 0.5) 0%, rgba(254, 249, 195, 0.3) 100%);
}

.feature-label {
    font-weight: 600;
    color: var(--color-text);
}

.access-item {
    padding: 4px 0;
    font-size: 0.9375rem;
}

.pricing-table sup {
    font-size: 0.7em;
    color: #AC2A6E;
}

/* Single CTA */
.pricing-single-cta {
    text-align: center;
    margin: var(--spacing-3xl) 0;
}

.btn-pricing-main {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 18px 40px;
    background: #AC2A6E;
    color: white !important;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.2);
}

.btn-pricing-main:hover {
    background: #8A1F56;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(172, 42, 110, 0.3);
    gap: var(--spacing-md);
}

.btn-pricing-main svg {
    transition: transform 0.3s ease;
}

.btn-pricing-main:hover svg {
    transform: translateX(4px);
}

/* Footnotes */
.pricing-footnotes {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: #f9fafb;
    border-radius: 12px;
}

.footnote-item {
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footnote-item sup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #AC2A6E;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin: 2px 0 0 0;
    flex-shrink: 0;
}

/* Consultant Section */
.solutions-consultant-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.consultant-card {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--spacing-3xl);
    padding: var(--spacing-3xl);
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.consultant-image-wrapper {
    position: relative;
}

.consultant-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.consultant-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultant-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
}

.consultant-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.consultant-email {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #AC2A6E !important;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: var(--spacing-lg);
    transition: gap 0.3s ease;
}

.consultant-email:hover {
    gap: var(--spacing-md);
}

.consultant-email svg {
    flex-shrink: 0;
}

.consultant-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.btn-consultant {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 16px 32px;
    background: #AC2A6E;
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-consultant:hover {
    background: #8A1F56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.3);
    gap: var(--spacing-md);
}

.btn-consultant svg {
    transition: transform 0.3s ease;
}

.btn-consultant:hover svg {
    transform: translateX(4px);
}

/* Benefits Section */
.solutions-benefits-section {
    padding: var(--spacing-5xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.benefit-card {
    padding: var(--spacing-xl);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #AC2A6E;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.1) 0%, rgba(172, 42, 110, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
}

.benefit-icon svg {
    color: #AC2A6E;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.benefit-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.solutions-faq-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.faq-item {
    padding: var(--spacing-xl);
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--color-text);
}

.faq-cta a {
    color: #AC2A6E !important;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-cta a:hover {
    border-bottom-color: #AC2A6E;
}

/* Final CTA Section */
.solutions-final-cta {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, #AC2A6E 0%, #8A1F56 100%);
    position: relative;
    overflow: hidden;
}

.solutions-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.final-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-3xl);
    line-height: 1.6;
}

.final-cta-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-final-cta-primary {
    background: white;
    color: #AC2A6E !important;
}

.btn-final-cta-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    gap: var(--spacing-md);
}

.btn-final-cta-primary svg {
    transition: transform 0.3s ease;
}

.btn-final-cta-primary:hover svg {
    transform: translateX(4px);
}

.btn-final-cta-secondary {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

.btn-final-cta-secondary:hover {
    background: white;
    color: #AC2A6E !important;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .consultant-card {
        grid-template-columns: 150px 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        padding: var(--spacing-4xl) 0;
    }

    .solutions-hero-title {
        font-size: 2rem;
    }

    .solutions-hero-subtitle {
        font-size: 1.125rem;
    }

    .solutions-hero-text {
        font-size: 1rem;
    }

    .pricing-table-wrapper {
        margin-bottom: var(--spacing-xl);
    }

    .btn-pricing-main {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 16px 32px;
    }

    .consultant-card {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-xl);
        text-align: center;
    }

    .consultant-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .consultant-content {
        align-items: center;
    }

    .consultant-email {
        justify-content: center;
    }

    .btn-consultant {
        align-self: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-title {
        font-size: 1.75rem;
    }

    .final-cta-text {
        font-size: 1.0625rem;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .btn-final-cta {
        width: 100%;
        justify-content: center;
    }

    .solutions-pricing-section,
    .solutions-benefits-section,
    .solutions-faq-section,
    .solutions-final-cta {
        padding: var(--spacing-3xl) 0;
    }
}

@media (max-width: 480px) {
    .solutions-hero-title {
        font-size: 1.75rem;
    }

    .solutions-hero-subtitle {
        font-size: 1rem;
    }

    .consultant-name {
        font-size: 1.5rem;
    }

    .final-cta-title {
        font-size: 1.5rem;
    }

    .pricing-footnotes {
        padding: var(--spacing-md);
    }

    .footnote-item {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   Downloads Page Styles
   ========================================================================== */

/* Downloads Hero */
.downloads-hero {
    background: linear-gradient(135deg, #AC2A6E 0%, #8A1F56 100%);
    padding: var(--spacing-5xl) 0 var(--spacing-4xl);
    position: relative;
    overflow: hidden;
}

.downloads-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(217, 58, 138, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 31, 86, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.downloads-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.downloads-hero .hero-tagline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.downloads-hero .page-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.downloads-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

/* Downloads Section */
.downloads-section {
    padding: var(--spacing-5xl) 0;
}

.downloads-section-alt {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.downloads-grid-three {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

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

/* Download Card */
.download-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: var(--spacing-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #AC2A6E, #D93A8A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(172, 42, 110, 0.15);
    border-color: rgba(172, 42, 110, 0.2);
}

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

/* Compact Cards */
.download-card-compact {
    padding: var(--spacing-lg);
}

/* Featured Cards */
.download-card-featured {
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.05) 0%, rgba(217, 58, 138, 0.02) 100%);
    border-color: rgba(172, 42, 110, 0.15);
}

/* Card Icon */
.download-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.1) 0%, rgba(172, 42, 110, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
    color: #AC2A6E;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-card:hover .download-card-icon {
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    color: white;
    transform: scale(1.05);
}

.download-card-compact .download-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-md);
}

/* Card Content */
.download-card-content {
    flex: 1;
}

.download-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--spacing-md);
    line-height: 1.3;
}

.download-card-compact .download-title {
    font-size: 1.125rem;
}

.download-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0 0 var(--spacing-md);
}

/* Benefits List */
.download-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg);
}

.download-benefits li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.download-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #AC2A6E;
    font-weight: 700;
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #AC2A6E 0%, #8A1F56 100%);
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(172, 42, 110, 0.3);
    background: linear-gradient(135deg, #8A1F56 0%, #6A1743 100%);
    color: white !important;
}

.download-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    flex-shrink: 0;
}

/* Download Link (simple) */
.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #AC2A6E;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
}

.download-link:hover {
    color: #8A1F56;
    gap: 0.5rem;
}

/* CTA Section */
.downloads-cta-section {
    background: linear-gradient(135deg, #AC2A6E 0%, #8A1F56 100%);
    padding: var(--spacing-5xl) 0;
    position: relative;
    overflow: hidden;
}

.downloads-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(217, 58, 138, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(138, 31, 86, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.downloads-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-3xl);
}

.downloads-cta-text {
    flex: 1;
}

.downloads-cta-text h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-md);
    line-height: 1.2;
}

.downloads-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.downloads-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.button-white {
    background: white;
    color: #AC2A6E;
    border-color: white;
}

.button-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.button-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.button-outline-white:hover {
    background: white;
    color: #AC2A6E;
    transform: translateY(-2px);
}

.button svg {
    width: 20px;
    height: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

    .downloads-cta-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .downloads-cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .downloads-hero {
        padding: var(--spacing-4xl) 0 var(--spacing-3xl);
    }

    .downloads-hero .page-title {
        font-size: 2rem;
    }

    .downloads-hero .hero-subtitle {
        font-size: 1rem;
    }

    .downloads-section {
        padding: var(--spacing-4xl) 0;
    }

    .downloads-grid-three {
        grid-template-columns: 1fr;
    }

    .downloads-grid-two {
        grid-template-columns: 1fr;
    }

    .download-card {
        padding: var(--spacing-lg);
    }

    .downloads-cta-text h2 {
        font-size: 1.5rem;
    }

    .downloads-cta-text p {
        font-size: 1rem;
    }

    .downloads-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .download-card-icon {
        width: 56px;
        height: 56px;
    }

    .download-title {
        font-size: 1.125rem;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ÜBER UNS PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    padding: var(--spacing-5xl) 0 var(--spacing-4xl);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(172, 42, 110, 0.1), transparent);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero .hero-tagline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(172, 42, 110, 0.1);
    border-radius: 50px;
}

.about-hero .page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Leadership Section */
.about-leadership {
    padding: var(--spacing-5xl) 0;
    background: white;
}

.leadership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.leadership-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.leadership-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-header-left {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.section-header-left .section-tagline {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #AC2A6E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-header-left .section-title {
    color: var(--color-text);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.section-header-left .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #AC2A6E, #d64a94);
    margin: 1rem 0 0;
    border-radius: 2px;
}

.leadership-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Stats Section */
.about-stats {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.stat-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(172, 42, 110, 0.15);
    border-color: rgba(172, 42, 110, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.1) 0%, rgba(217, 58, 138, 0.1) 100%);
    border-radius: 50%;
}

.stat-icon svg {
    stroke: #AC2A6E;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #AC2A6E;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Services Section */
.about-services {
    padding: var(--spacing-5xl) 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: var(--spacing-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #AC2A6E, #D93A8A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(172, 42, 110, 0.15);
    border-color: rgba(172, 42, 110, 0.2);
}

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

.service-card-premium {
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.03) 0%, rgba(217, 58, 138, 0.03) 100%);
    border-color: rgba(172, 42, 110, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(172, 42, 110, 0.1) 0%, rgba(217, 58, 138, 0.1) 100%);
    border-radius: 50%;
    margin-bottom: var(--spacing-lg);
}

.service-icon svg {
    stroke: #AC2A6E;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #AC2A6E;
    font-weight: 700;
}

/* Offices Section */
.about-offices {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.about-offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-3xl);
    align-items: start;
}

.about-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    background: #e5e7eb;
}

.about-map {
    width: 100%;
    height: 400px;
    min-height: 400px;
}

.about-office-locations {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.about-office-locations .office-card {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-office-locations .office-card:hover {
    border-color: rgba(172, 42, 110, 0.2);
    box-shadow: 0 4px 12px rgba(172, 42, 110, 0.08);
    transform: translateY(-2px);
}

.about-office-locations .office-flag {
    flex-shrink: 0;
}

.about-office-locations .office-flag span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
}

.about-office-locations .office-flag .flag-at {
    background: linear-gradient(180deg, #ed2939 33%, #fff 33%, #fff 66%, #ed2939 66%);
    color: #1f2937;
    text-shadow: 0 0 2px #fff;
}

.about-office-locations .office-flag .flag-de {
    background: linear-gradient(180deg, #000 33%, #dd0000 33%, #dd0000 66%, #ffcc00 66%);
    color: #fff;
    text-shadow: 0 0 2px #000;
}

.about-office-locations .office-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-office-locations .office-details h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
}

.about-office-locations .office-details address {
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.about-office-locations .office-details .office-contact {
    margin-top: 6px;
    margin-bottom: 0px;
}

.about-office-locations .office-details .office-contact a {
    color: #AC2A6E;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-office-locations .office-details .office-contact a:hover {
    color: #8A1F56;
}

/* About CTA Section */
.about-cta-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, #AC2A6E 0%, #D93A8A 100%);
    color: white;
}

.about-cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about-cta-text p {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.about-cta-buttons .button-outline-white {
    color: white !important;
    border-color: white;
}

.about-cta-buttons .button-outline-white svg {
    stroke: white;
}

.about-cta-buttons .button-outline-white:hover svg {
    stroke: #AC2A6E;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-hero .page-title {
        font-size: 2.5rem;
    }

    .leadership-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }

    .leadership-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: var(--spacing-4xl) 0 var(--spacing-3xl);
    }

    .about-hero .page-title {
        font-size: 2rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.125rem;
    }

    .about-leadership,
    .about-stats,
    .about-services,
    .about-offices,
    .about-cta-section {
        padding: var(--spacing-4xl) 0;
    }

    .section-header-left .section-title,
    .section-title {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-offices-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-text h2 {
        font-size: 2rem;
    }

    .about-cta-text p {
        font-size: 1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero .page-title {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .office-title {
        font-size: 1.5rem;
    }

    .about-cta-text h2 {
        font-size: 1.75rem;
    }
}