@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

/* CH Extranjería y Gestión - Main Styles */
:root {
    --primary: #0B1C3D;
    --primary-dark: #071428;
    --primary-light: #1a3a6b;
    --gold: #C9A227;
    --gold-hover: #b8911f;
    --gold-light: #e8d48b;
    --white: #ffffff;
    --light-bg: #f8f9fc;
    --text: #2c3e50;
    --text-light: #6c757d;
    --border: #e9ecef;
    --success: #28a745;
    --shadow: 0 4px 20px rgba(11, 28, 61, 0.08);
    --shadow-lg: 0 10px 40px rgba(11, 28, 61, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

body.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', 'Montserrat', 'Tahoma', sans-serif;
}

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

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

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

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

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.logo span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo small {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav a {
    color: rgba(255,255,255,0.9);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav a:hover,
.nav a.active {
    color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 3px;
}

.lang-switcher a {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}

.lang-switcher a.active,
.lang-switcher a:hover {
    background: var(--gold);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0B1C3D 0%, #1a3a6b 50%, #0B1C3D 100%);
    color: white;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1555881403-64995e9e4e2e?w=800&q=80') center/cover;
    opacity: 0.25;
    mask-image: linear-gradient(to left, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
}

body.rtl .hero::before {
    right: auto;
    left: 0;
    mask-image: linear-gradient(to right, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-text h1 .highlight {
    color: var(--gold);
    display: block;
    font-size: 3.2rem;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.hero-feature i,
.hero-feature .icon {
    width: 28px;
    height: 28px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-flag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Stats bar */
.stats-bar {
    background: var(--primary);
    color: white;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-item .icon {
    font-size: 1.6rem;
    color: var(--gold);
}

.stat-item span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Sections */
.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 18px;
}

.card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.55;
}

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

.section-dark .section-header h2 {
    color: white;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.8);
}

.section-dark .card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: white;
}

.section-dark .card h3 {
    color: white;
}

.section-dark .card p {
    color: rgba(255,255,255,0.75);
}

.section-dark .card-icon {
    background: rgba(201,162,39,0.2);
}

/* Why us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    text-align: center;
    padding: 20px;
}

.why-item .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--gold), #e8d48b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.why-item h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 8px;
}

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

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* About page specific */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-hero img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.about-feature .check {
    color: var(--gold);
    font-weight: bold;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    padding: 30px;
    color: white;
    text-align: center;
}

.stats-row .num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stats-row .label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: var(--light-bg);
    padding: 32px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
}

body.rtl .mv-card {
    border-left: none;
    border-right: 4px solid var(--gold);
}

.mv-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Services page */
.services-cta {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 50px;
}

/* Spain page */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.city-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 160px;
    box-shadow: var(--shadow);
}

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

.city-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px 12px 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* How we work */
.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step h3 {
    color: var(--primary);
    margin-bottom: 4px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.work-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.work-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.blog-post img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 30px;
    max-height: 400px;
    object-fit: cover;
}

.blog-post h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.blog-post .meta {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.blog-post .content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-post .content p {
    margin-bottom: 16px;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius);
}

.contact-info h2 {
    margin-bottom: 12px;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.whatsapp-big {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.whatsapp-big .num {
    font-size: 1.4rem;
    font-weight: 700;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail .icon {
    width: 40px;
    height: 40px;
    background: rgba(201,162,39,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-form {
    background: white;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 1.3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

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

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    background: #e9ecef;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 280px;
}

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

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-bottom a {
    opacity: 0.7;
    margin-left: 16px;
}

body.rtl .footer-bottom a {
    margin-left: 0;
    margin-right: 16px;
}

.footer-bottom a:hover {
    opacity: 1;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary);
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    color: white;
    font-size: 1.8rem;
}

body.rtl .sticky-whatsapp {
    right: auto;
    left: 25px;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.sticky-whatsapp::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Page header */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 60px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Admin */
.admin-body {
    background: #f0f2f5;
}

.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 240px;
    background: var(--primary);
    color: white;
    padding: 20px 0;
    z-index: 100;
}

.admin-sidebar .logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.admin-nav a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
}

.admin-content {
    margin-left: 240px;
    padding: 30px;
}

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

.admin-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary);
}

.admin-actions a,
.admin-actions button {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-right: 6px;
    border: none;
    cursor: pointer;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.login-box {
    max-width: 400px;
    margin: 100px auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.login-box h1 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .about-hero,
    .work-layout,
    .contact-layout,
    .mission-vision {
        grid-template-columns: 1fr;
    }

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

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero::before {
        width: 100%;
        opacity: 0.15;
        mask-image: none;
        -webkit-mask-image: none;
    }

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

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .nav.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .admin-content {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h1 .highlight {
        font-size: 2.3rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .stats-grid,
    .why-grid,
    .stats-row,
    .cities-grid {
        grid-template-columns: 1fr;
    }

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

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

    .lang-switcher {
        display: none;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* Icons using pure CSS / emoji fallback */
.icon-check::before { content: '✓'; }
.icon-user::before { content: '👤'; }
.icon-doc::before { content: '📄'; }
.icon-home::before { content: '🏠'; }
.icon-family::before { content: '👨‍👩‍👧'; }
.icon-study::before { content: '📚'; }
.icon-work::before { content: '💼'; }
.icon-self::before { content: '🧑‍💼'; }
.icon-other::before { content: '📋'; }
.icon-star::before { content: '⭐'; }
.icon-clock::before { content: '⏱️'; }
.icon-globe::before { content: '🌐'; }
.icon-phone::before { content: '📞'; }
.icon-mail::before { content: '✉️'; }
.icon-map::before { content: '📍'; }
.icon-whatsapp::before { content: '💬'; }
.icon-heart::before { content: '❤️'; }
.icon-shield::before { content: '🛡️'; }
.icon-eye::before { content: '👁️'; }
.icon-target::before { content: '🎯'; }
.icon-chat::before { content: '💭'; }
.icon-arrow::before { content: '→'; }
body.rtl .icon-arrow::before { content: '←'; }





/* Logo - official GH brand */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-img {
    height: 56px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: 4px 10px;
}
.logo-img-footer {
    height: 60px;
    max-width: 220px;
    background: #fff;
    border-radius: 8px;
    padding: 6px 12px;
}
.logo-footer {
    margin-bottom: 16px;
    display: inline-block;
}

/* Font Awesome icons */
.card-icon i,
.hero-feature .icon i,
.stat-item .icon i,
.why-item .icon i,
.contact-detail .icon i,
.footer-contact-item i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}
.card-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}
.hero-feature .icon i,
.stat-item .icon i {
    color: var(--gold);
}
.why-item .icon i {
    font-size: 1.5rem;
    color: var(--primary);
}
.sticky-whatsapp i {
    font-size: 2rem;
}
.contact-detail .icon i {
    color: var(--gold);
}
.about-feature .check i {
    color: var(--gold);
}
.mv-card h3 i {
    color: var(--gold);
    margin-right: 8px;
}
body.rtl .mv-card h3 i {
    margin-right: 0;
    margin-left: 8px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.pagination-btn {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--border);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0 12px;
}
.pagination-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}



/* ========== PRO LOGO (transparent, wider) ========== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-img {
    height: 58px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}
.logo:hover .logo-img {
    transform: scale(1.03);
}
.logo-img-footer {
    height: 52px;
    max-width: 240px;
    background: transparent !important;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
.logo-footer {
    margin-bottom: 16px;
    display: inline-block;
}

/* ========== PAGE LOADER ========== */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(145deg, #071428 0%, #0B1C3D 50%, #122a52 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-logo {
    width: 160px;
    height: auto;
    margin-bottom: 32px;
    animation: logoPulse 1.8s ease-in-out infinite;
}
.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-top-color: #C9A227;
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
}
.loader-text {
    margin-top: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes logoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.04); }
}

/* ========== PRO HERO ========== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #071428 0%, #0B1C3D 40%, #1a3a6b 100%);
    color: white;
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(201,162,39,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(11,28,61,0.4), transparent);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.hero-text h1 .highlight {
    color: #C9A227;
    display: block;
    font-size: 3.4rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #C9A227, #e8d48b, #C9A227);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 1.15rem;
    opacity: 0.88;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7;
}
.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.hero-feature:hover {
    background: rgba(201,162,39,0.12);
    border-color: rgba(201,162,39,0.3);
    transform: translateX(4px);
}
body.rtl .hero-feature:hover {
    transform: translateX(-4px);
}
.hero-feature .icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A227;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.hero-image {
    position: relative;
    text-align: center;
}
.hero-image img {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
    object-fit: cover;
    aspect-ratio: 4/5;
}
.hero-image::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(201,162,39,0.4), transparent 50%, rgba(201,162,39,0.15));
    z-index: -1;
    opacity: 0.6;
}

/* ========== SCROLL ANIMATIONS ========== */
/* Animations only when JS is enabled — content always visible otherwise */
.animate-on-scroll {
    opacity: 1;
    transform: none;
}
html.js .animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* Card hover pro */
.card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 28, 61, 0.12);
}
.card-icon {
    transition: transform 0.3s ease, background 0.3s ease;
}
.card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(201,162,39,0.25), rgba(201,162,39,0.1));
}

/* Button shine */
.btn {
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn:hover::after {
    left: 100%;
}

/* Header glass effect */
.header {
    backdrop-filter: blur(12px);
    background: rgba(11, 28, 61, 0.95);
}

/* Smooth section transitions */
.section {
    position: relative;
}

/* Sticky WhatsApp pro */
.sticky-whatsapp {
    width: 64px;
    height: 64px;
    font-size: 1.9rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}
.sticky-whatsapp:hover {
    transform: scale(1.12) translateY(-2px);
}

/* Font Awesome icons */
.card-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}
.hero-feature .icon i,
.stat-item .icon i {
    color: var(--gold);
}
.why-item .icon i {
    font-size: 1.5rem;
    color: var(--primary);
}
.sticky-whatsapp i {
    font-size: 2rem;
}
.contact-detail .icon i {
    color: var(--gold);
}
.about-feature .check i {
    color: var(--gold);
}
.mv-card h3 i {
    color: var(--gold);
    margin-right: 8px;
}
body.rtl .mv-card h3 i {
    margin-right: 0;
    margin-left: 8px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.pagination-btn {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--border);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0 12px;
}
.pagination-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 { font-size: 2.3rem; }
    .hero-text h1 .highlight { font-size: 2.6rem; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-features { max-width: 420px; margin-left: auto; margin-right: auto; }
    .hero-image img { max-width: 300px; }
    .logo-img { max-width: 200px; height: 48px; }
}
@media (max-width: 576px) {
    .hero { padding: 60px 0 50px; min-height: auto; }
    .hero-text h1 { font-size: 1.9rem; }
    .hero-text h1 .highlight { font-size: 2.1rem; }
    .hero-features { grid-template-columns: 1fr; }
    .logo-img { max-width: 160px; height: 42px; }
}


/* ========== HERO + STATS ICONS (match design) ========== */
.hero-feature .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(11, 28, 61, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 2px solid rgba(201, 162, 39, 0.35);
}
.hero-feature .icon i {
    color: #C9A227 !important;
}
.hero-feature:hover .icon {
    background: #0B1C3D;
    border-color: #C9A227;
    transform: scale(1.08);
}

.stats-bar .stat-item .icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 4px;
    border: 1px solid rgba(201, 162, 39, 0.25);
    transition: all 0.3s ease;
}
.stats-bar .stat-item .icon i {
    color: #C9A227 !important;
}
.stats-bar .stat-item:hover .icon {
    background: rgba(201, 162, 39, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(201, 162, 39, 0.25);
}

/* ========== SPAIN PAGE PRO ========== */
.spain-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    font-size: 1.12rem;
    color: var(--text-light);
    line-height: 1.75;
}
.spain-feature-card {
    text-align: center;
}
.spain-feature-card .card-icon {
    margin: 0 auto 18px;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201,162,39,0.18), rgba(201,162,39,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
}
.spain-feature-card .card-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}
.spain-feature-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(201,162,39,0.3), rgba(201,162,39,0.12));
    transform: scale(1.08);
}
.spain-cities-title {
    text-align: center;
    color: var(--primary);
    margin: 56px 0 28px;
    font-size: 1.8rem;
    font-weight: 700;
}
.city-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.city-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 36px rgba(11, 28, 61, 0.18);
}
.city-card span {
    transition: background 0.3s ease;
}
.city-card:hover span {
    background: linear-gradient(transparent, rgba(11, 28, 61, 0.85));
}
.spain-cta {
    margin-top: 56px;
}
.spain-cta p {
    opacity: 0.9;
    margin-bottom: 20px;
}

/* ========== MODERN HOME SECTIONS ========== */
.section-light {
    background: var(--light-bg);
}
.section-split {
    background: #fff;
}
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.split-reverse {
    direction: rtl;
}
.split-reverse > * {
    direction: ltr;
}
body.rtl .split-reverse {
    direction: ltr;
}
body.rtl .split-reverse > * {
    direction: rtl;
}
.split-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 28, 61, 0.12);
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
    display: block;
}
.split-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    color: var(--primary);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.split-badge i {
    color: var(--gold);
    font-size: 1.3rem;
}
.split-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.split-subtitle {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 1.05rem;
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.process-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--gold), #e8d48b);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}
.process-step h4 {
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1rem;
}
.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Image banner section */
.section-image-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.image-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}
.image-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,28,61,0.85), rgba(11,28,61,0.7));
}
.image-banner-content {
    position: relative;
    z-index: 2;
}
.image-banner-content h2 {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}
.banner-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.banner-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    color: #fff;
    transition: all 0.35s ease;
}
.banner-card:hover {
    background: rgba(201,162,39,0.2);
    border-color: rgba(201,162,39,0.4);
    transform: translateY(-6px);
}
.banner-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(201,162,39,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #C9A227;
}
.banner-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #fff;
}
.banner-card p {
    font-size: 0.88rem;
    opacity: 0.85;
    margin: 0;
}

/* Why list (horizontal items) */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}
.why-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: var(--light-bg);
    transition: all 0.3s ease;
}
.why-list-item:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(11,28,61,0.08);
    transform: translateX(6px);
}
body.rtl .why-list-item:hover {
    transform: translateX(-6px);
}
.why-list-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}
.why-list-item h4 {
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1rem;
}
.why-list-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 992px) {
    .split-layout,
    .split-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .banner-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-image img {
        min-height: 280px;
    }
}
@media (max-width: 576px) {
    .banner-cards {
        grid-template-columns: 1fr;
    }
}

/* ========== PRO PAGE HEADERS ========== */
.page-header {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}
.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,28,61,0.9), rgba(11,28,61,0.7));
}
.page-header-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-header-inner h1 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.page-header-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SERVICES PRO ========== */
.svc-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.svc-featured-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(11,28,61,0.08);
    border: 1px solid var(--border);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}
.svc-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(11,28,61,0.14);
}
.svc-featured-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.svc-featured-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,28,61,0.5), transparent);
}
.svc-featured-body {
    padding: 24px 28px 28px;
    position: relative;
}
.svc-featured-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), #e8d48b);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-top: -48px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(201,162,39,0.35);
}
.svc-featured-body h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.svc-featured-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}
.svc-row:last-child { margin-bottom: 0; }
.svc-row-reverse { direction: rtl; }
.svc-row-reverse > * { direction: ltr; }
body.rtl .svc-row-reverse { direction: ltr; }
body.rtl .svc-row-reverse > * { direction: rtl; }
.svc-row-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(11,28,61,0.12);
}
.svc-row-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.svc-row:hover .svc-row-image img {
    transform: scale(1.04);
}
.svc-row-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.svc-row-content h2 {
    color: var(--primary);
    font-size: 1.7rem;
    margin-bottom: 12px;
}
.svc-row-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.svc-cta-pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    text-align: left;
}
body.rtl .svc-cta-pro { text-align: right; }
.svc-cta-pro h2 { margin-bottom: 8px; }
.svc-cta-pro p { margin: 0; opacity: 0.9; }

/* ========== ABOUT PRO ========== */
.about-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.about-heading {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}
.about-text {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 24px;
}
.about-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--primary);
}
.about-check-item i {
    color: var(--gold);
    font-size: 1.15rem;
}
.about-team-img {
    position: relative;
}
.about-float-stat {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #fff;
    padding: 16px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}
body.rtl .about-float-stat {
    right: auto;
    left: 24px;
}
.about-float-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 800;
}
.about-float-stat span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-stats-banner {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}
.about-stats-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.28);
}
.about-stats-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,28,61,0.92), rgba(11,28,61,0.75));
}
.about-stats-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.about-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
}
.about-stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.about-mv-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11,28,61,0.08);
    border: 1px solid var(--border);
    transition: transform 0.35s ease;
}
.about-mv-card:hover {
    transform: translateY(-6px);
}
.about-mv-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.about-mv-body {
    padding: 28px;
}
.about-mv-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.about-mv-body h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.25rem;
}
.about-mv-body p {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 992px) {
    .svc-featured-grid,
    .svc-row,
    .svc-row-reverse,
    .about-mv-grid {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .about-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-cta-pro {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .about-stats-inner {
        grid-template-columns: 1fr;
    }
    .page-header-inner h1 {
        font-size: 1.9rem;
    }
}

/* ========== FEATURED SERVICES (Autónomos + Nómadas) ========== */
.section-featured-svc { background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%); }
.svc-badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,162,39,0.15);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.featured-svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.featured-svc-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(11,28,61,0.1);
    border: 2px solid rgba(201,162,39,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.featured-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(11,28,61,0.15);
    border-color: var(--gold);
}
.featured-svc-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.featured-svc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,28,61,0.75), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.featured-svc-icon-lg {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), #e8d48b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(201,162,39,0.4);
}
.featured-svc-body { padding: 28px 32px 32px; }
.featured-svc-body h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.featured-svc-desc {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 18px;
}
.sub-svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sub-svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
}
.sub-svc-list li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}
.sub-svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

/* Accordion services */
.svc-accordion { display: flex; flex-direction: column; gap: 12px; }
.svc-acc-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.svc-acc-item.open {
    box-shadow: 0 8px 32px rgba(11,28,61,0.1);
    border-color: rgba(201,162,39,0.3);
}
.svc-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
body.rtl .svc-acc-header { text-align: right; }
.svc-acc-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}
.svc-acc-title { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.svc-acc-title strong { color: var(--primary); font-size: 1.1rem; }
.svc-acc-title small { color: var(--text-light); font-size: 0.88rem; font-weight: 400; }
.svc-acc-chevron {
    color: var(--text-light);
    transition: transform 0.3s ease;
}
.svc-acc-item.open .svc-acc-chevron { transform: rotate(180deg); color: var(--gold); }
.svc-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.svc-acc-item.open .svc-acc-body { max-height: 2000px; }
.svc-acc-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    padding: 0 24px 28px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.svc-acc-img {
    height: 200px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}
.svc-acc-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.65;
}
.svc-acc-content h4 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Home featured cards */
.home-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 8px;
}
.home-featured-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(11,28,61,0.1);
    border: 2px solid rgba(201,162,39,0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    color: inherit;
}
.home-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(11,28,61,0.15);
}
.home-featured-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}
.home-featured-body { padding: 24px; position: relative; }
.home-featured-tag {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.rtl .home-featured-tag { right: auto; left: 20px; }
.home-featured-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.home-featured-body h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.home-featured-body > p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 14px;
}
.home-sub-preview {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.home-sub-preview li {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.home-sub-preview li i { color: var(--gold); font-size: 0.75rem; }
.home-sub-preview li.more { color: var(--text-light); font-style: italic; padding-left: 20px; }
.home-featured-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}
.home-svc-card {
    text-decoration: none;
    color: inherit;
    position: relative;
}
.home-svc-card .svc-count {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 992px) {
    .featured-svc-grid,
    .home-featured-grid,
    .svc-acc-inner {
        grid-template-columns: 1fr;
    }
    .sub-svc-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SERVICE BLOCKS (image + checklist) ========== */
.svc-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}
.svc-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.svc-block-reverse {
    direction: rtl;
}
.svc-block-reverse > * {
    direction: ltr;
}
body.rtl .svc-block-reverse { direction: ltr; }
body.rtl .svc-block-reverse > * { direction: rtl; }

.svc-block-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(11,28,61,0.12);
}
.svc-block-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}
.svc-block-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), #e8d48b);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
body.rtl .svc-block-badge { left: auto; right: 20px; }
.svc-block-star {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
}
body.rtl .svc-block-star { right: auto; left: 16px; }

.svc-block-content h2 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.svc-block-desc {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.sub-svc-heading {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.sub-svc-heading .sub-count {
    color: var(--gold);
    font-weight: 700;
}

/* Home all services mini grid */
.home-all-svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 36px;
}
.home-svc-block {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.home-svc-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11,28,61,0.1);
    border-color: rgba(201,162,39,0.4);
}
.home-svc-block-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.home-svc-block-top .card-icon {
    width: 44px;
    height: 44px;
    margin: 0;
    flex-shrink: 0;
}
.home-svc-block-top h3 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--primary);
}
.home-svc-block > p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.home-sub-mini {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.home-sub-mini li {
    font-size: 0.8rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.35;
}
.home-sub-mini li i {
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 3px;
}
.home-sub-mini li.more {
    color: var(--gold);
    font-weight: 600;
    padding-left: 16px;
}

@media (max-width: 992px) {
    .svc-block,
    .svc-block-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .svc-block-image img {
        height: 240px;
    }
}

/* Mobile language switcher inside nav */
.mobile-lang,
.mobile-wa-btn {
    display: none;
}
@media (max-width: 992px) {
    .desktop-lang,
    .desktop-wa {
        display: none !important;
    }
    .nav.open .mobile-lang {
        display: flex;
        gap: 8px;
        padding: 16px 0 8px;
        border-top: 1px solid rgba(255,255,255,0.15);
        margin-top: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav.open .mobile-lang a {
        padding: 8px 14px;
        border-radius: 8px;
        background: rgba(255,255,255,0.1);
        color: #fff !important;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .nav.open .mobile-lang a.active {
        background: var(--gold);
        color: var(--primary) !important;
    }
    .nav.open .mobile-wa-btn {
        display: inline-flex;
        margin: 12px auto 8px;
        width: fit-content;
    }
}

/* About coordinates */
.about-contact-section {
    background: #fff;
}
.about-coord-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}
.about-coord-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
a.about-coord-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11,28,61,0.1);
    border-color: rgba(201,162,39,0.4);
}
.about-coord-wa:hover {
    background: #e8f8ef;
    border-color: #25D366;
}
.about-coord-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
}
.about-coord-wa .about-coord-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}
.about-coord-card h4 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.about-coord-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin: 0;
    word-break: break-word;
}
.about-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(11,28,61,0.1);
}
