/* ===== 123 Top Hotels - Modern Travel Agency Stylesheet ===== */

:root {
    --primary: #0f2b46;
    --primary-light: #1a4068;
    --accent: #e8985e;
    --accent-hover: #d4843a;
    --light: #f8f6f3;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --border: #e8e4e0;
    --shadow: 0 2px 20px rgba(15, 43, 70, 0.08);
    --shadow-hover: 0 8px 30px rgba(15, 43, 70, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary);
    line-height: 1.3;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}
.navbar-brand:hover { color: var(--primary); }
.brand-icon { font-size: 1.6rem; }
.brand-text { font-family: 'DM Sans', sans-serif; }
.brand-accent { color: var(--accent); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu li a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
}
.nav-menu li a:hover {
    background: var(--light);
    color: var(--primary);
}
.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--accent-hover) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.4;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover { background: var(--primary-light); color: var(--white); }
.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover { background: var(--accent-hover); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); }
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ===== HOME HERO ===== */
.home-hero {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 0 72px;
    text-align: center;
}
.home-hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.home-hero p {
    opacity: 0.9;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}
.home-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FEATURED POST ===== */
.featured-section {
    margin-top: 70px;
    padding: 48px 0 0;
    background: var(--light);
}
.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text);
    min-height: 380px;
}
.featured-card:hover {
    box-shadow: var(--shadow-hover);
    color: var(--text);
}
.featured-card-image {
    overflow: hidden;
}
.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-card:hover .featured-card-image img {
    transform: scale(1.03);
}
.featured-card-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-card-body:only-child {
    grid-column: 1 / -1;
    text-align: center;
}
.featured-card-body:only-child .btn {
    align-self: center;
}
.featured-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
}
.featured-card-body h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 16px;
}
.featured-card-body p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.featured-card-body .btn {
    align-self: flex-start;
}

/* ===== SECTIONS ===== */
.services-section,
.posts-section,
.categories-section,
.cta-section,
.form-section,
.related-posts {
    padding: 80px 0;
}
.services-section { background: var(--light); }
.categories-section { background: var(--light); }
.cta-section { background: var(--white); }
.related-posts { background: var(--light); }

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== POST CARDS ===== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    color: var(--text);
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    color: var(--text);
}
.post-card-image {
    height: 220px;
    overflow: hidden;
}
.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.post-card:hover .post-card-image img {
    transform: scale(1.05);
}
.post-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}
.post-card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 16px;
}
.read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== CATEGORIES ===== */
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
}
.category-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow);
}
.category-count {
    background: var(--light);
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 50px;
}

/* ===== CTA BOX ===== */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 72px 48px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box-inner {
    position: relative;
    z-index: 1;
}
.cta-box h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.cta-box p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
    margin-top: 70px;
    padding: 60px 0 40px;
    background: var(--light);
    text-align: center;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== BLOG ARTICLE ===== */
.blog-article {
    margin-top: 70px;
    padding: 40px 0 60px;
}
.blog-article .container {
    max-width: 800px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    margin-bottom: 24px;
    color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border); }

.article-header {
    margin-bottom: 32px;
}
.article-header h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.9rem;
}
.meta-sep { opacity: 0.5; }

.article-featured-image {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}
.article-featured-image img {
    width: 100%;
    border-radius: var(--radius);
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
}
.article-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 16px;
}
.article-content h3 {
    font-size: 1.4rem;
    margin: 32px 0 12px;
}
.article-content p {
    margin-bottom: 20px;
}
.article-content img {
    border-radius: var(--radius-sm);
    margin: 24px 0;
}
.article-content a {
    color: var(--accent);
    text-decoration: underline;
}
.article-content ul, .article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}
.article-content li {
    margin-bottom: 8px;
    list-style: disc;
}
.article-content ol li { list-style: decimal; }
.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-light);
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.tag {
    padding: 6px 16px;
    background: var(--light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}
.tag:hover { background: var(--primary); color: var(--white); }

/* Image captions */
.wp-caption, .post-featured-image {
    margin: 24px 0;
    text-align: center;
}
.wp-caption img { border-radius: var(--radius-sm); margin: 0 auto; }
.wp-caption figcaption, .image-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

/* Gallery */
.post-gallery {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}
.post-gallery.columns-2 { grid-template-columns: repeat(2, 1fr); }
.post-gallery.columns-3 { grid-template-columns: repeat(3, 1fr); }
.post-gallery.columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item img { border-radius: var(--radius-sm); width: 100%; height: 200px; object-fit: cover; }

/* Table */
.table-responsive { overflow-x: auto; margin: 20px 0; }
.article-content table {
    width: 100%;
    border-collapse: collapse;
}
.article-content table th,
.article-content table td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    text-align: left;
}
.article-content table th {
    background: var(--light);
    font-weight: 600;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}
.page-link {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}
.page-link:hover { border-color: var(--primary); color: var(--primary); }
.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ===== FORMS ===== */
.form-section { padding: 40px 0 80px; }
.form-container { max-width: 640px; margin: 0 auto; }
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.required { color: var(--accent); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 152, 94, 0.15);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== WIZARD ===== */
.wizard-hero {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 60px 0 40px;
    text-align: center;
}
.wizard-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.wizard-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.wizard-section {
    background: var(--light);
    padding: 40px 0 80px;
}

.wizard-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px 32px;
    flex-wrap: nowrap;
}
.wizard-step-item {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}
.step-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-left: 8px;
    white-space: nowrap;
    transition: var(--transition);
}
.step-line {
    width: 40px;
    height: 3px;
    background: var(--border);
    margin: 0 6px;
    transition: var(--transition);
}
.wizard-step-item.active .step-circle {
    background: var(--accent);
    color: var(--white);
}
.wizard-step-item.active .step-label {
    color: var(--accent);
    font-weight: 600;
}
.wizard-step-item.completed .step-circle {
    background: var(--primary);
    color: var(--white);
}
.wizard-step-item.completed + .step-line {
    background: var(--primary);
}

.wizard-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-step h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.option-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.3;
}
.chip input { display: none; }
.chip:has(input:checked) {
    border-color: var(--accent);
    background: rgba(232, 152, 94, 0.1);
    color: var(--accent);
    font-weight: 600;
}
.chip:hover {
    border-color: var(--accent);
}

.wizard-success {
    text-align: center;
    padding: 60px 40px;
    max-width: 500px;
    margin: 0 auto;
}
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d4edda;
    color: #28a745;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.wizard-success h2 {
    margin-bottom: 12px;
}
.wizard-success p {
    color: var(--text-light);
    margin-bottom: 32px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 0 64px;
    text-align: center;
}
.about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}
.about-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-hero p {
    opacity: 0.9;
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-story {
    padding: 80px 0;
}
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.story-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.story-content strong {
    color: var(--primary);
}
.story-content em {
    color: var(--accent);
    font-style: italic;
}
.story-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.story-photo {
    aspect-ratio: 1;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}
.story-photo:hover {
    transform: scale(1.05);
}

.about-numbers {
    background: var(--light);
    padding: 56px 0;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.number-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.number-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
.number-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-team {
    padding: 80px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 1px;
}
.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}
.team-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.team-location {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-values {
    background: var(--light);
    padding: 80px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .values-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
    .about-hero h1 { font-size: 1.9rem; }
    .about-hero { padding: 60px 0 48px; }
    .story-content h2 { font-size: 1.6rem; }
    .story-photo-grid { gap: 12px; }
    .story-photo { font-size: 2rem; }
    .number-value { font-size: 2.2rem; }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 480px) {
    .about-hero h1 { font-size: 1.6rem; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ===== 404 PAGE ===== */
.error-page {
    margin-top: 70px;
    padding: 120px 0;
}
.error-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}
.error-page h1 {
    font-size: 6rem;
    color: var(--accent);
    margin-bottom: 8px;
}
.error-page h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.error-page p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 80px 0;
    color: var(--text-light);
}
.empty-state p { margin-bottom: 24px; font-size: 1.1rem; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}
.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== NAVBAR TRANSLATE ===== */
.nav-translate {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    background: var(--light);
    transition: var(--transition);
}
.nav-translate:hover { background: var(--border); }
.translate-icon {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}
#google_translate_element { display: inline-block; }
.goog-te-gadget { font-family: inherit !important; font-size: 0 !important; }
.goog-te-gadget > span { display: none !important; }
.goog-te-gadget .goog-te-combo {
    padding: 5px 8px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
    min-width: 90px;
}
.goog-te-gadget .goog-te-combo:hover { border-color: var(--accent); }
.goog-te-gadget .goog-te-combo:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(232,152,94,0.15); }
.goog-te-banner-frame { display: none !important; }
body > .skiptranslate { display: none !important; }
body { top: 0 !important; position: static !important; }
#google_translate_element .skiptranslate { display: inline-block !important; }

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 43, 70, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.loading-overlay.active { display: flex; }
.loading-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 56px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.3s ease;
}
.loading-box p {
    margin-top: 20px;
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
}
.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .featured-card { grid-template-columns: 1fr 1fr; min-height: 320px; }
    .featured-card-body { padding: 36px 32px; }
    .featured-card-body h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--shadow);
        gap: 4px;
    }
    .nav-menu.open { display: flex; }
    .nav-menu li a { padding: 12px 16px; display: block; }

    .home-hero h1 { font-size: 2rem; }
    .home-hero { padding: 60px 0 48px; }
    .home-hero-actions { flex-direction: column; align-items: center; }

    .featured-card { grid-template-columns: 1fr; min-height: auto; }
    .featured-card-image { height: 260px; }
    .featured-card-body { padding: 28px 24px; }
    .featured-card-body h2 { font-size: 1.4rem; }
    .featured-section { padding: 36px 0 0; }

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

    .article-header h1 { font-size: 1.8rem; }
    .page-header h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.7rem; }
    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 1.5rem; }

    .wizard-card { padding: 24px; }
    .wizard-stepper { overflow-x: auto; justify-content: flex-start; }
    .step-label { display: none; }
    .form-row { grid-template-columns: 1fr; }

    .option-chips { gap: 8px; }
    .chip { padding: 10px 16px; font-size: 0.85rem; }

    .footer-bottom { flex-direction: column; text-align: center; }
    .error-page h1 { font-size: 4rem; }
    .error-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .wizard-hero h1 { font-size: 1.8rem; }
    .post-card-image { height: 180px; }
    .featured-card-image { height: 200px; }
    .featured-card-body h2 { font-size: 1.25rem; }
}
