/* Budapest SEO - Design System */
/* Hungarian-inspired colors: Red, White, Green */

:root {
    /* Primary Colors - Hungarian inspired */
    --primary: #1B4D3E;
    --primary-dark: #143D31;
    --primary-light: #2A6B54;
    --accent: #CD2E3A;
    --accent-dark: #B82834;
    --accent-light: #E04651;

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAF9;
    --bg-gray: #EEF2F0;
    --bg-alt: #F5F7F6;

    /* Text Colors */
    --text-dark: #1A1F1C;
    --text-body: #2D3830;
    --text-muted: #5F6D64;
    --text: #1A1F1C;

    /* UI */
    --border: #D8E0DC;
    --shadow: rgba(27, 77, 62, 0.08);
    --shadow-lg: rgba(27, 77, 62, 0.12);

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

p { margin-bottom: 1rem; }

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

a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(205, 46, 58, 0.3);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--bg-gray);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

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

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
}

.logo:hover {
    color: var(--text-dark);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    color: var(--text-body);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.nav-link.active {
    color: var(--accent);
    background: rgba(205, 46, 58, 0.08);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-body);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border);
}

.lang-btn {
    padding: 6px 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--primary);
    background: var(--bg-light);
}

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

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 80px;
    z-index: 1000;
    padding: 8px 0;
}

.lang-dropdown:hover .dropdown-menu {
    display: block;
}

.lang-dropdown .dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
}

.lang-dropdown .dropdown-menu a:hover {
    background: var(--bg-light);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(205, 46, 58, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.hero-visual svg {
    max-width: 100%;
    height: auto;
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
}

.section-light {
    background: var(--bg-light);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(27, 77, 62, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

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

/* Carousel Section */
.carousel-section {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.carousel-wrapper {
    margin: 40px 0;
}

.carousel-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    animation: scroll-left linear infinite;
}

.carousel-row:nth-child(1) { animation-duration: 240s; }
.carousel-row:nth-child(2) { animation-duration: 220s; animation-direction: reverse; }
.carousel-row:nth-child(3) { animation-duration: 280s; }

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

.carousel-item {
    flex-shrink: 0;
    padding: 16px 28px;
    background: white;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    box-shadow: 0 2px 10px var(--shadow);
}

.carousel-item:hover {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.keyword-content {
    display: none;
}

/* Modal */
.keyword-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.keyword-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.keyword-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.25rem;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--bg-gray);
}

.modal-body {
    padding: 24px;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

.modal-body h2 {
    font-size: 1.5rem;
    margin: 24px 0 16px;
}

.modal-body h2:first-child {
    margin-top: 0;
}

.modal-body p {
    line-height: 1.8;
    margin-bottom: 16px;
}

.modal-body ul, .modal-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.modal-body li {
    margin-bottom: 8px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.service-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(205, 46, 58, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.about-feature h4 {
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.process-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-card h3 {
    margin-bottom: 12px;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-info strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
}

.blog-image {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

/* Blog Listing */
.blog-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Contact Section */
.contact-section {
    background: var(--primary);
    color: white;
    padding: 100px 0;
}

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

.contact-info h2 {
    color: white;
    margin-bottom: 24px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
}

.contact-form-card h3 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

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

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

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

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

/* SEO Text Section */
.seo-text {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.seo-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.seo-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.seo-content p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-content ul,
.seo-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.seo-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-body);
}

.seo-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.seo-content a:hover {
    border-bottom-color: var(--accent);
}

.seo-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0F2E24;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    max-width: 300px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--accent);
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: var(--bg-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--text-muted);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
}

/* Service Hero */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-checklist li {
    padding: 8px 0 8px 32px;
    position: relative;
}

.service-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Form Card */
.form-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.form-card h3 {
    margin-bottom: 8px;
}

.form-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-card .form-group {
    margin-bottom: 16px;
}

.form-card input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

/* Testimonial Highlight */
.testimonial-highlight {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-highlight blockquote {
    position: relative;
    padding: 40px;
}

.testimonial-highlight blockquote::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-highlight p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.testimonial-highlight cite {
    display: block;
    font-style: normal;
}

.testimonial-highlight cite strong {
    display: block;
    font-size: 1.1rem;
}

.testimonial-highlight cite span {
    color: var(--text-muted);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

.review-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.review-author {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-author strong {
    display: block;
}

.review-author span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Trust Section */
.trust-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
}

.guarantee-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.faq-item h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    cursor: pointer;
}

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

/* Rating Summary */
.rating-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.rating-summary .stars {
    color: #F59E0B;
    font-size: 1.5rem;
}

/* Error Page */
.error-page {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page .container {
    width: 100%;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.error-content > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-suggestions {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: left;
    display: inline-block;
}

.error-suggestions h2 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text);
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    margin-bottom: 8px;
}

.error-suggestions a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.error-suggestions a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 1;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(205, 46, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Contact Info Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(27, 77, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.contact-card h3 {
    margin-bottom: 8px;
}

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

.contact-card a {
    color: var(--accent);
    font-weight: 500;
}

/* Contact Form Page */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-section .form-card {
    position: static;
}

.contact-sidebar h3 {
    margin-bottom: 24px;
}

.opening-hours {
    margin-bottom: 32px;
}

.opening-hours ul {
    list-style: none;
    padding: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

/* Success/Error Messages */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065F46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .service-hero,
    .trust-section,
    .contact-form-section {
        grid-template-columns: 1fr;
    }

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

    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .features-grid,
    .reviews-grid,
    .values-grid,
    .team-grid,
    .contact-cards,
    .blog-listing {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

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

    .section {
        padding: 60px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        color: white;
        font-size: 1.25rem;
        padding: 16px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
    }

    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 20px;
    }

    .lang-btn {
        color: white;
    }

    .lang-btn.active {
        background: rgba(255, 255, 255, 0.2);
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .features-grid,
    .reviews-grid,
    .values-grid,
    .team-grid,
    .contact-cards,
    .process-grid,
    .blog-listing {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .error-code {
        font-size: 5rem;
    }

    .error-content h1 {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 60px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-number {
        left: 20px;
        transform: translateX(-50%);
    }
}

/* ========================================
   SERVICE LANDING PAGES
   ======================================== */

/* Page Header (for service detail pages) */
.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: rgba(27, 77, 62, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail Grid Layout */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.service-detail-content h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-detail-content h3 {
    font-size: 1.35rem;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.service-detail-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin: 16px 0 24px;
    padding-left: 24px;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-detail-content li {
    margin-bottom: 10px;
}

.service-detail-content li strong {
    color: var(--text-dark);
}

/* Service Sidebar */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
}

.service-features-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.service-features-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-features-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-features-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features-card li:last-child {
    border-bottom: none;
}

.service-features-card li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* Service Hero Section (alternative layout) */
.service-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.service-hero-content {
    padding-top: 20px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 77, 62, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hero-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.service-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.service-hero-form h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-hero-form > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.contact-form-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-form-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Guarantee List */
.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.guarantee-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-content .btn-primary:hover {
    background: var(--bg-light);
}

.cta-content .btn-outline {
    border-color: white;
    color: white;
}

.cta-content .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Quote Icon for Testimonials */
.quote-icon {
    width: 48px;
    height: 48px;
    background: rgba(27, 77, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px var(--shadow);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Features Grid for Service Pages */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(27, 77, 62, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* SEO Text Section */
.seo-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.seo-text {
    max-width: 900px;
    margin: 0 auto;
}

.seo-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.seo-text h3 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.seo-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-text ul {
    margin: 16px 0 24px 24px;
    color: var(--text-muted);
    line-height: 1.8;
}

.seo-text li {
    margin-bottom: 8px;
}

/* Testimonial Highlight Section */
.testimonial-highlight {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.testimonial-highlight-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-highlight .quote-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    margin: 0 auto 24px;
}

.testimonial-highlight blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    color: white;
}

.testimonial-highlight .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-highlight .testimonial-avatar {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.testimonial-highlight .testimonial-author strong {
    display: block;
    color: white;
}

.testimonial-highlight .testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Trust Grid Section */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.trust-guarantees h2,
.trust-faqs h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.trust-faqs .faq-item {
    background: white;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px var(--shadow);
}

.trust-faqs .faq-item h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-faqs .faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.125rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.testimonial-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.0625rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Breadcrumb */
.breadcrumb {
    padding: 16px 0;
    background: var(--bg-light);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

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

.breadcrumb span {
    color: var(--text-muted);
    margin: 0 8px;
}

/* Responsive Service Pages */
@media (max-width: 1024px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-sidebar {
        position: static;
        max-width: 400px;
    }

    .service-hero-form,
    .contact-form-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .service-hero,
    .page-header {
        padding: 60px 0 40px;
    }

    .service-hero-content h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .service-hero-features {
        flex-direction: column;
        gap: 12px;
    }

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

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .testimonial-highlight blockquote {
        font-size: 1.25rem;
    }

    .testimonial-highlight .testimonial-author {
        flex-direction: column;
        gap: 12px;
    }
}
