/* ==========================================
   CSS Variables & Reset
   ========================================== */

:root {
    --primary-dark: #0F172A;
    --secondary-dark: #1E293B;
    --light-gray: #A0A8B8;
    --accent-yellow: #F4D740;
    --dark-yellow: #D2B306;
    --white: #FFFFFF;
    --black: #000000;
    --transition: all 0.25s ease;
}

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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background: #0F172A;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==========================================
   Loading Screen
   ========================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: none;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo {
    position: relative;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 3px solid var(--accent-yellow);
    animation: rotate 3s linear infinite;
}

.loading-logo-image {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 5px solid var(--accent-yellow);
    box-shadow: 0 10px 40px rgba(244, 215, 64, 0.3);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(244, 215, 64, 0.2);
    border-top-color: var(--accent-yellow);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   Scroll Progress Bar
   ========================================== */

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--dark-yellow));
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease;
    box-shadow: 0 2px 10px rgba(244, 215, 64, 0.5);
}

/* ==========================================
   Container & Section
   ========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section backgrounds */
.section {
    padding: 80px 0;
    position: relative;
    background: #FFFFFF;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: none;
}

.section.visible {
    opacity: 1;
}

.section:hover {
    background: #FFFFFF;
    box-shadow: none;
    transform: none;
}

.section-dark {
    background: #111827;
    color: var(--white);
}

.section-dark:hover {
    background: #111827;
    box-shadow: none;
    transform: none;
}

.appointment-section {
    background: #F8FAFC;
}

/* Blog Section */
.blog-section {
    background: #F8FAFC;
}

.reviews.section {
    background: #FFFFFF;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.blog-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 0 0 24px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.blog-card:hover {
    border-color: #F4D740;
    box-shadow: 0 16px 36px rgba(244, 215, 64, 0.18);
    transform: translateY(-6px);
}

.blog-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #E5E7EB;
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(244, 215, 64, 0.92);
    color: #0F172A;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.blog-card h3 {
    font-size: 1.35rem;
    margin: 20px 20px 10px;
    color: #0F172A;
}

.blog-card p {
    color: #475569;
    line-height: 1.6;
    margin: 0 20px 16px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #94A3B8;
    margin: 0 20px 20px;
}

.blog-card .btn {
    margin: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    opacity: 1;
    transform: none;
    transition: color 0.3s ease;
}

.section-title.reveal {
    opacity: 1;
    transform: none;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    margin: 20px auto;
    transition: none;
}

.sr-only,
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-title.reveal::after {
    width: 80px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: var(--secondary-dark);
    font-weight: 500;
}

.section-dark .section-subtitle {
    color: var(--light-gray);
}

/* ==========================================
   Navigation
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    display: block;
    position: fixed;
    top: 0;
    left: calc((100% - 1200px) / 2 - 200px);
    z-index: 1001;
    background: var(--accent-yellow);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(244, 215, 64, 0.3);
    transition: var(--transition);
}

@media (max-width: 1440px) {
    .logo {
        left: 20px;
    }
}

.logo-image {
    height: 150px;
    width: auto;
    display: block;
}

.logo:hover {
    transform: translateY(5px);
    box-shadow: 0 8px 20px rgba(244, 215, 64, 0.5);
}

/*.nav-menu {
    margin-left: auto;
}*/

.nav-menu {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 16px;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 960px) {
    .navbar .container {
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: 16px;
        left: 16px;
        flex-direction: column;
        gap: 12px;
        background: rgba(15, 23, 42, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 18px 16px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        display: block;
        padding: 10px 12px;
        border-radius: 8px;
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    background: rgba(244, 215, 64, 0.15);
    color: var(--accent-yellow);
    box-shadow: 0 8px 18px rgba(244, 215, 64, 0.25);
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #111827 100%);
    color: var(--white);
    padding: 120px 0 80px;
    gap: 30px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(148, 163, 184, 0.12), rgba(148, 163, 184, 0.05));
    background-size: 200% 200%;
    opacity: 0.3;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-heading {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.hero-name {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: var(--accent-yellow);
    text-transform: none;
}

.hero-typing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 25px;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.cursor {
    display: inline-block;
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--light-gray);
    min-height: 120px;
    transition: opacity 0.3s ease;
}

.hero-cta {
    display: inline-block;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: opacity 0.45s ease;
    will-change: opacity;
}

.hero-image img.fade-out {
    opacity: 0;
}

.hero-image img.fade-in {
    opacity: 1;
}

/* Animated Lines Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.line {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    opacity: 0.3;
    transform: rotate(-45deg);
    animation: slideLines linear infinite;
}

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

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    .hero-background {
        animation: none;
    }

    .line {
        animation: none;
        opacity: 0.15;
    }
}

/* Animations */
.animate-fadeInUp {
    animation: fadeInUp 1s ease;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.delay-2 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.delay-3 { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }

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

/* ==========================================
   Buttons
   ========================================== */

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 215, 64, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(40, 49, 58, 0.3);
}

.btn-text {
    background: transparent;
    color: var(--light-gray);
    padding: 10px 20px;
}

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

/* ==========================================
   About Section
   ========================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--secondary-dark);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--secondary-dark);
    font-size: 1rem;
}

/* ==========================================
   Services Section
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(244, 215, 64, 0.25);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.03);
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    padding: 30px 30px 10px;
}

.service-card > p {
    color: var(--secondary-dark);
    padding: 0 30px 20px;
    font-size: 1rem;
}

.service-list {
    padding: 0 30px 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.service-list i {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.service-card .btn {
    margin: 0 30px 30px;
    display: block;
    width: calc(100% - 60px);
}

/* ==========================================
   Portfolio Section
   ========================================== */

.portfolio-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-container {
    position: relative;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease;
    pointer-events: none;
}

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

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.85), rgba(0,0,0,0.4));
    color: var(--white);
    padding: 50px 30px 30px;
}

.slide-caption h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slide-caption p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.slide-caption .btn {
    display: inline-block;
    margin-top: 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent-yellow);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================
   Contact Section
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-yellow);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 215, 64, 0.1);
    border-radius: 50%;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: var(--light-gray);
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(244, 215, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-yellow);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--secondary-dark);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.15);
}

#formMessage {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

#formMessage.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 2px solid #4CAF50;
    display: block;
}

#formMessage.error {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 2px solid #F44336;
    display: block;
}

.contact-next-steps {
    margin-top: 30px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-yellow);
    border-radius: 12px;
    color: var(--light-gray);
    line-height: 1.7;
}

.contact-next-steps h4 {
    margin-bottom: 15px;
    color: var(--accent-yellow);
    font-size: 1.25rem;
}

.contact-next-steps ul {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.contact-next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-next-steps i {
    margin-top: 4px;
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

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

/* ==========================================
   Scroll to Top Button
   ========================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--dark-yellow);
    transform: translateY(-5px);
}

/* ==========================================
   Cookie Banner
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================
   Cookie Modal
   ========================================== */

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border-radius: 12px 12px 0 0;
}

.cookie-modal-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-modal-header h2 i {
    color: var(--accent-yellow);
}

.close-modal {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.cookie-intro {
    font-size: 1rem;
    color: var(--secondary-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Cookie Category */
.cookie-category {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.cookie-category:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 4px 12px rgba(244, 215, 64, 0.2);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    cursor: pointer;
}

.cookie-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-category-title i {
    font-size: 1.5rem;
    color: var(--accent-yellow);
}

.cookie-category-title h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.cookie-badge {
    background: var(--light-gray);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}

.cookie-badge.essential {
    background: #4CAF50;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-checkbox:checked + .cookie-slider {
    background-color: var(--accent-yellow);
}

.cookie-checkbox:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-slider:hover {
    box-shadow: 0 0 8px rgba(244, 215, 64, 0.5);
}

.cookie-category-content {
    padding: 20px;
    background: var(--white);
}

.cookie-category-content p {
    margin: 0 0 15px 0;
    color: var(--secondary-dark);
    line-height: 1.7;
}

.cookie-details {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-yellow);
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.6;
}

.cookie-details strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Modal Footer */
.cookie-modal-footer {
    padding: 20px 30px;
    background: #f9f9f9;
    border-top: 2px solid #e0e0e0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    border-radius: 0 0 12px 12px;
}

.cookie-modal-footer .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Cookie animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Cookie Modal Responsive */
@media (max-width: 768px) {
    .cookie-modal {
        padding: 10px;
    }

    .cookie-modal-content {
        max-height: 90vh;
        margin: auto;
    }

    .cookie-modal-header {
        padding: 20px 15px;
    }

    .cookie-modal-header h2 {
        font-size: 1.4rem;
    }

    .cookie-modal-body {
        padding: 20px 15px;
        max-height: 55vh;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cookie-category-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-badge {
        margin-left: 0;
    }

    .cookie-modal-footer {
        padding: 15px;
        flex-direction: column;
    }

    .cookie-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-heading {
        padding: 0 20px;
        max-width: 100%;
        margin: 0;
    }

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

    .hero-name {
        font-size: 2rem;
    }

    .contact-next-steps {
        padding: 20px;
    }

    .hero-typing-title {
        font-size: 2rem;
        min-height: 70px;
        justify-content: center;
    }

    .hero-description {
        font-size: 1rem;
        min-height: 100px;
    }

    .hero-image img {
        max-width: 400px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

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

    .slider-container {
        height: 350px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer .container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        padding: 0 15px;
        margin: 0;
    }

    .hero-name {
        font-size: 1.5rem;
    }

    .hero-typing-title {
        font-size: 1.5rem;
        min-height: 60px;
    }

    .hero-description {
        font-size: 0.9rem;
        min-height: 80px;
    }

    .hero-image img {
        max-width: 300px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ===================================
   Reviews Section Styles
   =================================== */

#reviews {
    /* Uses .section base styles for background */
}

/* Review Statistics */
.review-stats-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin: 40px 0 60px;
    padding: 30px;
    background: rgba(40, 49, 58, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 49, 58, 0.1);
}

.review-stats-summary {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.rating-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 10px;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.rating-stars {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.rating-stars i {
    margin: 0 2px;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.rating-count {
    font-size: 1rem;
    color: var(--dark-gray);
}

.review-stats-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-bar-row {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    gap: 15px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.stat-bar {
    height: 14px;
    background: rgba(40, 49, 58, 0.3);
    border-radius: 7px;
    overflow: visible;
    border: 1px solid rgba(40, 49, 58, 0.1);
    position: relative;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD54F, #FFA726);
    transition: width 1s ease-out;
    box-shadow: 0 2px 4px rgba(255, 213, 79, 0.5);
    will-change: width;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 7px;
}

.stat-value {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: right;
}

/* Review Form */
.review-form-container {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 40px;
    background: rgba(40, 49, 58, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 49, 58, 0.1);
}

.review-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
    text-align: center;
}

.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(40, 49, 58, 0.2);
    border-radius: 8px;
    color: #000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.95);
    color: #000;
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Star Rating */
.star-rating {
    display: inline-flex;
    gap: 8px;
    margin: 10px 0;
}

.star-rating i {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

.star-rating i:hover,
.star-rating i.active {
    color: var(--accent-yellow);
    transform: scale(1.1);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.rating-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-style: italic;
}

.char-count {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-align: right;
}

#reviewFormMessage {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

#reviewFormMessage.success {
    background: rgba(46, 213, 115, 0.4);
    border: 1px solid rgba(46, 213, 115, 0.8);
    color: #0e8a3a;
    display: block;
    font-weight: 600;
}

#reviewFormMessage.error {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.5);
    color: #ff4757;
    display: block;
}

/* Reviews List */
.reviews-list-container {
    max-width: 900px;
    margin: 0 auto;
}

.reviews-list-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
    text-align: center;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    padding: 30px;
    background: rgba(40, 49, 58, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 49, 58, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 213, 79, 0.5);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-dark);
}

.review-author-info h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.review-rating {
    font-size: 1rem;
    color: var(--accent-yellow);
}

.review-rating i {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.review-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.review-text {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.loading-reviews {
    text-align: center;
    padding: 40px;
    color: var(--dark-gray);
}

.loading-reviews i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.no-reviews {
    text-align: center;
    padding: 40px;
    color: var(--dark-gray);
    font-style: italic;
}

#loadMoreReviews {
    display: block;
    margin: 30px auto 0;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .review-stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .rating-number {
        font-size: 3rem;
    }

    .rating-stars {
        font-size: 1.2rem;
    }

    .review-form-container {
        padding: 25px;
    }

    .star-rating i {
        font-size: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .review-card {
        padding: 20px;
    }

    .stat-bar-row {
        grid-template-columns: 70px 1fr 35px;
        gap: 10px;
    }
}

/* ==========================================
   APPOINTMENT BOOKING WIDGET
   ========================================== */

.appointment-widget {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.appointment-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--accent-yellow);
}

.appointment-loading i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.appointment-loading p {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.appointment-step h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-yellow);
}

.service-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.service-meta span {
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Date Picker */
.date-picker-container {
    max-width: 400px;
    margin: 30px auto;
}

.date-picker-container input {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    transition: all 0.3s;
}

.date-picker-container input:focus {
    border-color: #3498db;
    outline: none;
}

/* Time Slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.time-slot {
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: #2c3e50;
}

.time-slot:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    border-color: var(--accent-yellow);
    transform: scale(1.05);
}

.time-slot.selected {
    background: #2ecc71;
    color: white;
    border-color: #2ecc71;
}

/* Appointment Form */
.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.appointment-form .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    color: var(--primary-dark);
    background: white;
}

.appointment-form .form-input:focus {
    border-color: var(--accent-yellow);
    outline: none;
}

.appointment-form textarea.form-input {
    resize: vertical;
    font-family: inherit;
}

/* Date input styling */
.date-picker-container input {
    color: var(--primary-dark) !important;
    background: white !important;
}

/* Summary */
.appointment-summary {
    background: #e8f5e9;
    border-left: 4px solid #2ecc71;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.appointment-summary h4 {
    color: #27ae60;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.appointment-summary p {
    margin: 8px 0;
    color: #2c3e50;
}

/* Success State */
.appointment-success {
    text-align: center;
    padding: 60px 20px;
}

.appointment-success i {
    font-size: 5rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.appointment-success h3 {
    color: #27ae60;
    font-size: 2rem;
    margin-bottom: 15px;
}

.appointment-success p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Error State */
.appointment-error {
    background: #fadbd8;
    border-left: 4px solid #e74c3c;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.appointment-error i {
    font-size: 2rem;
    color: #e74c3c;
}

.appointment-error p {
    color: #c0392b;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .appointment-widget {
        padding: 25px;
    }

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

    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .time-slot {
        padding: 12px;
        font-size: 0.9rem;
    }

    .appointment-step h3 {
        font-size: 1.5rem;
    }
}

/* === style-modern merge === */
/* ==========================================
   MODERNIZÁLT CSS - szterszkykrisztian.hu
   
   Ez a fájl a style.css kiegészítése/felülírása.
   Használat: style.css UTÁN töltsd be:
   <link rel="stylesheet" href="style-modern.css">
   ========================================== */

/* ==========================================
   1. MODERN FONT - Google Fonts
   Add hozzá a <head>-hez:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet">
   ========================================== */

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FAFAFA; /* Tiszta háttér a fix kép helyett */
    background-image: none !important;
}

/* ==========================================
   2. SECTION HOVER KIKAPCSOLÁSA
   ========================================== */

.section:hover,
.section-dark:hover {
    transform: none !important;
    box-shadow: none !important;
}

.section {
    background: #FFFFFF;
    padding: 100px 0;
    opacity: 1;
    transform: none;
}

.section-dark {
    background: #1E293B;
}

/* ==========================================
   3. LOADING SCREEN KIKAPCSOLÁSA
   ========================================== */

.loading-screen {
    display: none !important;
}

/* ==========================================
   4. PARTICLES/LINES KIKAPCSOLÁSA
   ========================================== */

.particles,
.line,
.hero-background {
    display: none !important;
}

/* ==========================================
   5. MODERNIZÁLT HERO SECTION
   ========================================== */

.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    padding: 140px 0 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Subtilis glow effekt */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(210,179,6,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #E2E8F0;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.hero-badge span:last-child {
    color: #F4D740;
}

.hero-heading {
    margin-bottom: 0;
}

.hero-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #F4D740;
    margin-bottom: 2rem;
}

.hero-container {
    gap: 80px;
}

.hero-typing-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    min-height: auto;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #94A3B8;
    min-height: auto;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: #E2E8F0;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-pill i {
    color: #F4D740;
}

/* Cursor animáció eltávolítása ha nem kell typing */
/*
.cursor {
    display: none;
}
*/

.hero-cta {
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px; /* Kevésbé pill-shaped */
}

.hero-cta.alt {
    background: #334155;
    color: #E2E8F0;
    border: 1px solid #475569;
}

.hero-cta.alt:hover {
    background: #475569;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* ==========================================
   6. MODERNIZÁLT NAVIGÁCIÓ
   ========================================== */

.navbar {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: rgba(244, 215, 64, 0.1);
}

.nav-link::after {
    display: none; /* Underline effekt helyett háttér */
}

.nav-link.active {
    background: rgba(244, 215, 64, 0.15);
    color: #F4D740;
}

/* ==========================================
   7. MODERNIZÁLT SECTION CÍMEK
   ========================================== */

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    opacity: 1;
    transform: none;
}

.section-title::after {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin: 24px auto;
    transition: none;
}

.section-title.reveal::after {
    width: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-dark .section-subtitle {
    color: #94A3B8;
}

/* ==========================================
   8. MODERNIZÁLT GOMBOK
   ========================================== */

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #F4D740 0%, #DDB301 100%);
    box-shadow: 0 4px 14px rgba(244, 215, 64, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 179, 6, 0.4);
}

.btn-secondary {
    background: #334155;
    border: 1px solid #475569;
}

.btn-secondary:hover {
    background: #475569;
    transform: translateY(-2px);
}

/* ==========================================
   9. MODERNIZÁLT SERVICE KÁRTYÁK
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    border-color: #F4D740;
    box-shadow: 0 16px 36px rgba(244, 215, 64, 0.18);
    transform: translateY(-6px);
}

.service-icon {
    position: relative;
    top: auto;
    right: auto;
    width: 72px;
    height: 72px;
    margin: 30px 30px 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #F4D740 0%, #D2B306 100%);
}

.service-icon i {
    font-size: 1.6rem;
}

.service-image {
    height: 200px;
    margin: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 30px 10px;
}

.service-list li {
    padding: 8px 0;
    color: #64748B;
}

.service-list li i {
    color: #F4D740;
    margin-right: 10px;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94A3B8;
    padding: 0 30px 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-meta i {
    color: #F4D740;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 30px 20px;
}

.service-tag {
    padding: 6px 10px;
    border-radius: 10px;
    background: #F8FAFC;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid #E2E8F0;
}

/* ==========================================
   10. MODERNIZÁLT ABOUT SECTION
   ========================================== */

.about-image img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1E293B;
}

.about-text p {
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #475569;
    font-weight: 600;
}

.about-highlight i {
    color: #F4D740;
}

.stat-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
}

.stat-item:hover {
    border-color: #F4D740;
}

.stat-item h4 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1E293B;
}

/* ==========================================
   11. SCROLL PROGRESS BAR FINOMÍTÁS
   ========================================== */

.scroll-progress-bar {
    height: 3px;
    background: linear-gradient(90deg, #F4D740, #DDB301);
    box-shadow: none;
}

/* ==========================================
   12. SCROLL TO TOP GOMB
   ========================================== */

.scroll-to-top {
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 12px;
    width: 48px;
    height: 48px;
}

.scroll-to-top:hover {
    background: #F4D740;
    border-color: #F4D740;
    color: #1E293B;
}

/* ==========================================
   13. FOOTER MODERNIZÁLÁS
   ========================================== */

.footer {
    background: #0F172A;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer p {
    color: #64748B;
}

.footer-links a {
    color: #94A3B8;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #F4D740;
}

/* ==========================================
   14. CONTACT FORM MODERNIZÁLÁS
   ========================================== */

.contact-form input,
.contact-form textarea,
.form-input {
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    transition: all 0.2s ease;
    color: #0F172A;
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-input:focus {
    border-color: #F4D740;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(244, 215, 64, 0.1);
    color: #0F172A;
}

/* ==========================================
   15. COOKIE BANNER MODERNIZÁLÁS
   ========================================== */

.cookie-banner {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
}

.cookie-modal-content {
    border-radius: 20px;
    background: #FFFFFF;
}

/* ==========================================
   16. PORTFOLIO SLIDER
   ========================================== */

.portfolio-slider {
    background: #F8FAFC;
    border-radius: 24px;
    padding: 20px;
}

.slide img {
    border-radius: 16px;
}

.slide-caption {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
}

.slider-btn {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    color: #1E293B;
}

.slider-btn:hover {
    background: #F4D740;
    border-color: #F4D740;
}

/* ==========================================
   17. REVIEW KÁRTYÁK
   ========================================== */

.review-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
}

.review-card:hover {
    border-color: #F4D740;
}

/* ==========================================
   18. APPOINTMENT WIDGET
   ========================================== */

.appointment-widget {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ==========================================
   19. SMOOTH SCROLL ENHANCEMENT
   ========================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Navbar magasság */
}

/* ==========================================
   20. RESZPONZÍV FINOMHANGOLÁSOK
   ========================================== */

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 120px 20px 80px;
        min-height: auto;
    }
    
    .hero-name {
        font-size: 1.75rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* ==========================================
   21. ANIMÁCIÓK CSÖKKENTÉSE
   (Prefers-reduced-motion támogatás)
   ========================================== */

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

/* ==========================================
   22. PRINT STYLES (opcionális)
   ========================================== */

@media print {
    .navbar,
    .scroll-to-top,
    .cookie-banner,
    .scroll-progress-bar {
        display: none !important;
    }
    
    .section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
}

/* Custom section backgrounds */
.blog-section{background:#E5E7EB !important;}
.reviews.section{background:#FFFFFF !important;}
