@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
    --bg-white: #ffffff;
    --text-black: #000000;
    --text-grey: #666666;
    --input-bg: #F3F4F6;
    --btn-black: #000000;
    --accent-orange: #f59e0b;
    --accent-orange-hover: #d97706;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-container {
    display: flex;
    min-height: calc(100vh - 80px);
    /* Fill screen minus navbar */
    width: 100%;
}

/* NAVBAR */
.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background-color: var(--accent-orange);
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-navbar .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: none;
    letter-spacing: normal;
    padding: 0;
    border-bottom: none;
}

.nav-link:hover {
    color: white;
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 900px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: none;
    grid-template-columns: 1fr 1fr 1fr 240px;
    padding: 30px;
    gap: 30px;
    border: 1px solid #f1f5f9;
    animation: slideUp 0.3s ease-out;
}

.mini-dropdown {
    width: 280px;
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 10px;
}

.mini-dropdown .mega-column a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
}

.mini-dropdown .mega-column a i {
    width: 20px;
    color: var(--accent-orange);
    font-size: 1rem;
}

.mini-dropdown .mega-column a i.fa-whatsapp {
    color: #22c55e;
}

.mini-dropdown .mega-column a:hover {
    background-color: #fff7ed;
    color: var(--accent-orange);
    padding-left: 20px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.has-dropdown:hover .mega-menu {
    display: grid;
}

.mega-column h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.mega-column a {
    display: block;
    text-decoration: none;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.2s;
}

.mega-column a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.mega-info-box {
    background: #fffaf0;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--accent-orange-hover);
}

.emergency-box {
    background: #fff7ed;
    border: 1px solid #fdba74;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.1);
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c2410c;
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.emergency-header i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.mega-info-box span {
    font-weight: 700;
    color: #9a3412;
    display: block;
    margin-bottom: 5px;
}

.mega-info-box p {
    font-size: 0.8rem;
    color: #7c2d12;
    margin-bottom: 15px;
    line-height: 1.4;
}

.btn-mini-orange {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    width: 100%;
}

.btn-mini-emergency {
    display: block;
    background: #ea580c;
    /* Darker orange/red */
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.btn-mini-emergency:hover {
    background: #c2410c;
}

.btn-mini-orange {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
}

/* NAVBAR RIGHT */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-accelarated {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-accelarated:hover {
    background: white;
    color: var(--accent-orange);
    border-color: white;
}

.btn-emergency-mobile {
    display: none;
}

/* INFO SECTION */
.info-section {
    background-color: white;
    padding: 100px 80px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.info-container {
    max-width: 1200px;
    width: 100%;
}

.info-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    /* Navy/Slate 800 */
    margin-bottom: 80px;
    letter-spacing: -1.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: #eff6ff;
    /* Blue 50 */
    color: #2563eb;
    /* Royal Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.6rem;
}

.feature-item p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #475569;
    /* Slate 600 */
    margin: 0;
}

.feature-item p strong {
    color: #1e293b;
    font-weight: 700;
}

.highlight {
    color: #d97706;
    /* Amber 600 - subtle orange callout */
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .info-section {
        padding: 60px 40px;
    }
}

/* SERVICES SECTION */
.services-section {
    background-color: #f8fafc;
    /* Very light slate */
    padding: 100px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.services-container {
    max-width: 1240px;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #2563eb;
}

.image-wrapper {
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.card-content i {
    color: #2563eb;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.service-card:hover .card-content i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 2.5rem;
    }
}

/* SEARCH TRIGGER */
.search-trigger {
    background-color: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 40px;
    width: 100%;
    max-width: 500px;
}

.search-trigger:hover {
    border-color: var(--accent-orange);
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.search-trigger i {
    color: #94a3b8;
    font-size: 1.2rem;
}

.search-trigger span {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.search-trigger .k-shortcut {
    margin-left: auto;
    background: white;
    border: 1px solid #cbd5e1;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
}

/* SPOTLIGHT OVERLAY */
.spotlight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spotlight-overlay.active {
    display: flex;
    opacity: 1;
}

.spotlight-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
}

.close-spotlight {
    position: absolute;
    top: -40px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.close-spotlight:hover {
    opacity: 1;
}

/* MINI PROCEDURES GRID */
.mini-procedures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
}

.mini-card {
    background: white;
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mini-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.1);
}

.mini-icon {
    font-size: 1.4rem;
    color: #64748b;
    /* Slate 400 */
    margin-bottom: 10px;
    transition: color 0.2s;
}

.mini-card:hover .mini-icon {
    color: var(--accent-orange);
}

.mini-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .mini-procedures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* LEFT PANEL */
.left-panel {
    flex: 1;
    padding: 30px 60px;
    /* Reduced from 60px 80px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.brand {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    /* Reduced from 3.5rem */
    line-height: 1.1;
    margin-bottom: 12px;
    /* Reduced from 20px */
    letter-spacing: -1.2px;
}

.hero-description {
    color: var(--text-grey);
    font-size: 0.9rem;
    /* Reduced from 1rem */
    line-height: 1.5;
    max-width: 90%;
    margin-bottom: 25px;
    /* Reduced from 40px */
}

/* FORM CARD */
.form-card {
    background: white;
    padding: 20px;
    /* Reduced from 30px */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 480px;
    /* Slightly wider */
}

.form-title {
    font-size: 0.8rem;
    /* Reduced from 0.9rem */
    color: #888;
    margin-bottom: 12px;
    /* Reduced from 20px */
    font-weight: 500;
}

.form-group {
    margin-bottom: 10px;
    /* Reduced from 15px */
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    /* Reduced from 0.8rem */
    font-weight: 600;
    margin-bottom: 5px;
    /* Reduced from 8px */
    color: #333;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    /* Reduced padding */
    background-color: var(--input-bg);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s;
}

.form-input:focus {
    outline: 2px solid var(--accent-orange);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.form-textarea {
    width: 100%;
    min-height: 80px;
    /* Reduced from 120px */
    padding: 12px;
    background-color: var(--input-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #333;
    resize: none;
    /* Disabling resize to maintain layout */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
    /* Reduced margin */
}

.form-textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--accent-orange);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
}

.btn-solucion {
    width: 100%;
    background-color: var(--accent-orange);
    color: white;
    padding: 14px;
    /* Reduced from 18px */
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    /* Reduced from 1.1rem */
    cursor: pointer;
    margin-top: 8px;
    /* Reduced margin */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.2);
}

.btn-solucion:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}

.btn-solucion:active {
    transform: translateY(-1px) scale(0.98);
}

/* RIGHT PANEL */
/* RIGHT PANEL */
.right-panel {
    flex: 1;
    background-color: var(--bg-white);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* White gradient fade to blend the bottom of the image */
.right-panel::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
}

.right-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Changed to cover to fill width like reference */
    object-position: center top;
    /* Focus on face */
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .landing-container {
        flex-direction: column;
        overflow-y: auto;
    }

    .left-panel,
    .right-panel {
        max-width: 100%;
        flex: none;
        width: 100%;
    }

    .right-panel {
        height: 400px;
        order: -1;
        order: 1;
    }

    .left-panel {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* FOOTER */
.main-footer {
    background-color: white;
    padding: 60px 40px 30px;
    border-top: 1px solid #f1f5f9;
    width: 100%;
    z-index: 10;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Transparency Notice */
.transparency-notice {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 60px;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #334155;
}

.notice-header h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.notice-header i {
    font-size: 0.9rem;
}

.transparency-notice p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.transparency-notice strong {
    color: #334155;
}

/* Footer Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-column h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #334155;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--accent-orange);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-footer {
        padding: 40px 20px 20px;
    }
}

/* SOCIAL PROOF BAR */
.stats-bar {
    background-color: var(--accent-orange);
    padding: 60px 0;
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
}

.stat-separator {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-separator {
        width: 80px;
        height: 1px;
    }
}

/* NAVBAR EMERGENCY ITEM (MICRO-BANNER) */
.navbar-emergency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff7ed;
    /* Original light alert bg */
    border: 1.5px solid #ea580c;
    /* Red/Orange border for visibility */
    padding: 6px 16px;
    border-radius: 8px;
    margin-right: 15px;
    box-shadow: 0 4px 6px -1px rgba(194, 65, 12, 0.2);
    height: 54px;
    /* Fits within 70px navbar */
}

.emergency-info-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.emergency-title-row {
    color: #c2410c;
    /* Strong Red/Orange Text */
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.emergency-title-row i {
    animation: pulse 2s infinite;
}

.emergency-desc-row {
    font-size: 0.7rem;
    color: #9a3412;
    font-weight: 600;
    line-height: 1.2;
}

/* Hide description on smaller screens to save space */
@media (max-width: 1100px) {
    .emergency-desc-row {
        display: none;
    }
}

@media (max-width: 900px) {
    .navbar-emergency-item {
        display: none;
        /* Too small for header, fallback to mega menu */
    }
}

/* --- MOBILE OPTIMIZATION ( < 768px ) --- */
@media (max-width: 768px) {
    .main-navbar {
        padding: 0 20px;
        justify-content: space-between;
    }

    .nav-links {
        display: none !important;
        /* Hide links on mobile for now, or simplify */
    }

    .navbar-left {
        gap: 15px;
    }

    .btn-accelarated {
        display: none !important;
    }

    .btn-emergency-mobile {
        display: flex !important;
        align-items: center;
        gap: 8px;
        background-color: #ea580c;
        color: white;
        text-decoration: none;
        padding: 10px 18px;
        border-radius: 9999px;
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        border: 2px solid white;
        box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
        animation: pulse-glow 2s infinite;
    }

    .btn-emergency-mobile i {
        font-size: 1rem;
    }

    @keyframes pulse-glow {
        0% {
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(234, 88, 12, 0.5);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
        }
    }

    .landing-container {
        flex-direction: column;
    }

    .left-panel {
        max-width: 100%;
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-description {
        margin: 0 auto 25px auto;
    }

    .search-trigger {
        margin: 30px auto 0 auto;
    }

    .mini-procedures-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 30px auto 0 auto;
    }

    .right-panel {
        height: 300px;
        order: 1;
    }

    .info-section {
        padding: 60px 20px;
    }

    .info-title {
        font-size: 2rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 2.4rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-column {
        padding-bottom: 20px;
        border-bottom: 1px solid #f1f5f9;
    }

    .footer-column:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .mini-procedures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-card h4 {
        font-size: 0.7rem;
    }

    .main-navbar .logo {
        font-size: 1.2rem;
    }
}

/* Ensure no horizontal scroll */
body {
    overflow-x: hidden;
    width: 100%;
}