/* Brand color palette */
:root {
    --bg-cream: #F4F6F7;       /* Platinum White - lágyabb, ezüstös fehér */
    --navy-primary: #081A30;   /* mélyített navy (közel Oxford Blue) */
    --navy-secondary: #14213D; /* Oxford Blue kiegészítő */
    --dark-text: #1A1A1A;      /* erősen kontrasztos */
    --mid-text: #4A4A4A;       /* neutrális szürke */
    --accent-green: #2A4939;   /* Dark Emerald Green */
    --gold-subtle: #D4AF37;    /* luxus arany */
    --card-overlay: #FFFFFF;
    --glass-nav: rgba(247, 244, 239, 0.92);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Minimal starfield background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-cream);
}

.star {
    position: absolute;
    width: 1px;
    height: 1px;
    background: var(--navy-secondary);
    border-radius: 50%;
    opacity: 0.2;
    animation: gentle-twinkle 8s ease-in-out infinite;
}

@keyframes gentle-twinkle {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.35;
    }
}

/* Subtle geometric elements */
.floating-shape {
    position: fixed;
    z-index: -1;
    opacity: 0.1;
    animation: subtle-float 10s ease-in-out infinite;
}

.shape-1 {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--navy-primary);
    top: 15%;
    right: 10%;
}

.shape-2 {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--accent-green);
    bottom: 20%;
    left: 8%;
}

@keyframes subtle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(180deg);
    }
}

/* Navigation */
.navbar {
    background: transparent !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(11, 31, 59, 0.1);
}

.navbar.scrolled {
    background: var(--glass-nav) !important;
    border-bottom: 1px solid rgba(11, 31, 59, 0.15);
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy-primary) !important;
    letter-spacing: 0.5px;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--navy-primary) !important;
}

.nav-link.active {
    color: var(--accent-green) !important;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background: var(--accent-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    display: none;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    display: block;
}

/* CTA Button in Navigation */
.nav-cta-btn {
    background-color: var(--accent-green);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 1rem;
    border: 2px solid var(--accent-green);
    position: relative;
    overflow: hidden;
}

.nav-cta-btn i {
    vertical-align: middle;
    margin-right: 8px;
    font-size: 1rem;
}

.nav-cta-btn:hover {
    background-color: var(--navy-primary);
    border-color: var(--navy-primary);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 31, 59, 0.3);
}

.nav-cta-btn::after {
    display: none;
}

@media (max-width: 991px) {
    .nav-cta-btn {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        text-align: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    url('/img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--navy-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--mid-text);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1rem;
    color: var(--mid-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Button styles */
.btn-primary-custom {
    background-color: var(--navy-primary);
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
}

.btn-primary-custom:hover {
    background-color: var(--navy-secondary);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-outline-custom {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: var(--navy-primary);
    color: white!important;
    text-decoration: none;
}
.btn-outline-custom-dark {
    background-color: transparent;
    color: var(--navy-primary);
    border: 2px solid var(--navy-primary);
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom-dark:hover {
    background-color: var(--navy-primary);
    color: #fff!important;
    text-decoration: none;
}

/* Section Styling */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy-primary);
    letter-spacing: 0.5px;
}

/* Dark section styling */
.section-dark {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-dark::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"><defs><pattern id="darkstars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23darkstars)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.section-dark .container {
    position: relative;
    z-index: 1;
}

.section-dark .section-title {
    color: white;
}

/* Dark section styling for service cards */
.section-dark .service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section */
/* Service cards - updating icon color and button */
.service-card {
    background: var(--card-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 31, 59, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 31, 59, 0.2);
    box-shadow: 0 10px 30px rgba(11, 31, 59, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card p {
    color: var(--mid-text);
    line-height: 1.6;
    max-width: 65ch;
    margin: 0 auto 0rem auto;
    flex-grow: 1;
}

.btn-service-details {
    background-color: var(--accent-green);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    cursor: pointer;
}

.btn-service-details:hover {
    background-color: var(--navy-primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Dropdown menu styles */
.dropdown-menu {
    background: var(--card-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 31, 59, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 31, 59, 0.15);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--dark-text);
    padding: 0.75rem 1.5rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(46, 125, 111, 0.1);
    color: var(--accent-green);
    background: rgba(46, 125, 111, 0.1);
}

.dropdown-item.active {
    background: var(--accent-green);
    color: white;
    font-weight: 500;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(11, 31, 59, 0.03) 0%, rgba(46, 125, 111, 0.02) 100%);
}

.about-image {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 3px solid var(--navy-primary);
    box-shadow: 0 5px 20px rgba(11, 31, 59, 0.15);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-content h3 {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    color: var(--mid-text);
    line-height: 1.7;
    max-width: 65ch;
}

.about-content h5 {
    color: var(--navy-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-content li {
    color: var(--mid-text);
    margin-bottom: 0.5rem;
}

.about-content .fas {
    color: var(--accent-green);
}


/* Contact Section */
.contact-form {
    background: var(--card-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 31, 59, 0.1);
    border-radius: 16px;
    padding: 3rem;
}


.contact-info h5 {
    color: var(--navy-primary);
    font-weight: 500;
}

.contact-info p {
    color: var(--mid-text);
}

.contact-info .fas {
    color: var(--accent-green);
}

.contact-section {
    padding: 80px 0;
}

.event-card {
    background: var(--card-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 31, 59, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 31, 59, 0.2);
    box-shadow: 0 10px 30px rgba(11, 31, 59, 0.1);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

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

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

.event-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--navy-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(11, 31, 59, 0.3);
}

.event-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.event-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-content h4 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.3rem;
}

.event-description {
    color: var(--mid-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.event-details {
    font-size: 0.9rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.event-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.event-detail i {
    color: var(--accent-green);
    margin-right: 0.5rem;
    min-width: 16px;
}

.btn-event-register {
    background-color: var(--accent-green);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    cursor: pointer;
}

.btn-event-register:hover {
    background-color: var(--navy-primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Footer improvements */
.footer {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::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"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer h5 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-green);
}

.footer h6 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.footer h6::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--accent-green);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-social {
    margin-top: 1.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    margin-right: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.social-link:hover {
    color: white;
    background: var(--accent-green);
    transform: translateY(-2px);
}

.footer-contact {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: white;
}

.contact-item i {
    color: var(--accent-green);
    margin-right: 0.8rem;
    min-width: 20px;
    font-size: 1.1rem;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.footer-legal-link:hover {
    color: var(--accent-green);
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 2rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }

    .event-card {
        margin-bottom: 2rem;
    }

    .footer {
        padding: 30px 0;
    }
}

/* Accessibility improvements */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus improvements */
a:focus,
button:focus,
.form-control:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

/* Events Section */
.events-section {
    background: linear-gradient(135deg, rgba(11, 31, 59, 0.03) 0%, rgba(46, 125, 111, 0.02) 100%);
    padding: 80px 0;
}

/* Webshop Section */
.webshop-section {
    background: linear-gradient(135deg, rgba(11, 31, 59, 0.03) 0%, rgba(46, 125, 111, 0.02) 100%);
    padding: 80px 0;
}

.product-card {
    background: var(--card-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 31, 59, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 31, 59, 0.2);
    box-shadow: 0 15px 40px rgba(11, 31, 59, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-primary), var(--accent-green));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h4 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
}
.product-content a {
    text-decoration: none;
}

.product-description {
    color: var(--mid-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.product-features li {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.price-original {
    font-size: 1.2rem;
    color: var(--mid-text);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.btn-buy {
    background: linear-gradient(135deg, var(--accent-green), var(--navy-primary));
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 111, 0.4);
    color: white;
    text-decoration: none;
}

/* Carousel customization */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--navy-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--accent-green);
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--navy-primary);
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    background: var(--accent-green);
}

/* Facebook Group Section */
.facebook-group-section {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 50%, var(--accent-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.facebook-group-section::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"><defs><pattern id="constellation" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.8" fill="white" opacity="0.1"/><circle cx="20" cy="12" r="0.6" fill="white" opacity="0.08"/><circle cx="12" cy="20" r="0.7" fill="white" opacity="0.09"/></pattern></defs><rect width="100" height="100" fill="url(%23constellation)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.facebook-group-section .container {
    position: relative;
    z-index: 1;
}

.facebook-group-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--dark-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.facebook-group-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(46, 125, 111, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.facebook-icon-wrapper {
    display: inline-block;
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
    position: relative;
    z-index: 2;
}

.facebook-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.facebook-group-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.facebook-group-subtitle {
    font-size: 1.1rem;
    color: var(--accent-green);
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.facebook-group-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--mid-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.facebook-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.facebook-benefit {
    background: rgba(46, 125, 111, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(46, 125, 111, 0.2);
    transition: all 0.3s ease;
}

.facebook-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 125, 111, 0.2);
}

.facebook-benefit i {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    display: block;
}

.facebook-benefit h5 {
    color: var(--navy-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.facebook-benefit p {
    color: var(--mid-text);
    font-size: 0.9rem;
    margin: 0;
}

.facebook-group-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

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

.facebook-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    display: block;
    line-height: 1;
}

.facebook-stat-label {
    font-size: 0.9rem;
    color: var(--mid-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.btn-facebook-join {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    align-items: center;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

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

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

.btn-facebook-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(24, 119, 242, 0.4);
    color: white;
    text-decoration: none;
}

.btn-facebook-join i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.facebook-testimonial {
    background: rgba(11, 31, 59, 0.1);
    border-left: 4px solid var(--accent-green);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.facebook-testimonial-text {
    font-style: italic;
    color: var(--mid-text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.facebook-testimonial-author {
    color: var(--navy-primary);
    font-weight: 600;
    text-align: right;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .facebook-group-card {
        padding: 2rem 1.5rem;
    }


    .facebook-group-card::before {
        background: none;
        animation: none;
    }

    .facebook-group-title {
        font-size: 1.8rem;
    }

    .facebook-group-stats {
        gap: 2rem;
    }

    .facebook-stat-number {
        font-size: 2rem;
    }

    .btn-facebook-join {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* --- About Page Custom Styles --- */
.about-breadcrumb {
    background: none;
    font-size: 1rem;
    margin-top: 40px;
    margin-bottom: 32px;
    padding-left: 0;
    border-bottom: 2px solid #1E6355;
    padding-bottom: 20px;
}
.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 0;
}
.breadcrumb-item a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.breadcrumb-item a:hover {
    color: var(--navy-primary);
    text-decoration: underline;
}
.breadcrumb-item.active {
    color: var(--navy-primary);
    font-weight: 600;
}

.about-main {
    padding-bottom: 60px;
}
.about-main-image {
    border-radius: 50%;
    border: 4px solid var(--accent-green);
    box-shadow: 0 8px 32px rgba(46, 125, 111, 0.15);
    width: 260px;
    height: 260px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.about-main-image:hover {
    transform: scale(1.04);
}
.about-main-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--navy-primary);
    font-weight: 600;
    font-size: 2.2rem;
}
.about-main-content .text-accent {
    color: var(--accent-green);
    font-weight: 500;
}
.about-main-content p {
    color: var(--mid-text);
    font-size: 1.08rem;
    line-height: 1.7;
}
.about-main-list {
    list-style: none;
    padding-left: 0;
}
.about-main-list li {
    color: var(--navy-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.about-main-list i {
    color: var(--accent-green);
}
.about-gallery {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.about-gallery-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(46, 125, 111, 0.12);
    border: 2px solid var(--navy-primary);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-gallery-img:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 32px rgba(46, 125, 111, 0.18);
}
@media (max-width: 991px) {
    .about-main-image {
        width: 180px;
        height: 180px;
    }
    .about-gallery-img {
        width: 80px;
        height: 80px;
    }
}
@media (max-width: 768px) {
    .about-main {
        padding-bottom: 30px;
    }
    .about-main-content h2 {
        font-size: 1.5rem;
    }
    .about-gallery {
        gap: 10px;
    }
}

/* Add hover effect for dropdown */
#servicesDropdown:hover + .dropdown-menu {
    display: block;
}

/* Fix dropdown hover issue */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Ensure dropdown stays open when hovering over submenu */
.dropdown-menu:hover {
    display: block;
}

/* Service Show Page Specific Styles */
.service-description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--mid-text);
}

.service-description-content h3 {
    color: var(--navy-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 2.5rem 0 1.5rem 0;
}

.service-description-content p {
    margin-bottom: 1.5rem;
}

.detail-card {
    background: var(--card-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 31, 59, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

/* Timeline Styles */
.expectations-timeline {
    padding-left: 2rem;
    position: sticky;
    top: 70px;
}

.expectations-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-green), var(--navy-primary));
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-green);
    border: 3px solid var(--bg-cream);
    box-shadow: 0 0 0 3px var(--accent-green);
    z-index: 2;
}

.timeline-content h5 {
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
}

/* Service Statistics */
.services-stats .stat-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.services-stats .stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--mid-text);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Process Steps */
.process-step {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-icon {
    margin-bottom: 1.5rem;
}

/* Contact Options */
.contact-option {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(11, 31, 59, 0.05);
}

.contact-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(11, 31, 59, 0.1);
    box-shadow: 0 10px 25px rgba(11, 31, 59, 0.1);
}

/* FAQ Accordion Improvements */
.accordion-button {
    background: var(--card-overlay);
    border: none;
    color: var(--navy-primary);
    font-weight: 500;
    padding: 1.5rem;
    font-size: 1.1rem;
    border-radius: 12px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-green);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 111, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--card-overlay);
    color: var(--mid-text);
    padding: 1.5rem;
    border-top: 1px solid rgba(11, 31, 59, 0.1);
    line-height: 1.6;
}

/* Service Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    color: var(--dark-text);
    font-weight: 500;
}

.feature-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Related Services Section */
.related-services .service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.related-services .service-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

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

/* Responsive Design for Service Pages */
@media (max-width: 991px) {
    .service-hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .service-description-content h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }

    .expectations-timeline {
        padding-left: 1.5rem;
    }

    .expectations-timeline::before {
        left: 0.75rem;
    }

    .timeline-marker {
        left: -2rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 3rem 0 2rem;
    }

    .service-icon {
        font-size: 2.5rem !important;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-lead {
        font-size: 1.1rem !important;
    }

    .detail-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-option {
        padding: 1rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .services-stats .stat-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}




.contact-hero {
    padding: 40px 0;
}

.contact-section .contact-icon {
    font-size: 2rem;
    color: var(--accent-green);
    opacity: 0.7;
}

.contact-section .contact-form {
    background: var(--card-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 31, 59, 0.1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(11, 31, 59, 0.1);
}

.contact-section .contact-info-card,
.contact-section .social-media-card,
.contact-section .quick-contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(46, 125, 111, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(11, 31, 59, 0.15);
    height: fit-content;
    transition: all 0.3s ease;
    position: relative;
}

.contact-section .contact-info-card:hover,
.contact-section .social-media-card:hover,
.contact-section .quick-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(11, 31, 59, 0.2);
    border-color: rgba(46, 125, 111, 0.25);
}

.contact-section .contact-info-card::before,
.contact-section .social-media-card::before,
.contact-section .quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--navy-primary));
    border-radius: 16px 16px 0 0;
}

.contact-section .contact-info-card h4,
.contact-section .social-media-card h4,
.contact-section .quick-contact-card h4 {
    color: var(--navy-primary);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(11, 31, 59, 0.1);
}

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(11, 31, 59, 0.1);
    transition: all 0.3s ease;
}

.contact-section .contact-item:hover {
    background: rgba(46, 125, 111, 0.05);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.contact-section .contact-item:last-child {
    border-bottom: none;
}

.contact-section .contact-item i {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin-right: 1.2rem;
    margin-top: 0.2rem;
    min-width: 24px;
    background: rgba(46, 125, 111, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(46, 125, 111, 0.2);
}

.contact-section .contact-item h6 {
    color: var(--navy-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(11, 31, 59, 0.1);
}

.contact-section .contact-item p,
.contact-section .contact-item a {
    color: var(--mid-text)!important;
    margin: 0;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-section .contact-item a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.contact-section .social-link-card {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(46, 125, 111, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(46, 125, 111, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.contact-section .social-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-section .social-link-card:hover::before {
    left: 100%;
}

.contact-section .social-link-card:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 111, 0.4);
    text-decoration: none;
    border-color: var(--accent-green);
}

.contact-section .social-link-card i {
    font-size: 1.6rem;
    margin-right: 1.2rem;
    min-width: 35px;
    color: var(--accent-green);
    transition: color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(46, 125, 111, 0.2);
}

.contact-section .social-link-card:hover i {
    color: var(--accent-green);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-section .social-link-card h6 {
    color: var(--navy-primary);
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(11, 31, 59, 0.1);
}

.contact-section .social-link-card:hover h6 {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-section .social-link-card p {
    color: var(--mid-text);
    margin: 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-section .social-link-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.contact-section .quick-contact-buttons .btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(46, 125, 111, 0.2);
}

.contact-section .quick-contact-buttons .btn:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 111, 0.3);
}

.contact-section .quick-contact-buttons .btn i {
    font-size: 1.1rem;
    margin-right: 8px;
}

.contact-section .form-control {
    border: 2px solid rgba(11, 31, 59, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.contact-section .form-control:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 111, 0.25);
    background: white;
}

.contact-section .form-label {
    font-weight: 500;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.contact-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-section .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-section .contact-info-card,
    .contact-section .social-media-card,
    .contact-section .quick-contact-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .contact-section .contact-item {
        padding: 1rem 0;
    }

    .contact-section .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .contact-section .social-link-card {
        padding: 1rem;
    }

    .contact-section .social-link-card i {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .contact-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-section .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Események oldal speciális stílusok */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--navy-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h5 {
    color: var(--navy-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-text p {
    color: var(--mid-text);
    margin: 0;
    line-height: 1.5;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--navy-secondary));
}

.testimonial-quote {
    color: var(--accent-green);
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.testimonial-author strong {
    color: var(--navy-primary);
    display: block;
}

.testimonial-author span {
    color: var(--mid-text);
    font-size: 0.9rem;
}

.stats-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.stat-item {
    padding: 15px 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--mid-text);
    margin-top: 5px;
}

.feature-preview {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 15px;
    display: block;
}

.feature-preview h6 {
    color: var(--navy-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-preview p {
    color: var(--mid-text);
    margin: 0;
}

.newsletter-signup .card {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    color: white;
}

.newsletter-signup .card-title {
    color: white;
    font-weight: 600;
}

.newsletter-signup .card-text {
    color: rgba(255,255,255,0.9);
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
    background: rgba(255,255,255,0.95);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-green);
    background: white;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
    background: var(--accent-green);
    border: none;
    padding: 12px 20px;
    transition: background-color 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #246B5D;
}

/* Responsive fejlesztések az új elemekhez */
@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .benefit-icon {
        align-self: center;
    }

    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .stats-container {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

}

/* Esemény Show oldal specifikus stílusok */
.event-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), var(--navy-secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.event-lead {
    font-size: 1.2rem;
    color: var(--mid-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.event-meta-info {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(11, 31, 59, 0.1);
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.meta-item i {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-top: 5px;
    width: 24px;
    text-align: center;
}

.meta-item strong {
    color: var(--navy-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.meta-item p {
    color: var(--dark-text);
    margin: 0;
    font-size: 1rem;
}

.meta-item small {
    color: var(--mid-text);
    font-size: 0.9rem;
}

.event-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 31, 59, 0.15);
}

.event-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-image-container:hover .event-hero-image {
    transform: scale(1.05);
}

.event-date-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--navy-primary);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(11, 31, 59, 0.3);
}

.event-month {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

.event-description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--mid-text);
}

.event-description-content h3 {
    color: var(--navy-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 2.5rem 0 1.5rem 0;
}

.event-description-content p {
    margin-bottom: 1.5rem;
}

.expectations-benefits {
    display: grid;
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-green);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h5 {
    color: var(--navy-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--mid-text);
    margin: 0;
    line-height: 1.6;
}

.registration-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(11, 31, 59, 0.1);
    border: 1px solid rgba(11, 31, 59, 0.1);
    position: relative;
    overflow: hidden;
}

.registration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-green), var(--navy-primary));
}

.registration-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(11, 31, 59, 0.1);
}

.registration-header h4 {
    color: var(--navy-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.registration-header p {
    color: var(--accent-green);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.registration-form .form-label {
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.registration-form .form-control,
.registration-form .form-select {
    border: 2px solid rgba(11, 31, 59, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.registration-form .form-control:focus,
.registration-form .form-select:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 111, 0.25);
    background: white;
}

.registration-form .form-check-input {
    border: 2px solid rgba(11, 31, 59, 0.2);
    border-radius: 5px;
    width: 1.2rem;
    height: 1.2rem;
}

.registration-form .form-check-input:checked {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.registration-form .form-check-label {
    color: var(--mid-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-left: 0.5rem;
}

.registration-form .text-accent {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
}

.registration-form .text-accent:hover {
    text-decoration: underline;
}

.registration-submit {
    text-align: center;
    margin-top: 2rem;
}

.registration-note {
    color: var(--mid-text);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.event-summary-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(11, 31, 59, 0.1);
    border: 1px solid rgba(11, 31, 59, 0.1);
    position: sticky;
    top: 70px;
}

.event-summary-card h5 {
    color: var(--navy-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(11, 31, 59, 0.1);
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(11, 31, 59, 0.1);
    color: var(--dark-text);
    font-size: 0.95rem;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item i {
    color: var(--accent-green);
    width: 20px;
    text-align: center;
}

.summary-price {
    background: linear-gradient(135deg, var(--accent-green), var(--navy-secondary));
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0;
}

.contact-organizer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(11, 31, 59, 0.1);
}

.contact-organizer h6 {
    color: var(--navy-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.organizer-contact .contact-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--mid-text);
}

.organizer-contact .contact-item i {
    color: var(--accent-green);
    width: 20px;
    margin-right: 10px;
}

/* Responsive design event show page */
@media (max-width: 991px) {
    .event-title {
        font-size: 2rem;
    }

    .event-lead {
        font-size: 1.1rem;
    }

    .event-meta-info {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .registration-card {
        padding: 2rem;
    }

    .event-summary-card {
        padding: 2rem;
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .event-title {
        font-size: 1.8rem;
    }

    .event-meta-info {
        padding: 1rem;
    }

    .meta-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .event-hero-image {
        height: 250px;
    }

    .event-date-overlay {
        top: 15px;
        left: 15px;
        padding: 10px 15px;
    }

    .event-month {
        font-size: 0.9rem;
    }

    .event-day {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
        text-align: center;
    }

    .registration-card {
        padding: 1.5rem;
    }

    .registration-header {
        margin-bottom: 2rem;
    }

    .registration-header h4 {
        font-size: 1.3rem;
    }

    .expectations-timeline {
        padding-left: 1.5rem;
    }

    .expectations-timeline::before {
        left: 0.75rem;
    }

    .timeline-marker {
        left: -2rem;
    }
}

/* Webáruház Coming Soon oldal stílusok */
.webshop-coming-soon {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.webshop-coming-soon::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"><defs><pattern id="webshop-stars" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.8" fill="%23081A30" opacity="0.05"/><circle cx="20" cy="12" r="0.6" fill="%232A4939" opacity="0.03"/><circle cx="12" cy="20" r="0.7" fill="%23081A30" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23webshop-stars)"/></svg>');
    opacity: 0.6;
    z-index: 0;
}

.webshop-coming-soon .container {
    position: relative;
    z-index: 1;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(11, 31, 59, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(46, 125, 111, 0.05), transparent);
    transform: rotate(45deg);
    animation: cosmic-shimmer 6s infinite;
}

@keyframes cosmic-shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.cosmic-icon-wrapper {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), var(--navy-primary));
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(46, 125, 111, 0.3);
    position: relative;
    z-index: 2;
    animation: cosmic-pulse 3s ease-in-out infinite;
}

@keyframes cosmic-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(46, 125, 111, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(46, 125, 111, 0.4);
    }
}

.cosmic-icon-wrapper i {
    font-size: 3rem;
    color: white;
}

.coming-soon-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.coming-soon-subtitle {
    font-size: 1.8rem;
    color: var(--accent-green);
    font-weight: 500;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.coming-soon-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--mid-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.coming-soon-features {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature-preview-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.feature-preview-item:hover {
    transform: translateY(-10px);
}

.feature-preview-item .feature-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--navy-secondary));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(46, 125, 111, 0.2);
    transition: all 0.3s ease;
}

.feature-preview-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(46, 125, 111, 0.3);
}

.feature-preview-item .feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-preview-item h5 {
    color: var(--navy-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-preview-item p {
    color: var(--mid-text);
    margin: 0;
    line-height: 1.6;
}

.btn-notify {
    background: linear-gradient(135deg, var(--accent-green), var(--navy-primary));
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0 50px 50px 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-notify:hover {
    background: linear-gradient(135deg, var(--navy-primary), var(--accent-green));
    transform: translateX(-2px);
    color: white;
}

.alternative-contact {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(11, 31, 59, 0.1);
    position: relative;
    z-index: 2;
}

.alternative-contact h5 {
    color: var(--navy-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.alternative-contact p {
    color: var(--mid-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-follow {
    position: relative;
    z-index: 2;
}

.social-follow p {
    color: var(--mid-text);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.social-follow .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-follow .social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--navy-secondary));
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(46, 125, 111, 0.2);
}

.social-follow .social-link:hover {
    background: linear-gradient(135deg, var(--navy-primary), var(--accent-green));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 125, 111, 0.3);
    color: white;
}

/* Responsive design a webáruház coming soon oldalhoz */
@media (max-width: 991px) {
    .coming-soon-card {
        padding: 3rem 2rem;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-subtitle {
        font-size: 1.5rem;
    }

    .coming-soon-description {
        font-size: 1.1rem;
    }

    .feature-preview-item {
        padding: 1.5rem 0.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .webshop-coming-soon {
        padding: 40px 0 60px;
    }

    .coming-soon-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .cosmic-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .cosmic-icon-wrapper i {
        font-size: 2.5rem;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .coming-soon-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .coming-soon-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .coming-soon-features {
        margin-bottom: 2.5rem;
    }

    .feature-preview-item .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-preview-item .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-preview-item h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-preview-item p {
        font-size: 0.9rem;
    }

    .btn-notify {
        border-radius: 0 0 10px 10px;
        padding: 12px 20px;
    }

    .alternative-contact {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .alternative-contact h5 {
        font-size: 1.3rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.25rem 0;
    }

    .social-follow .social-links {
        gap: 0.75rem;
    }

    .social-follow .social-link {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.2rem;
    }
}



.trust-signals {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
}

.trust-item {
    transition: transform 0.2s;
}

.trust-item:hover {
    transform: translateY(-5px);
}


/* ==========================================================================
   Időpontfoglalás – kezdőlapi blokk
   ========================================================================== */

.booking-cta {
    padding: 60px 0;
    background: var(--bg-cream);
}

.booking-cta-card {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(8, 26, 48, 0.08);
}

.booking-cta-main {
    padding: 44px 44px 40px;
}

.booking-cta-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 14px;
}

.booking-cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin: 0 0 14px;
    line-height: 1.15;
}

/* Vékony arany aláhúzás – a szolgáltatás-címek jelölésének visszhangja */
.booking-cta-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    margin-top: 14px;
    background: var(--gold-subtle);
}

.booking-cta-lead {
    color: var(--mid-text);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 52ch;
    margin: 0 0 26px;
}

.booking-cta-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e8ecec;
}

.booking-cta-facts span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.booking-cta-facts i {
    color: var(--accent-green);
    font-size: 0.95rem;
}

/* A három lépés: számozott, mert tényleg sorrend – nem díszítés */
.booking-cta-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-cta-steps li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--mid-text);
    font-size: 0.97rem;
}

.booking-cta-steps li span {
    flex: none;
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-cream);
    border: 1px solid #dbe3e2;
    color: var(--accent-green);
    font-size: 0.82rem;
    font-weight: 600;
}

/* Jobb oldali, kiemelt cselekvés-sáv */
.booking-cta-action {
    background: var(--navy-primary);
    color: #fff;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.booking-cta-next {
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-cta-next-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.booking-cta-next strong {
    display: block;
    font-size: 1.12rem;
    color: var(--gold-subtle);
    text-transform: capitalize;
    line-height: 1.3;
}

.booking-cta-btn {
    width: 100%;
    justify-content: center;
}

.booking-cta-note {
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 991.98px) {
    .booking-cta-card {
        grid-template-columns: 1fr;
    }

    .booking-cta-main {
        padding: 34px 28px 28px;
    }

    .booking-cta-action {
        padding: 30px 28px;
    }

    .booking-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .booking-cta {
        padding: 40px 0;
    }

    .booking-cta-main {
        padding: 28px 20px 24px;
    }

    .booking-cta-action {
        padding: 26px 20px;
    }
}

/* A sötét akciósávban a navy gomb beleolvadna a háttérbe (mindkettő --navy-primary),
   ezért ott fehér gomb áll, navy felirattal – ez a legerősebb kontraszt, és az
   aranyat meghagyja a dátumnak, hogy a kettő ne versenyezzen egymással. */
.booking-cta-action .booking-cta-btn {
    background-color: #fff;
    color: var(--navy-primary);
    margin-right: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.booking-cta-action .booking-cta-btn:hover {
    background-color: var(--gold-subtle);
    color: var(--navy-primary);
}

/* Bal oldali, másodlagos cselekvés a világos háttéren: a három lépés után
   természetes a folytatás, és nem kell a jobb oszlopig szaladni a szemnek. */
.booking-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    padding: 11px 26px;
    border: 1.5px solid var(--navy-primary);
    border-radius: 6px;
    color: var(--navy-primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.booking-cta-secondary:hover {
    background: var(--navy-primary);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.booking-cta-secondary i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.booking-cta-secondary:hover i {
    transform: translateX(3px);
}
