/* ===================================
   Wolf24 Autómentés - Stylesheet
   =================================== */

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

:root {
    --primary-color: #D32F2F;
    --primary-dark: #B71C1C;
    --secondary-color: #1A1A1A;
    --accent-color: #D32F2F;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

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

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.phone-link {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.phone-link:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Call Button */
.mobile-call-btn {
    display: none;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(198, 40, 40, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.mobile-call-btn:hover {
    background: #a51c1c;
    transform: scale(1.05);
}

/* Pulzáló animáció */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 3px 12px rgba(198, 40, 40, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 5px 20px rgba(198, 40, 40, 0.7);
        transform: scale(1.05);
    }
}

/* 0-24 Badge */
.mobile-badge {
    display: none;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.7rem;
    margin-right: 0.5rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
        align-items: center;
    }

    .mobile-badge {
        display: flex;
        align-items: center;
    }
}

/* ===================================
   Hero Section - Industrial Design
   =================================== */
.hero {
    margin-top: 80px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Mobile: Show full vertical video */
@media (max-width: 768px) {
    .hero-video {
        width: 100%;
        height: 100%;
    }
}

/* Dark overlay for better text readability with industrial feel */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 3;
}

/* Industrial pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(211, 47, 47, 0.03) 2px,
            rgba(211, 47, 47, 0.03) 4px
        );
    z-index: 2;
    pointer-events: none;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
}

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

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 26, 26, 0.6);
    padding: 1rem 1.75rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(211, 47, 47, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(211, 47, 47, 0.3),
        transparent);
    transition: left 0.5s ease;
}

.feature-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(211, 47, 47, 0.4);
}

.feature-badge:hover::before {
    left: 100%;
}

.feature-badge .icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Animated background elements */
.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

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

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

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

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Shine effect on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.3);
    border-color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-icon {
    font-size: 3rem;
    margin: 1.5rem 0 1rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 2rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem 2rem;
    transition: var(--transition);
    margin-top: auto;
}

.service-card:hover .read-more {
    color: var(--primary-dark);
}

/* ===================================
   Service Content Section
   =================================== */
.service-content {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.content-text h3 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text-color);
}

.service-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.feature-item:hover h4,
.feature-item:hover p {
    color: var(--white);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-box .btn {
    font-size: 1.2rem;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.section-header {
    animation: fadeInDown 0.8s ease-out;
}

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

.about-intro {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.about-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-intro strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-inline {
    text-align: center;
    margin-top: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInFromBottom 0.6s ease-out forwards;
}

/* Staggered animation for cards */
.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }
.why-card:nth-child(5) { animation-delay: 0.5s; }
.why-card:nth-child(6) { animation-delay: 0.6s; }

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

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px) translateX(10px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.25);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.why-card:hover .why-number {
    opacity: 0.4;
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.why-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   References Section
   =================================== */
.references {
    padding: 80px 0;
    background: var(--white);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

#map {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    z-index: 1;
}

/* Leaflet marker customization */
.leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
    margin: 0;
    padding: 0;
    max-width: 300px;
}

.leaflet-popup-content h3 {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
}

.leaflet-popup-content p {
    padding: 1rem;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.leaflet-popup-content .popup-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.leaflet-popup-content .popup-image:hover {
    opacity: 0.9;
}

.leaflet-popup-content .view-details {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-top: 1px solid #ddd;
    transition: var(--transition);
}

.leaflet-popup-content .view-details:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Custom marker styling */
.custom-marker {
    background: var(--primary-color);
    border: 3px solid var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.custom-marker:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.5);
}

.custom-marker::after {
    content: '🚗';
    font-size: 16px;
}

/* Marker Cluster Styling */
.marker-cluster {
    background-color: rgba(211, 47, 47, 0.6);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.marker-cluster div {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.marker-cluster-small {
    background-color: rgba(211, 47, 47, 0.5);
}

.marker-cluster-small div {
    background-color: var(--primary-color);
}

.marker-cluster-medium {
    background-color: rgba(211, 47, 47, 0.6);
}

.marker-cluster-medium div {
    background-color: #C62828;
    font-size: 15px;
}

.marker-cluster-large {
    background-color: rgba(211, 47, 47, 0.7);
}

.marker-cluster-large div {
    background-color: #B71C1C;
    font-size: 16px;
    font-weight: 800;
}

.marker-cluster:hover {
    background-color: rgba(211, 47, 47, 0.8);
    transform: scale(1.1);
    transition: var(--transition);
}

.references-info {
    text-align: center;
    margin-top: 2rem;
}

.info-text {
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    display: inline-block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover,
.modal-close:focus {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-content h2 {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    margin: 0;
    font-size: 1.75rem;
}

.modal-body {
    padding: 0;
}

.modal-image {
    width: 100%;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.modal-description {
    padding: 2rem;
}

.modal-description p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.price-card.featured {
    border-color: var(--primary-color);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.price-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.price-amount {
    margin: 1.5rem 0;
}

.price-amount .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-amount .per {
    font-size: 1.5rem;
    color: var(--text-light);
}

.price-description {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.price-details p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Pricing */
.services-pricing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-price-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-price-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.service-price-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.service-price-content {
    flex-grow: 1;
}

.service-price-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service-price-content p {
    color: var(--text-light);
    margin: 0;
}

.service-price-amount {
    text-align: right;
    flex-shrink: 0;
}

.service-price-amount .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.service-price-amount .unit {
    font-size: 1rem;
    color: var(--text-light);
}

/* Pricing Notes */
.pricing-notes {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
}

.pricing-notes h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.note-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.note-item {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.note-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.note-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.note-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-item:hover h4,
.contact-item:hover p,
.contact-item:hover a {
    color: var(--white);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-color);
    margin: 0;
}

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

.contact-item a {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form-wrapper h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo img {
    height: 50px;
    margin-top: 1rem;
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

.developer-credit {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 1rem;
}

.developer-credit a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--white);
}

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

/* Tablet */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .map-container {
        padding: 0.5rem;
    }

    #map {
        height: 450px;
    }

    .modal-content {
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        padding: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero h2 {
        font-size: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo img {
        height: 50px;
    }

    .map-container {
        padding: 0.5rem;
    }

    #map {
        height: 400px;
    }

    .info-text {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .modal-description {
        padding: 1.5rem;
    }

    .modal-description p {
        font-size: 1rem;
    }

    .leaflet-popup-content .popup-image {
        height: 150px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .services,
    .why-choose,
    .contact {
        padding: 50px 0;
    }

    .service-card,
    .why-card,
    .contact-item {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ===================================
   Floating Call Button
   =================================== */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite, bounce 3s ease-in-out infinite;
}

/* Sonar effect */
.floating-call-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: sonar 2s ease-out infinite;
}

.floating-call-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.6);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(211, 47, 47, 0.7);
    }
    100% {
        box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
    }
}

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

@keyframes sonar {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

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

    .floating-call-btn {
        animation: none;
    }
}

/* ===================================
   Blog Pages
   =================================== */

/* Blog Hero */
.blog-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(239, 160, 50, 0.05) 10px,
        rgba(239, 160, 50, 0.05) 20px
    );
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    animation: slideInFromBottom 0.6s ease-out forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-content h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h2 {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-card:hover .read-more-link {
    gap: 1rem;
    color: var(--primary-dark);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.pagination-btn {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

.pagination-btn.next {
    padding: 0.75rem 1.5rem;
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.blog-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Blog Post Detail Page */
.blog-post-hero {
    margin-top: 80px;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.blog-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 3rem 0;
}

.blog-post-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-post-hero .blog-meta {
    color: rgba(255, 255, 255, 0.9);
}

.blog-post-content {
    padding: 60px 0;
    background: var(--white);
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.blog-post-body h2 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.blog-post-body h3 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
}

.blog-post-body ul,
.blog-post-body ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-post-body li {
    margin-bottom: 0.75rem;
}

.blog-post-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.blog-post-body img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

.blog-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
    text-align: center;
}

.blog-share h3 {
    margin-bottom: 1rem;
}

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

.share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Related Posts */
.related-posts {
    padding: 60px 0;
    background: var(--bg-light);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h2 {
        font-size: 1.25rem;
    }

    .blog-pagination {
        flex-wrap: wrap;
    }

    .blog-cta h2 {
        font-size: 1.8rem;
    }

    .blog-post-hero {
        height: 300px;
    }

    .blog-post-hero h1 {
        font-size: 2rem;
    }

    .blog-post-body {
        font-size: 1rem;
    }

    .share-buttons {
        flex-direction: column;
    }
}

/* ===================================
   Legal Pages (ÁSZF, Privacy, Cookie)
   =================================== */
.legal-page {
    margin-top: 100px;
    padding: 60px 0;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
}

.legal-content h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.intro-text {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.company-info,
.contact-info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.company-info p,
.contact-info-box p {
    margin-bottom: 0.5rem;
}

.definitions p {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-color);
}

.cookie-type {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.cookie-type h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.cookie-details {
    margin-top: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
}

.cookie-table tbody tr:hover {
    background: var(--bg-light);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.browser-instructions {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.browser-instructions h3 {
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.browser-instructions h3:first-child {
    margin-top: 0;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-buttons,
    .contact-form-wrapper,
    .footer,
    .back-link {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .legal-page {
        margin-top: 0;
        padding: 0;
        background: var(--white);
    }

    .legal-content {
        box-shadow: none;
        padding: 0;
    }
}
