:root {
    --main-color: #000000;
    --sec1-color: #f29e02;
    --sec-color: #cc1f28;
    --white-color: #fff;
    --dark-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --main-transition: 0.4s;
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-brands-400.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl ;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-weight: 400;
    font-family: 'Poppins', serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;

}
p {
    direction: rtl;
    unicode-bidi: plaintext;
}


a {
    text-decoration: none !important;
}

ul {
    list-style: none !important;
}

/* Main Title */
.main-title {
    margin: 40px 0;
    position: relative;
    text-align: center;
}

.main-title h1,
.main-title h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--sec-color);
    display: inline-block;
    padding: 0 20px;
    position: relative;
}

.main-title .shape {
    position: absolute;
    left: 50%;
    background-color: var(--sec-color);
    height: 4px;
    width: 300px;
    transform: translateX(-50%);
    bottom: -20px;
}

.main-title .shape::before,
.main-title .shape::after {
    content: "";
    display: block;
    height: 4px;
    background-color: var(--sec-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-title .shape::before {
    width: 200px;
    bottom: -15px;
}

.main-title .shape::after {
    width: 100px;
    bottom: -30px;
}

/* Header */
.header {
    background: var(--white-color);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--main-transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    flex-shrink: 0;
    order: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform var(--main-transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 100%;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform var(--main-transition);
}

.logo:hover .logo-img {
    transform: rotate(5deg);
}

.header-spacer {
    flex: 1;
}

.nav-desktop {
    flex-shrink: 0;
    order: -1;
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin-bottom: 0 !important;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item.user-item {
    margin-right: 0;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem !important;
    color: var(--main-color) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--main-transition);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sec-color), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--main-transition);
}

.nav-link:hover {
    background-color: rgba(14, 17, 8, 0.15);
    color: var(--sec-color) !important;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.user-btn {
    display: none;
    align-items: center;
    gap: 0.8rem;
    background: var(--sec-color);
    border: 2px solid var(--sec-color);
    color: var(--white-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--main-transition);
    position: relative;
    overflow: hidden;
    margin-right: 0;
}

.user-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sec-color), transparent);
    opacity: 0;
    transition: opacity var(--main-transition);
    z-index: -1;
}

.user-btn:hover {
    border-color: var(--sec-color);
    background: rgba(142, 176, 77, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 176, 77, 0.3);
}

.user-btn:hover::before {
    opacity: 0.1;
}

.user-name {
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--main-transition);
    flex-shrink: 0;
}

.user-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--main-transition);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    color: #333;
    text-decoration: none;
    transition: all var(--main-transition);
    border-right: 3px solid transparent;
}

.dropdown-item svg {
    width: 20px;
    height: 20px;
    color: var(--main-color);
    transition: color var(--main-transition);
    flex-shrink: 0;
}

.dropdown-item:hover {
    background-color: var(--dark-bg);
    border-right-color: var(--sec-color);
    padding-right: 1.5rem;
}

.dropdown-item:hover svg {
    color: var(--sec-color);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

.dropdown-item.logout {
    color: #e74c3c;
}

.dropdown-item.logout svg {
    color: #e74c3c;
}

.dropdown-item.logout:hover {
    background-color: rgba(231, 76, 60, 0.1);
}

/* ==================== Mobile Header ==================== */

.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    transition: all var(--main-transition);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--sec-color);
    border-radius: 2px;
    transition: all var(--main-transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo .logo-img {
    width: 100%;
    height: 40px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--main-color);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: right var(--main-transition);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white-color);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--main-transition);
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--sec-color);
}

.close-btn svg {
    width: 24px;
    height: 24px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex: 1;
}

.sidebar-link {
    padding: 1rem 1.5rem;
    color: var(--white-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--main-transition);
    position: relative;
    border-right: 3px solid transparent;
    display: block;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--sec-color), transparent);
    transition: height var(--main-transition);
}

.sidebar-link:hover {
    background-color: rgba(142, 176, 77, 0.15);
    padding-right: 2rem;
    color: var(--sec-color);
}

.sidebar-link:hover::before {
    height: 100%;
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-user-btn,
.sidebar-logout-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--main-transition);
}

.sidebar-user-btn:hover {
    background: rgba(142, 176, 77, 0.25);
    border-color: var(--sec-color);
    transform: translateX(-5px);
}

.sidebar-logout-btn:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    color: #e74c3c;
}

.sidebar-user-btn svg,
.sidebar-logout-btn svg {
    width: 20px;
    height: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes imageFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}


@media (min-width: 768px) {
    .services-section .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-desktop {
        display: flex;
    }

    .user-btn {
        display: flex;
    }

    .mobile-header {
        display: none !important;
    }

    .menu-toggle,
    .sidebar,
    .overlay {
        display: none !important;
    }

    .header-container {
        padding: 1rem 2rem;
    }

    .nav-link {
        padding: 0.8rem 1.2rem;
    }
}


@media (max-width: 767px) {
    .header-container {
        display: none;
    }

    .mobile-header {
        display: flex;
    }
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.contact-btn {
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--main-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    text-decoration: none;
}

.btn-phone {
    background: var(--sec-color);
    color: var(--main-color);
}

.btn-phone:hover {
    transform: translateY(-3px);
    background-color: var(--sec1-color);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Contact */
.contact {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact .info-card {
    background: #000000;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--main-transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    color: var(--white-color);
}

.contact .info-card:hover {
    transform: translateY(-10px);
    background: #111111;
    border-color: var(--sec-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 158, 2, 0.12), transparent);
    transition: var(--main-transition);
}

.contact .info-card:hover::before {
    left: 100%;
}

.contact .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sec-color), #ffcc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: var(--main-color);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.3);
}

.contact .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--sec-color);
}

.contact .card-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact .card-link {
    color: var(--sec-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--main-transition);
}

.contact .card-link:hover {
    color: #ffcc00;
    gap: 12px;
}

.contact .social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    font-size: 20px;
    transition: var(--main-transition);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.contact .social-link:hover {
    background: var(--sec-color);
    color: var(--main-color);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.4);
}

.contact .contact-form-container {
    background: #000000;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    color: var(--white-color);
}

.contact .contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 158, 2, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.contact .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact .form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--sec-color);
}

.contact .form-header p {
    color: var(--white-color);
}

.contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact .input-group {
    position: relative;
}

.contact .input-group input,
.contact .input-group textarea,
.contact .input-group select {
    width: 100%;
    padding: 18px 20px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    font-size: 16px;
    color: var(--main-color);
    transition: var(--main-transition);
    resize: vertical;
}

.contact .input-group select {
    appearance: none;
    cursor: pointer;
}

.contact .input-group textarea {
    min-height: 150px;
}

.contact .input-group input:focus,
.contact .input-group textarea:focus,
.contact .input-group select:focus {
    outline: none;
    border-color: var(--sec-color);
    background: #fffdf7;
    box-shadow: 0 0 0 3px rgba(242, 158, 2, 0.25);
}

.contact .input-group label {
    position: absolute;
    right: 20px;
    top: 18px;
    color: #6c757d;
    transition: var(--main-transition);
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}

.contact .input-group input:focus+label,
.contact .input-group textarea:focus+label,
.contact .input-group select:focus+label,
.contact .input-group input:not(:placeholder-shown)+label,
.contact .input-group textarea:not(:placeholder-shown)+label,
.contact .input-group select:not([value=""])+label {
    top: -10px;
    font-size: 14px;
    color: #ffffff;
    background: var(--sec-color);
    border-radius: 999px !important;
    padding: 2px 10px;
}

.contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .contact .form-row {
        grid-template-columns: 1fr;
    }
}

.contact .submit-btn {
    padding: 18px 40px;
    background: linear-gradient(90deg, var(--sec-color), #ffcc00);
    border: none;
    border-radius: 12px !important;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--main-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(242, 158, 2, 0.3);
}

.contact .submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 158, 2, 0.5);
    letter-spacing: 1px;
}

.contact .submit-btn:active {
    transform: translateY(0);
}

.contact .message-status {
    padding: 15px 20px;
    border-radius: 10px !important;
    margin-bottom: 20px;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.contact .message-status.success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.contact .message-status.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* Footer */
footer {
    font-family: serif;
    text-align: right;
    position: relative;
    padding: 40px 0px 0 0px;
    color: #fff;
    background-color: var(--main-color);
}

.footer .angles li a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: all 0.3s ease;
}

.footer .angles li a:hover {
    color: var(--sec-color);
    padding-right: 5px;
}

.footer .develop-by {
    width: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

footer a {
    color: #fff;
}

.ul-title,
.footer-logo {
    text-align: right;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 60px !important;
}

.footer-logo img {
    max-width: 50%;
    margin-right: auto;
    margin-left: 0;
}

footer ul {
    margin-top: 30px;
    padding-left: 20px;
    list-style-position: inside;
}

footer ul li a {
    position: relative;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li i {
    margin-left: 7px;
    color: var(--sec-color);
}

.footer .angles li::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--sec-color);
    content: "\f100";
}

footer .angles li a {
    display: inline-block;
    text-align: right;
    margin-right: 30px;
}

footer .mail {
    letter-spacing: normal;
    font-size: .9rem;
}

.ul,
footer ul span,
footer ul li a {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}

.copyright a {
    margin-left: 5px;
}

.copyright {
    border-top: 1px solid var(--sec-color);
    padding: 10px 0 1px !important;
    background-color: black;
    width: 100% !important;
}

.copyright p,
.copyright a {
    color: #fff;
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}

.develop-by .innovo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* Articles */
.articles-header {
    position: relative;
    padding: 20px 0;
    text-align: center;
}

.articles-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 70px auto 40px !important;
    z-index: 10;
}

.search-box {
    width: 100%;
    padding: 20px 60px 20px 30px;
    background: var(--white-color);
    backdrop-filter: blur(10px);
    border: 2px solid var(--main-color);
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--main-color);
    transition: var(--main-transition);
    box-shadow: var(--shadow);
}

.search-box:focus {
    outline: none;
    border-color: var(--sec-color);
    box-shadow: 0 0 0 3px rgba(242, 158, 2, 0.2), 0 5px 20px rgba(242, 158, 2, 0.1);
}

.search-box::placeholder {
    color: var(--main-color);
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sec-color);
    font-size: 1.3rem;
    transition: var(--main-transition);
}

.search-box:focus+.search-icon {
    color: #ffcc00;
    transform: translateY(-50%) scale(1.1);
}

.articles-container .articles-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.articles-container .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.articles-container .article-card {
    background: var(--main-color);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--main-transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: articlesFadeInUp 0.6s ease-out;
}

@keyframes articlesFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.articles-container .article-card:hover {
    transform: translateY(-10px);
    border-color: var(--sec-color);
    box-shadow: 0 15px 30px rgba(242, 158, 2, 0.2);
}

.articles-container .article-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 158, 2, 0.1), transparent);
    transition: var(--main-transition);
}

.articles-container .article-card:hover::before {
    right: 100%;
}

.articles-container .article-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.articles-container .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition);
}

.articles-container .article-card:hover .article-image img {
    transform: scale(1.05);
}

.articles-container .article-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    color: var(--sec-color);
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid rgba(242, 158, 2, 0.3);
}

.articles-container .article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.articles-container .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.articles-container .article-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--sec-color);
}

.articles-container .article-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white-color);
    line-height: 1.4;
    transition: var(--main-transition);
    cursor: pointer;
}

.articles-container .article-title:hover {
    color: var(--sec-color);
}

.articles-container .article-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.articles-container .article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.articles-container .read-more-btn {
    padding: 10px 20px;
    background: var(--sec-color);
    border: none;
    border-radius: 25px;
    color: var(--main-color);
    font-weight: bold;
    cursor: pointer;
    transition: var(--main-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.articles-container .read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.4);
    gap: 12px;
}

.articles-container .load-more-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px 0;
    position: relative;
}

.articles-container .load-more-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 158, 2, 0.5), transparent);
}

.articles-container .load-more-btn {
    padding: 18px 50px;
    background: var(--sec-color);
    border: none;
    border-radius: 50px;
    color: var(--main-color);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--main-transition);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(242, 158, 2, 0.3);
    position: relative;
    overflow: hidden;
}

.articles-container .load-more-btn:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 158, 2, 0.5);
    letter-spacing: 1px;
}

.articles-container .load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.articles-container .load-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.articles-container .load-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.articles-container .no-more-articles {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: inline-block;
}

.articles-container .no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.articles-container .no-results-icon {
    font-size: 5rem;
    color: var(--sec-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.articles-container .no-results h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--sec-color);
}

.articles-container .no-results p {
    color: var(--main-color);
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .articles-container .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .articles-header h1 {
        font-size: 3rem;
    }

    .articles-container .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .articles-container .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        padding: 0 15px;
    }

    .articles-container .article-card {
        border-radius: 15px;
    }

    .articles-container .article-image {
        height: 200px;
    }

    .articles-container .article-content {
        padding: 20px;
    }

    .articles-container .article-title {
        font-size: 1.3rem;
    }

    .articles-container .article-excerpt {
        font-size: 0.95rem;
    }

    .articles-container .read-more-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .articles-header h1 {
        font-size: 2rem;
    }

    .articles-header p {
        font-size: 1rem;
    }

    .search-container {
        margin-bottom: 30px;
    }

    .articles-container .article-card {
        border-radius: 15px;
    }

    .articles-container .article-content {
        padding: 20px;
    }

    .articles-container .article-title {
        font-size: 1.3rem;
    }

    .articles-container .load-more-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Single Show */
.service-page {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.service-page .service-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .service-page .service-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.service-page .main-content {
    background: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.service-page .service-header-content {
    display: block;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--sec-color);
}

.service-page .service-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.service-page .service-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: var(--main-transition);
    display: block;
}

.service-page .service-image:hover img {
    transform: scale(1.05);
}

.service-page .service-info {
    width: 100%;
}

.service-page .service-title {
    font-size: 2rem;
    color: var(--sec-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-page .service-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.service-page .service-description table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.service-page .service-description th,
.service-page .service-description td {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 12px;
    vertical-align: top;
    text-align: right;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.service-page .service-description thead th {
    background: rgba(242, 158, 2, 0.12);
    color: var(--main-color);
    font-weight: 700;
}

.service-page .service-description tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    .service-page .service-description table {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .service-page .service-description th,
    .service-page .service-description td {
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

.service-page .content-section {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-page .section-title {
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sec-color);
    position: relative;
}

.service-page .content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.service-page .toc-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.service-page .toc-container {
    background: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border-right: 3px solid var(--sec-color);
}

.service-page .toc-title {
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-page .toc-title i {
    color: var(--sec-color);
}

.service-page .toc-list {
    list-style: none;
}

.service-page .toc-item {
    margin-bottom: 10px;
}

.service-page .toc-link {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    transition: var(--main-transition);
    font-size: 0.95rem;
}

.service-page .toc-link:hover {
    background: rgba(242, 158, 2, 0.1);
    color: var(--main-color);
    padding-right: 20px;
}

.service-page .toc-link.active {
    background: var(--sec-color);
    color: var(--white-color);
    font-weight: 600;
}

.service-page .related-services {
    background: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.service-page .related-title {
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-page .related-title i {
    color: var(--sec-color);
}

.service-page .related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-page .related-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(242, 158, 2, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(242, 158, 2, 0.1);
    transition: var(--main-transition);
    text-decoration: none;
    color: inherit;
}

.service-page .related-item:hover {
    transform: translateX(-5px);
    border-color: var(--sec-color);
    box-shadow: var(--shadow);
}

.service-page .related-image {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-page .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page .related-content h4 {
    color: var(--main-color);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.service-page .related-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-page .gallery-section {
    background: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.service-page .gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.service-page .gallery-title {
    font-size: 1.8rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.service-page .gallery-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 18px;
    margin-bottom: 30px;
}

.service-page .gallery-grid .grid-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transform-origin: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-page .gallery-grid .grid-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(242, 158, 2, 0.35), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-page .gallery-grid .grid-item:hover {
    transform: translateY(-6px) scale(1.03) rotate(-0.5deg);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.service-page .gallery-grid .grid-item:hover::before {
    opacity: 1;
}

@media (max-width: 1024px) {
    .service-page .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 170px;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .service-page .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 160px;
        gap: 8px;
    }
}

.service-page .grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #111;
}

.service-page .grid-item:hover {
    z-index: 10;
}

.service-page .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition);
}

.service-page .grid-item:hover img {
    transform: scale(1.1);
}

.service-page .lightbox-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.service-page .lightbox-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.service-page .lightbox-img {
    width: 100%;
    height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.service-page .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(242, 158, 2, 0.8);
    color: var(--white-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--main-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-page .lightbox-nav:hover {
    background: var(--sec-color);
    transform: translateY(-50%) scale(1.1);
}

.service-page .lightbox-prev {
    right: -50px;
}

.service-page .lightbox-next {
    left: -50px;
}

.service-page .lightbox-close {
    position: absolute;
    top: -50px;
    left: 0;
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--main-transition);
}

.service-page .lightbox-close:hover {
    color: var(--sec-color);
    transform: rotate(90deg);
}

.service-page .lightbox-counter {
    position: absolute;
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
    color: var(--white-color);
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .service-page {
        max-width: 100%;
        padding: 15px;
    }

    .service-page .service-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .contact-buttons {
        gap: 15px;
    }

    .contact-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 160px;
    }

    .contact .contact-form-container,
    .contact .info-card {
        padding: 25px;
    }

    .contact .form-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        column-count: 2;
    }

    .articles-header {
        padding: 30px 0;
    }

    .articles-header h1 {
        font-size: 2.5rem;
    }

    .articles-header p {
        font-size: 1.1rem;
    }

    .search-box {
        padding: 18px 50px 18px 25px;
        font-size: 1rem;
    }

    .articles-container .articles-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .service-page {
        margin: 15px auto;
    }

    .service-page .main-content {
        padding: 20px;
    }

    .service-page .service-header-content {
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .service-page .service-title {
        font-size: 1.5rem;
    }

    .service-page .service-description {
        font-size: 1rem;
    }

    .service-page .section-title {
        font-size: 1.3rem;
    }

    .service-page .content-text {
        font-size: 1rem;
    }

    .service-page .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-page .gallery-section {
        padding: 20px;
        margin-top: 30px;
    }

    .service-page .gallery-title {
        font-size: 1.5rem;
    }

    .service-page .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .service-page .lightbox-prev {
        right: -40px;
    }

    .service-page .lightbox-next {
        left: -40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
    }

    .articles-header h1 {
        font-size: 2rem;
    }

    .articles-header p {
        font-size: 1rem;
    }

    .search-container {
        margin-bottom: 30px;
    }

    .articles-container .article-card {
        border-radius: 15px;
    }

    .articles-container .article-content {
        padding: 20px;
    }

    .articles-container .article-title {
        font-size: 1.3rem;
    }

    .articles-container .load-more-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .service-page .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 100px;
        gap: 4px;
    }

    .service-page .service-layout {
        gap: 25px;
    }

    .service-page .toc-container,
    .service-page .related-services {
        padding: 20px;
    }

    .service-page .gallery-header {
        margin-bottom: 20px;
    }

    .service-page .gallery-title {
        font-size: 1.3rem;
    }

    .service-page .lightbox-nav {
        position: fixed;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .service-page .lightbox-prev {
        right: auto;
        left: 20px;
    }

    .service-page .lightbox-next {
        left: auto;
        right: 20px;
    }
}

.service-page .service-image {
    position: relative;
    overflow: hidden;
}

.service-page .service-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 70%, rgba(242, 158, 2, 0.1));
    opacity: 0;
    transition: var(--main-transition);
}

.service-page .service-image:hover::after {
    opacity: 1;
}

.contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 100px;
}

@media (max-width: 900px) {
    .contact .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Services section */
.services-section {
    background-color: var(--dark-bg);
    padding: 40px 0;
}

.services-section .container {
    margin-top: 5rem;
}

.services-section .service-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.services-section .service-item {
    position: relative;
    text-align: center;
    transition: var(--main-transition);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section .service-grid img {
    width: 100%;
    max-height: 50%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    border: 3px solid transparent;
    transition: var(--main-transition);
    box-shadow: var(--shadow);
}

.services-section .service-item:hover img {
    transform: scale(1.03);
    border-color: var(--sec-color);
    box-shadow: var(--shadow-lg);
}

.services-section .service-item h3 {
    font-size: 1.4rem;
    color: var(--main-color);
    margin: 20px 0 15px;
    font-weight: 600;
}

.str {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 2.1rem;
    padding: 0;
    position: static;
}

.str-p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 4.5rem;
    padding: 0;
    margin: 0;
}

.services-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.services-btns a {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--main-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
}

.services-btns a:first-child {
    background: rgba(242, 158, 2, 0.1);
    color: var(--sec-color);
    border: 2px solid var(--sec-color);
}

.services-btns a:first-child:hover {
    background: var(--sec-color);
    transform: translateY(-3px);
    color: var(--main-color);
}

.services-btns a:last-child {
    background: var(--sec-color);
    color: var(--main-color);
    border: 2px solid transparent;
}

.services-btns a:last-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.3);
    background: var(--sec1-color);
}

.services-btns a i {
    transition: var(--main-transition);
}

.services-btns a:hover i {
    transform: translateX(-5px);
}

@media (min-width: 992px) {
    .services-section .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-btns {
        gap: 20px;
    }

    .services-btns a {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

.services-section .service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.services-section .service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.services-section .service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.services-section .service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.services-section .service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.services-section .service-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Gallery */
.gallery-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    column-count: 4;
    column-gap: 16px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gallery-grid {
        column-count: 3;
    }
}

/* FAQ */
.faq-page .faq-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.faq-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--main-transition);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.faq-card:hover .faq-icon {
    transform: rotate(15deg) scale(1.1);
}

.faq-card:nth-child(even):hover .faq-icon {
    color: var(--sec-color);
}

.faq-card:nth-child(odd):hover .faq-icon {
    color: var(--main-color);
}

.faq-card:nth-child(even) .faq-header {
    background: linear-gradient(135deg, #000000, #333333);
}

.faq-card:nth-child(odd) .faq-header {
    background: var(--sec-color);
}

.faq-header {
    padding: 20px;
    display: flex;
    align-items: center;
    color: var(--white-color);
}

.faq-icon {
    font-size: 2rem;
    margin-left: 15px;
    transition: all var(--main-transition);
}

.faq-question {
    color: var(--white-color) !important;
    font-size: 1.3rem;
    font-weight: 600;
    flex: 1;
}

.faq-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--main-transition);
    font-size: 1.2rem;
}

.faq-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--main-transition);
    opacity: 0;
}

.faq-card.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    opacity: 1;
}

.faq-card.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-page .search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-page .search-box {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all var(--main-transition);
    outline: none;
    padding-left: 60px;
    box-shadow: var(--shadow);
}

.faq-page .search-box:focus {
    border-color: var(--sec-color);
    box-shadow: 0 0 0 3px rgba(242, 158, 2, 0.2);
}

.faq-page .search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--sec-color);
}

.faq-page .category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-page .category-btn {
    padding: 10px 20px;
    background: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--main-transition);
    font-weight: 600;
    color: var(--main-color);
}

.faq-page .category-btn:hover,
.faq-page .category-btn.active {
    background: var(--sec-color);
    color: var(--white-color);
    border-color: var(--sec-color);
}

.faq-page .contact-section {
    background: linear-gradient(135deg, var(--main-color), #333);
    color: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px;
    box-shadow: var(--shadow-lg);
}

.faq-page .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.faq-page .contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.faq-page .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--main-transition);
    border: none;
    cursor: pointer;
}

.faq-page .whatsapp-btn {
    background: #25D366;
    color: white;
}

.faq-page .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.faq-page .phone-btn {
    background: var(--sec-color);
    color: var(--white-color);
}

.faq-page .phone-btn:hover {
    background: #d68a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 158, 2, 0.3);
}

.faq-page .floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.faq-page .floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--sec-color);
    opacity: 0.1;
    border-radius: 50%;
    animation: FaqFaloat 15s infinite linear;
}

.faq-page .floating-element:nth-child(2) {
    background: var(--main-color);
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.faq-page .floating-element:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 85%;
    animation-duration: 12s;
}

@keyframes FaqFaloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Hero  */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.573) 0%, rgba(0, 0, 0, 0.596) 100%),
        url('../imgs/banner.webp') center/cover no-repeat;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 20px 15px 80px;
    }

    .hero-container {
        padding: 0;
    }

    .hero-content {
        padding: 20px 0;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 100vh;
        padding: 15px 10px 80px;
    }

    .hero-content {
        padding: 15px 0;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.hero-section .hero-title span {
    color: var(--sec1-color);
    position: relative;
}

.hero-section .hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--sec-color);
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white-color);
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-section .highlight {
    color: var(--sec1-color);
    font-weight: bold;
}

.hero-section .services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-section .service-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--sec1-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--main-transition);
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-section .service-tag:hover {
    background: var(--sec1-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-section .service-tag i {
    color: var(--sec1-color);
    transition: var(--main-transition);
}

.hero-section .service-tag:hover i {
    color: var(--white-color);
}

.hero-section .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-section .btn {
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--main-transition);
    cursor: pointer;
    border: none;
}

.hero-section .btn-primary {
    background: var(--sec-color);
    color: var(--white-color);
}

.hero-section .btn-primary:hover {
    background: var(--sec1-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-section .btn-secondary {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.hero-section .btn-secondary:hover {
    background: var(--white-color);
    color: var(--main-color);
    transform: translateY(-5px);
}

.hero-section .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.hero-section .stat {
    display: flex;
    flex-direction: column;
}

.hero-section .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sec1-color);
}

.hero-section .stat-label {
    color: var(--white-color);
    font-size: 1rem;
    opacity: 0.9;
}

.hero-section .hero-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-section .visual-container {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
}

.hero-section .service-card {
    position: absolute;
    width: 280px;
    background: var(--white-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    transition: var(--main-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-section .service-card:nth-child(1) {
    top: 0;
    right: 0;
    transform: rotate(-5deg);
    border-top: 8px solid var(--sec-color);
    z-index: 3;
}

.hero-section .service-card:nth-child(2) {
    top: 60px;
    left: 0;
    transform: rotate(5deg);
    border-top: 8px solid var(--sec1-color);
    z-index: 2;
}

.hero-section .service-card:nth-child(3) {
    bottom: 40px;
    right: 40%;
    transform: rotate(-3deg);
    border-top: 8px solid var(--main-color);
    z-index: 1;
}

.hero-section .service-card:hover {
    transform: translateY(-15px) rotate(0deg);
    z-index: 10;
}

.hero-section .service-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.hero-section .service-card:nth-child(1) .service-icon {
    color: var(--sec-color);
}

.hero-section .service-card:nth-child(2) .service-icon {
    color: var(--sec1-color);
}

.hero-section .service-card:nth-child(3) .service-icon {
    color: var(--main-color);
}

.hero-section .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--main-color);
}

.hero-section .service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.hero-section .guarantee-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--sec-color), var(--sec1-color));
    color: var(--white-color);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 31, 40, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(204, 31, 40, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(204, 31, 40, 0);
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        flex: 1;
        width: 100%;
        padding: 30px 0;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 35px;
    }

    .hero-section .services-tags {
        justify-content: center;
        margin-bottom: 35px;
    }

    .hero-section .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 35px;
    }

    .hero-section .hero-stats {
        justify-content: center;
        gap: 25px;
        margin-top: 25px;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-section .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .hero-section .services-tags {
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-section .service-tag {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .hero-section .cta-buttons {
        gap: 12px;
        margin-bottom: 30px;
    }

    .hero-section .btn {
        padding: 14px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-section .hero-stats {
        gap: 20px;
        margin-top: 20px;
    }

    .hero-section .stat-value {
        font-size: 2rem;
    }

    .hero-section .stat-label {
        font-size: 0.9rem;
    }
}

.service-page .service-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

.service-page .main-content {
    order: 1 !important;
    width: 100% !important;
}

.service-page .toc-sidebar {
    order: 2 !important;
    width: 100% !important;
    position: relative !important;
    top: auto !important;
    margin-bottom: 30px !important;
}

.service-page .related-services {
    order: 3 !important;
    width: 100% !important;
}

/* Enhanced Mobile Responsiveness */
    
    .contact .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact .input-group {
        margin-bottom: 15px;
    }
    
    .contact .submit-btn {
        width: 100%;
        padding: 15px;
    }

    /* Gallery Mobile */
    .gallery-grid {
        column-count: 1;
        gap: 15px;
    }
    
    .gallery-item {
        margin-bottom: 15px;
        border-radius: 10px;
    }

    /* Buttons Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Tables Mobile */
    .service-page .service-description table {
        font-size: 0.9rem;
    }
    
    .service-page .service-description th,
    .service-page .service-description td {
        padding: 8px;
    }

    /* Images Mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Spacing Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Text Mobile */
    body {
        font-size: 0.95rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }

    /* Navigation Mobile */
    .mobile-header {
        padding: 10px 15px;
    }
    
    .mobile-logo .logo-img {
        height: 35px;
    }
    
    .mobile-menu-btn {
        width: 35px;
        height: 35px;
    }
    
.mobile-menu-btn span {
    width: 25px;
    height: 3px;
}

/* Sidebar Mobile */
.sidebar {
    width: 280px;
    padding: 20px;
}
    
.sidebar-close {
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
}

/* About Page Mobile */
.container[style*="padding: 40px 0"] {
    padding: 20px 15px !important;
}
    
.main-title h1 {
    font-size: 2rem !important;
    padding: 0 10px !important;
}
    
.main-title p {
    font-size: 1rem !important;
    padding: 0 10px !important;
    line-height: 1.6 !important;
}
    
.main-title .shape {
    width: 200px !important;
    height: 3px !important;
}
    
/* About Cards Mobile */
.card {
    margin-bottom: 20px !important;
    border-radius: 10px !important;
}
    
.card-body {
    padding: 20px !important;
}
    
.card-body h2 {
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
}
    
.card-body p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}
    
/* About Features Mobile */
.card-body div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 15px !important;
}
    
.card-body div[style*="display: flex"] i {
    margin-bottom: 5px !important;
    margin-top: 0 !important;
}
    
.card-body div[style*="display: flex"] strong {
    font-size: 1rem !important;
}
    
.card-body div[style*="display: flex"] div {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}
    
/* About Services List Mobile */
.card-body div[style*="justify-content: space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 10px 0 !important;
}
    
.card-body div[style*="justify-content: space-between"] span:last-child {
    align-self: flex-end !important;
    font-size: 0.85rem !important;
}
    
/* About Buttons Mobile */
.card-body div[style*="display: flex; gap: 12px"] {
    flex-direction: column !important;
    gap: 10px !important;
}
    
.card-body div[style*="display: flex; gap: 12px"] .btn {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
}
    
/* About Contact Box Mobile */
.card-body div[style*="background: var(--dark-bg)"] {
    padding: 15px !important;
    border-radius: 8px !important;
}
    
.card-body div[style*="background: var(--dark-bg)"] strong {
    font-size: 1rem !important;
}
    
.card-body div[style*="background: var(--dark-bg)"] div {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
}
    
.card-body div[style*="background: var(--dark-bg)"] a {
    font-size: 0.95rem !important;
}
    
/* Row Layout Mobile */
.row {
    margin: 0 !important;
}
    
.col-lg-7,
.col-lg-5,
.col-md-12 {
    padding: 0 10px !important;
    margin-bottom: 20px;
}
    
.col-lg-5[style*="margin-top: 20px"] {
    margin-top: 0 !important;
}

/* Article/Blog Show Page Mobile */
.service-page .service-header-content {
    display: block !important;
    margin-bottom: 25px !important;
    padding-bottom: 20px !important;
}

.service-page .service-image {
    margin-bottom: 20px !important;
}

.service-page .service-image img {
    max-height: 300px !important;
    border-radius: 8px !important;
}

.service-page .service-info {
    width: 100% !important;
}

.service-page .service-description {
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.service-page .service-description h2 {
    font-size: 1.4rem !important;
    margin: 20px 0 15px !important;
    color: var(--sec-color) !important;
}

.service-page .service-description h3 {
    font-size: 1.2rem !important;
    margin: 15px 0 10px !important;
    color: var(--main-color) !important;
}

.service-page .service-description p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.service-page .service-description ul,
.service-page .service-description ol {
    margin: 15px 0 !important;
    padding-right: 20px !important;
}

.service-page .service-description li {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
}

.service-page .contact-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 15px !important;
}

.service-page .contact-btn {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    border-radius: 8px !important;
}

.service-page .whatsapp-btn {
    background: #25D366 !important;
    color: white !important;
}

.service-page .phone-btn {
    background: var(--sec-color) !important;
    color: white !important;
}

.service-page .toc-sidebar {
    order: -1 !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.service-page .toc-container {
    padding: 20px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
    background: var(--white-color) !important;
    box-shadow: var(--shadow) !important;
    border: 1px solid var(--border-color) !important;
    position: relative !important;
    z-index: 2 !important;
}

.service-page .toc-title {
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    color: var(--main-color) !important;
}

.service-page .toc-list {
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.service-page .toc-item {
    margin-bottom: 8px !important;
}

.service-page .toc-link {
    font-size: 0.9rem !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    display: block !important;
    color: var(--text-color) !important;
    text-decoration: none !important;
    transition: var(--main-transition) !important;
    border-right: 3px solid transparent !important;
}

.service-page .toc-link:hover {
    background: rgba(242, 158, 2, 0.1) !important;
    border-right-color: var(--sec-color) !important;
    color: var(--sec-color) !important;
}

.service-page .toc-empty {
    padding: 15px !important;
    text-align: center !important;
    color: #999 !important;
    font-size: 0.9rem !important;
}

.service-page .service-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    position: relative !important;
}

.service-page .main-content {
    order: 2 !important;
    position: relative !important;
    z-index: 1 !important;
}

.service-page .toc-sidebar {
    order: 1 !important;
    position: relative !important;
    z-index: 2 !important;
}

.service-page .related-services {
    padding: 20px !important;
    border-radius: 10px !important;
}

.service-page .related-title {
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
}

.service-page .related-list {
    gap: 12px !important;
}

.service-page .related-item {
    padding: 12px !important;
    border-radius: 8px !important;
    flex-direction: row !important;
    gap: 12px !important;
}

.service-page .related-image {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0 !important;
}

.service-page .related-content h4 {
    font-size: 0.95rem !important;
    margin-bottom: 5px !important;
}

.service-page .related-content p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
}

.service-page .service-description ul[style*="list-style: none"] {
    padding: 0 !important;
    margin: 15px 0 !important;
}

.service-page .service-description ul[style*="list-style: none"] li {
    margin-bottom: 10px !important;
    padding: 10px !important;
    background: rgba(242, 158, 2, 0.05) !important;
    border-radius: 6px !important;
    border-right: 3px solid var(--sec-color) !important;
}

.service-page .service-description ul[style*="list-style: none"] li a {
    font-size: 0.9rem !important;
    color: var(--sec-color) !important;
    display: block !important;
}

@media (max-width: 1024px) {
    .service-page .main-content {
        order: 1 !important;
    }

    .service-page .toc-sidebar {
        order: 2 !important;
    }
}

@media (max-width: 576px) {
    .service-page .service-layout {
        display: flex !important;
        flex-direction: column !important;
    }
}

@media (min-width: 1025px) {
    .service-page .service-layout {
        display: grid !important;
        grid-template-columns: 1fr 300px !important;
    }

    .service-page .main-content,
    .service-page .toc-sidebar {
        order: 0 !important;
    }
}





.hx-fab{
  position: fixed;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  z-index: 9999;
  text-decoration: none;
  overflow: visible;
  transform: translateZ(0);
  transition: transform .15s ease, box-shadow .15s ease;
}

.hx-fab::before{
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: rgba(255,255,255,.35);
  opacity: 0;
  animation: hxFabPulse 1.6s ease-out infinite;
  pointer-events: none;
}

.hx-fab svg{
  width: 26px;
  height: 26px;
  display:block;
}
.hx-fab--whatsapp{
  bottom: 88px;
  background: #25D366;
}
.hx-fab--call{
  bottom: 18px;
  background: #2563EB;
}

.hx-fab:hover{
  transform: translateY(-2px);
}

@keyframes hxFabPulse{
  0%{ transform: scale(.75); opacity: 0; }
  30%{ opacity: .35; }
  100%{ transform: scale(1.25); opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .hx-fab, .hx-fab::before{
    animation: none !important;
    transition: none !important;
  }
}