:root {
    --primary-color: #003366; /* Navy Blue Industrial */
    --secondary-color: #f4f4f4;
    --accent-color: #ff6600; /* Industrial Orange */
    --text-color: #333;
    --light-text: #fff;
    --border-color: #ddd;
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: #ccc;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i, .social-links i {
    color: var(--accent-color);
    margin-right: 5px;
}

.social-links a {
    color: #ccc;
    margin-left: 15px;
}

.social-links a:hover {
    color: var(--light-text);
}

.login-link {
    background-color: var(--accent-color);
    color: white !important;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: bold;
    margin-left: 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo-text .highlight {
    color: var(--accent-color);
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
}

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

.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: #002244;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    height: 360px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,35,80,0.9) 0%, rgba(0,35,80,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin-right: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

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

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

.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

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

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

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.whatsapp-float-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, background 0.2s ease;
    font-size: 32px;
}

.whatsapp-float-label {
    display: none;
    background: rgba(255, 255, 255, 0.96);
    color: #111;
    padding: 10px 12px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    font-weight: 600;
    line-height: 1;
}

@media (min-width: 768px) {
    .whatsapp-float-label {
        display: inline-flex;
        align-items: center;
    }
}

.whatsapp-float:hover .whatsapp-float-icon {
    background: #1ebc57;
    transform: translateY(-2px);
}

.whatsapp-float:focus-visible .whatsapp-float-icon {
    outline: 3px solid rgba(37, 211, 102, 0.35);
    outline-offset: 4px;
}

/* About Section */
.about-section {
    padding: 55px 0;
    background-color: #fff;
}

.about-section .row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-section .col-text {
    flex: 1;
}

.about-section .col-image {
    flex: 1;
    text-align: center;
}

.about-image-placeholder {
    background-color: #f0f0f0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 5rem;
    color: #ccc;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Services */
.services {
    padding: 55px 0;
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
}

.page-header {
    background-color: #002244;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.page-header h1,
.page-header p {
    color: #fff;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
}

.service-icon, .service-icon-img {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-svg-img {
    max-height: 70px;
    max-width: 100%;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1.5;
    background: white;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn-form {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.btn-form:hover {
    background-color: #002244;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 30px 0;
}

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

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-col p, .footer-col ul {
    color: #ddd;
    font-size: 0.95rem;
}

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

.footer-col a {
    color: #ddd;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
}

/* Footer icons inline with text */
.footer-col i {
    margin-right: 8px;
    color: #ddd;
}

/* Mobile Responsive */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .top-bar {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav ul li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .contact-container {
        flex-direction: column;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-content button {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.dropzone {
    border: 2px dashed var(--border-color);
    background: #fafafa;
    color: #666;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}
.dropzone.dragover {
    border-color: var(--accent-color);
    background: #f2f4f7;
    color: var(--accent-color);
}
.file-hint {
    color: #666;
    margin-top: 8px;
}
.file-error {
    background: #ffe6e6;
    color: #b30000;
    padding: 10px 12px;
    border-radius: 4px;
    margin-top: 10px;
}
/* Home CTA spacing */
.contact-cta .btn {
    margin-top: 12px;
}

/* Service card link wrapper */
.service-card-link {
    display: block;
    color: inherit;
}
.service-card-link:hover {
    color: inherit;
}

/* Login page */
.login-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 420px;
    width: 100%;
}
.login-header h1 {
    color: var(--primary-color);
    margin-bottom: 5px;
}
.login-header p {
    color: #666;
    margin-bottom: 20px;
}
.login-error {
    background: #ffe6e6;
    color: #b30000;
    padding: 10px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.dash-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}
.dash-card-header {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.dash-card-body {
    padding: 16px;
}

.panel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.values-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.values-row > div {
    display: flex;
}
.value-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Timeline */
.steps {
    position: relative;
    margin-left: 28px;
}
.step {
    position: relative;
    padding: 0 0 18px 44px;
}
.step:last-child {
    padding-bottom: 0;
}
.step::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}
.step:last-child::after {
    display: none;
}
.step-icon {
    position: absolute;
    left: 4px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bbb;
    color: #fff;
    font-size: 14px;
}
.step.done .step-icon {
    background: var(--primary-color);
}
.step.current .step-icon {
    background: var(--accent-color);
}
.step.pending .step-icon {
    background: #e0e0e0;
    color: #999;
}
.step-label h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--primary-color);
}
.step-date {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--border-color);
}
.table th, .table td {
    padding: 12px 10px;
    border-bottom: 1px solid #dfe3e8;
    border-right: 1px solid #dfe3e8;
    text-align: left;
}
.table th:last-child, .table td:last-child {
    border-right: none;
}
.table tbody tr:last-child td {
    border-bottom: none;
}
.table thead th {
    background: #f6f7f9;
}
.table-striped tbody tr:nth-child(odd) {
    background: #fafbfc;
}
.table-striped tbody tr:nth-child(even) {
    background: #fff;
}
.table tbody tr:hover {
    background: #f2f4f7;
}
/* Cards */
.card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.card h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Friendly Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}
.toast {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
    border-left: 4px solid var(--accent-color);
    min-width: 300px;
}
.toast.success { border-left-color: #2e7d32; }
.toast.error { border-left-color: #c62828; }
.toast i { font-size: 1.2rem; }
.toast.success i { color: #2e7d32; }
.toast.error i { color: #c62828; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Password Strength */
.password-requirements {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
}
.req-item {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
    color: #888;
    transition: all 0.3s;
}
.req-item.valid {
    color: #2e7d32;
    font-weight: 500;
}
.req-item i {
    margin-right: 4px;
    font-size: 0.8rem;
}

/* Button Loading State */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}
.btn.loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-left: -9px;
    margin-top: -9px;
    border: 2px solid rgba(255,255,255,0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form Field Width Limiter */
.form-limit-width {
    max-width: 600px;
}
@media (max-width: 768px) {
    .form-limit-width { max-width: 100%; }
}

/* Login Page Logo */
.login-logo {
    text-align: center;
    margin-bottom: 24px;
}
.login-logo img {
    max-height: 60px;
}
.login-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Social Icons in Footer (Mobile/General) */
.mobile-social-footer {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.mobile-social-footer a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-social-footer a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.mobile-social-footer i {
    margin: 0 !important;
    color: #fff !important;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .mobile-social-footer {
        justify-content: center !important;
        margin-bottom: 20px;
        width: 100%;
    }
}



.login-logo-text .highlight {
    color: var(--accent-color);
}


/* UI Helpers */
.ui-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
    pointer-events: none;
    background: rgba(17, 24, 39, 0.95);
    color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    max-width: 92vw;
    transition: transform 200ms ease, opacity 200ms ease;
    z-index: 9999;
}
.ui-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.ui-toast .ui-toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
}
.ui-toast.success .ui-toast-icon {
    background: rgba(16, 185, 129, 0.18);
}
.ui-toast.warning .ui-toast-icon {
    background: rgba(245, 158, 11, 0.18);
}
.ui-toast .ui-toast-text {
    font-size: 0.95rem;
}
.btn.is-loading {
    opacity: 0.85;
    pointer-events: none;
    position: relative;
}
.btn.is-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.45);
    border-top-color: #fff;
    display: inline-block;
    margin-left: 10px;
    vertical-align: -3px;
    animation: uiSpin 700ms linear infinite;
}
.btn.btn-outline.is-loading::after {
    border-color: rgba(255, 102, 0, 0.35);
    border-top-color: var(--accent-color);
}
@keyframes uiSpin {
    to { transform: rotate(360deg); }
}

/* Auth pages */
.auth-body {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #eef2f7 100%);
    min-height: 100vh;
}
.auth-shell {
    padding: 56px 0;
}
.auth-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
}
.auth-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.auth-brand .auth-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
}
.auth-brand .auth-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.auth-brand .auth-logo-text {
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}
.auth-brand .auth-logo-text .highlight {
    color: var(--accent-color);
}
.auth-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.auth-header h1 {
    margin: 0;
}
.auth-header p {
    margin: 8px 0 0;
    color: #556;
}
.auth-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.auth-actions .btn {
    padding: 10px 18px;
    text-transform: none;
    font-size: 0.95rem;
}
.auth-footer-link {
    margin-top: 12px;
    text-align: right;
}

/* Password strength UI */
.pwd-rules {
    margin-top: 10px;
    display: grid;
    gap: 6px;
}
.pwd-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.92rem;
}
.pwd-rule .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #c7c7c7;
}
.pwd-rule.ok {
    color: #0a7d2f;
}
.pwd-rule.ok .dot {
    background: #18a34a;
}
.pwd-rule.bad {
    color: #b00020;
}
.pwd-rule.bad .dot {
    background: #e11d48;
}

/* Mobile Specific Adjustments */
.mobile-login-item {
    display: none;
}
.mobile-social-footer {
    display: none;
}

@media (max-width: 768px) {
    /* Mobile Login Link */
    .mobile-login-item {
        display: block;
        margin-top: 10px;
        border-top: 1px solid rgba(0,0,0,0.1);
        padding-top: 10px;
    }
    .mobile-login-item a {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    /* Footer Social Icons */
    .mobile-social-footer {
        display: flex;
        justify-content: flex-start;
        gap: 15px;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    .mobile-social-footer a {
        color: #fff;
        font-size: 1.2rem;
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        transition: background 0.3s;
    }
    .mobile-social-footer a:hover {
        background: var(--accent-color);
    }

    /* Hero Fixes */
    .hero {
        padding: 100px 0 80px 0;
        height: auto !important;
        min-height: auto !important;
        display: flex;
        align-items: center;
    }
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 30px;
    }
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 15px 20px;
    }

    /* Hide Body Images in Services/Home */
    .rich-text-content img {
        display: none !important;
    }
    
    /* Ensure About Section Stacks */
    .about-section .row {
        flex-direction: column;
    }
    .col-image {
        margin-top: 30px;
    }
}
