/* ============================================
   ROOT VARIABLES & GLOBAL STYLES
   ============================================ */

:root {
    --primary-color: #141414;
    --accent-color: #113629;
    --secondary-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* ============================================
   CONTAINER
   ============================================ */

.mcontainer {
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; color: var(--text-light); }

.accent { color: var(--accent-color); }

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}
.section-subtitle.light { color: rgba(255,255,255,0.8); }

.section-subheading {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.section-subheading.light { color: var(--white); }

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}
.btn.full { width: 100%; }

.btn-primary { background-color: var(--accent-color); color: var(--white); }
.btn-primary:hover {
    background-color: #113629;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn i { margin-left: 8px; transition: var(--transition); }
.btn:hover i { transform: translateX(4px); }

.btn-cost-calculator {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-cost-calculator:hover { background-color: #113629; }

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }

.top-bar-left { display: flex; gap: 30px; }
.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.top-bar-left a:hover { color: #dadfdd; }

.top-bar-right { display: flex; gap: 15px; }
.top-bar-right a { color: #ffffff; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container { display: flex; justify-content: space-between; align-items: center; }

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

#main-logo {
    height: 56px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.logo-text { font-family: 'DM Sans', sans-serif; }

.badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav a:hover { color: var(--accent-color); }
.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}
.nav a:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.values-grid {display: grid;grid-template-columns: repeat(3, 1fr); gap: 20px;  margin-top: 40px;}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 260px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10,37,64,0.9), rgba(10,37,64,0.7), transparent);
    z-index: 2;
}

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

.hero-content {
    max-width: 600px;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

.service-icons {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, var(--white), transparent);
    padding: 40px 0 20px;
    z-index: 3;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.icon-item {
    background-color: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.icon-item:hover {
    background-color: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.icon-item i { font-size: 2rem; color: var(--accent-color); display: block; margin-bottom: 10px; }
.icon-item span { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); display: block; }

/* ============================================
   STATISTICS SECTION
   ============================================ */

.statistics { background-color: var(--secondary-color); padding: 80px 0; }

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

.stat-card {
    background-color: #113629;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.stat-number { font-size: 3rem; font-weight: 700; color: #ffffff; font-family: 'DM Sans', sans-serif; }
.stat-label { color: #ffffff; margin-top: 10px; font-weight: 500; }

/* ============================================
   COMPANY INTRODUCTION SECTION
   ============================================ */

.company-intro { padding: 100px 0; background-color: var(--white); }

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

.intro-label {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.intro-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.intro-content p { margin-bottom: 1.5rem; line-height: 1.8; }

.intro-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }

.benefits-list { list-style: none; margin: 25px 0 0; padding: 0; }
.benefits-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.benefits-list li i { color: var(--accent-color); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }

/* ============================================
   SERVICES / JURISDICTION SECTION
   ============================================ */

.jurisdiction { padding: 100px 0; background-color: var(--secondary-color); }

.jurisdiction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.jurisdiction-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 8px;
}
.jurisdiction-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }

.jurisdiction-card .card-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.jurisdiction-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.jurisdiction-card .card-content p { margin-bottom: 20px; line-height: 1.6; flex: 1; text-align: justify; }
.jurisdiction-card .card-content h3 { text-align: center; }
.jurisdiction-card .btn { align-self: flex-start; }

.service-icon { width: 84px; height: 84px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; }
.service-icon img { max-width: 100%; max-height: 100%; display: block; }

/* ============================================
   WHY UAE SECTION
   ============================================ */

.why-uae { background-color: var(--white); color: var(--text-dark); padding: 100px 0; }

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

.benefit-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.benefit-card:hover { background-color: var(--white); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.benefit-card h3 { margin-bottom: 10px; color: var(--primary-color); text-align: center; }
.benefit-card p { color: var(--text-light); font-size: 0.95rem; text-align: justify; }

/* ============================================
   SIMPLE STEPS SECTION
   ============================================ */

.simple-steps { padding: 100px 0; background-color: var(--white); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.step-card:hover { border-color: var(--accent-color); box-shadow: var(--shadow-lg); transform: translateY(-8px); }

.step-icon {
    width: 60px; height: 60px;
    background-color: rgba(17,54,41,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step-icon i { font-size: 1.5rem; color: var(--accent-color); }

.step-number {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(17,54,41,0.1);
}
.step-card h3 { margin-bottom: 15px; font-size: 1.2rem; }
.step-card p { font-size: 0.95rem; color: var(--text-light); }

/* ============================================
   BLOG / INSIGHTS SECTION
   ============================================ */

.blog-insights { padding: 100px 0; background-color: var(--white); }

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

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }

.blog-image { width: 100%; height: 200px; background-size: cover; background-position: center; transition: var(--transition); }
.blog-card:hover .blog-image { transform: scale(1.1); }

.blog-content { padding: 25px; }
.blog-date { color: var(--text-light); font-size: 0.85rem; margin-bottom: 10px; }
.blog-date i { margin-right: 5px; }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 15px; line-height: 1.6; }

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.read-more:hover { gap: 12px; }

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form { padding: 100px 0; background-color: var(--secondary-color); }

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.contact-wrapper {
    background-color: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-info-title { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; }
.contact-info-text { color: var(--text-light); font-size: 1rem; margin-bottom: 30px; line-height: 1.6; }

.contact-details { margin-bottom: 30px; display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; gap: 15px; text-align: left; }
.contact-detail-item i { font-size: 1.5rem; color: var(--accent-color); margin-top: 5px; flex-shrink: 0; }
.contact-detail-item h4 { font-size: 1.1rem; color: var(--primary-color); margin-bottom: 5px; font-weight: 600; }
.contact-detail-item p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

.contact-map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { border-radius: 12px; }

.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.form-row.full { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(17,54,41,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-consent { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 25px; }
.form-consent input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; cursor: pointer; }
.form-consent label { font-size: 0.9rem; color: var(--text-light); cursor: pointer; }

.follow-us {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.follow-us span { font-weight: 600; color: var(--text-dark); }
.follow-us a { color: var(--text-light); font-size: 1.2rem; transition: var(--transition); }
.follow-us a:hover { color: var(--accent-color); transform: translateY(-2px); }

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section { padding: 80px 0; background-color: var(--secondary-color); }

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-intro { text-align: center; max-width: 700px; margin: 0 auto 40px; color: var(--text-light); font-size: 1.1rem; }

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
    user-select: none;
}
.faq-header:hover { background-color: #f9f9f9; }
.faq-header h3 { margin: 0; font-size: 1.1rem; color: var(--text-dark); flex: 1; }

.faq-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-toggle { transform: rotate(180deg); background-color: var(--primary-color); }

.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background-color: #fafafa; }
.faq-item.active .faq-content { max-height: 500px; }
.faq-content p { padding: 0 20px 20px 20px; margin: 0; color: var(--text-light); line-height: 1.8; }

.faq-form-wrapper { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border-color); }
.faq-form-wrapper h3 { text-align: center; margin-bottom: 30px; font-size: 1.6rem; color: var(--primary-color); }

.faq-form { max-width: 700px; margin: 0 auto; }
.faq-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.faq-form .form-group.full { grid-column: 1 / -1; }
.faq-form input,
.faq-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}
.faq-form input:focus,
.faq-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(17,54,41,0.1);
}
.faq-form .btn { display: block; width: 100%; margin-top: 20px; }

/* ============================================
   CLIENT LOGOS SECTION
   ============================================ */

.client-logos {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.logo-item { padding: 20px; background-color: var(--secondary-color); border-radius: 8px; transition: var(--transition); }
.logo-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.logo-item img { max-width: 100%; height: auto; transition: var(--transition); }
.logo-item:hover img { filter: grayscale(0%); }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d6d 100%);
    color: var(--white);
    text-align: center;
}

.cta-content { max-width: 800px; margin: 0 auto; }
.cta-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--white); }
.cta-content p { font-size: 1.1rem; margin-bottom: 30px; color: rgba(255,255,255,0.9); line-height: 1.8; }

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section { padding: 100px 0; background-color: var(--secondary-color); }

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section { padding: 100px 0; background-color: var(--white); }

.values-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card-large {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.value-card-large:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(17, 54, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.value-item {
    text-align: center;
}
.value-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}
.value-icon-large {
    width: 80px; height: 80px;
    background-color: rgba(17,54,41,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.value-icon-large i { font-size: 2rem; color: var(--accent-color); }
.value-icon-large img { width: 50px; height: 50px; object-fit: contain; }

.value-card-large h3 { margin-bottom: 15px; font-size: 1.3rem; }
.value-card-large p { font-size: 0.95rem; color: var(--text-light); }

/* ============================================
   VISION MISSION SECTION
   ============================================ */

.vision-mission { padding: 80px 0; background-color: var(--secondary-color); }

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vm-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.vm-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.vm-icon {
    width: 60px; height: 60px;
    background-color: rgba(17,54,41,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.vm-icon i { font-size: 1.8rem; color: var(--accent-color); }
.vm-icon img { width: 50px; height: 50px; object-fit: contain; }

.vm-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.vm-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials { padding: 100px 0; background-color: var(--white); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.testimonial-content p { font-style: italic; color: var(--text-dark); line-height: 1.8; margin-bottom: 20px; }

.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-image { width: 60px; height: 60px; border-radius: 50%; background-size: cover; background-position: center; }
.author-info h4 { margin: 0 0 5px 0; font-size: 1.1rem; }
.author-info span { color: var(--text-light); font-size: 0.9rem; }

/* ============================================
   FOOTER
   ============================================ */

.footer { background-color: var(--accent-color); color: var(--white); padding: 60px 0 20px; }

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

.footer-col h3,
.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-col p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }

.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 40px; height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.social-links a:hover { background-color: var(--white); color: var(--accent-color); }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.contact-info { display: flex; flex-direction: column; gap: 15px; }
.contact-info li { display: flex; gap: 12px; align-items: flex-start; }
.contact-info i { color: var(--white); margin-top: 2px; }
.contact-info span { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p { color: rgba(255,255,255,0.7); margin: 0; }

.footer-links { display: flex; gap: 30px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.whatsapp-button {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 50;
}
.whatsapp-button:hover { background-color: #20BD5A; transform: scale(1.1); }

/* ============================================
   ERROR
   ============================================ */

.error { color: #ff0000; font-size: 13px; display: block; margin-top: 5px; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.fade-in { animation: fadeIn 0.6s ease; }
.slide-in-left { animation: slideInLeft 0.6s ease; }
.slide-in-right { animation: slideInRight 0.6s ease; }

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* min-width: 768px */
@media (min-width: 768px) { .mcontainer { max-width: 720px; } }

/* min-width: 992px */
@media (min-width: 992px) { .mcontainer { max-width: 960px; } }

/* min-width: 1200px */
@media (min-width: 1200px) { .mcontainer { max-width: 1140px; } }

/* min-width: 1400px */
@media (min-width: 1400px) { .mcontainer { max-width: 1320px; } }

/* max-width: 1024px */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
}

/* max-width: 768px */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .section-title { font-size: 1.5rem; }
    .section-subheading { font-size: 1.3rem; }
    .logo-text { font-size: 20px; }

    /* Top Bar */
    .top-bar-left { flex-direction: column; gap: 8px; }
    .top-bar-right { display: none; }

    /* Navigation */
    .hamburger { display: flex; }
    .nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
    }
    .nav.active { display: flex; }
    .nav a::after { display: none; }

    /* Hero */
    .hero { padding-bottom: 160px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .icons-grid { grid-template-columns: repeat(2, 1fr); }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    /* Company Intro */
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-content h2 { font-size: 2rem; }
    .benefits-list li { font-size: 0.95rem; }

    /* Services */
    .jurisdiction-card .card-content { padding: 30px 20px; }
    .service-icon { width: 64px; height: 64px; margin-bottom: 14px; }

    /* Layout grids */
    .benefits-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .values-grid-large { grid-template-columns: 1fr; }
    
    .value-item {text-align: center;}
    .vm-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Contact */
    .contact-wrapper { padding: 30px; }
    .form-row { grid-template-columns: 1fr; }

    /* CTA */
    .cta-content h2 { font-size: 2rem; }
    .cta-content p { font-size: 1rem; }

    /* FAQ */
    .faq-section { padding: 60px 0; }
    .faq-header { padding: 16px; }
    .faq-header h3 { font-size: 1rem; }
    .faq-content p { padding: 0 16px 16px 16px; }
    .faq-form .form-row { grid-template-columns: 1fr; gap: 15px; }

    /* Footer */
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { flex-direction: column; gap: 15px; }

    /* WhatsApp */
    .whatsapp-button { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }

    /* Follow Us */
    .follow-us { flex-wrap: wrap; }
}

/* max-width: 480px */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    .section-title { font-size: 1.3rem; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content p { font-size: 0.95rem; }
    .icons-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .logos-grid { grid-template-columns: 1fr; }
    .contact-wrapper { padding: 20px; }
    .cta-content h2 { font-size: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}