/********** Template CSS **********/
:root {
    --primary: #D4AF37;
    --secondary: #2B6CB0;
    --dark: #0F172A;
    --light: #F8FAFC;
    --black: #020617;
    --text: #1E293B;
    --muted: #64748B;
}
body {
    padding-top: 90px;
    background: #F8FAFC;
    color: var(--text);
    font-family: 'Open Sans', sans-serif;
}
/* All Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}


/* Optional: Hero Heading Bigger Impact */
.hero h1 {
    color: #F4D35E;
    font-size: 3rem;
}

/* Subheading (keep white for contrast) */
p, span {
    color: var(--text);
}
.fact-item {
    background: #ffffff !important;
    color: var(--text);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
}

.fact-item span {
    color: var(--muted);
}

.fact-item h4 {
    color: var(--dark);
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

/* Sticky WhatsApp button */
.sticky-chat {
    position: fixed;
    right: 30px;
    bottom: 60px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: 1px solid rgba(34, 197, 94, 0.55);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sticky-chat:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.45);
    filter: brightness(1.02);
}

.sticky-chat__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
    font-size: 18px;
}

.sticky-chat__text {
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #ffffff;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 575.98px) {
    .sticky-chat {
        right: 16px;
        bottom: 110px;
        padding: 12px;
    }
    .sticky-chat__text {
        display: none;
    }
}

/* Equal height cards */
.pricing-card {
    background: #111827;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%; /* IMPORTANT */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

/* Remove size difference */
.pricing-card.featured {
    border: 2px solid var(--primary); /* keep highlight */
    transform: none !important; /* REMOVE BIG SIZE */
}

/* Hover effect (same for all) */
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

/* Make button always at bottom */
.pricing-card ul {
    flex-grow: 1;
}

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

/* Make all gallery images same size */
.project-item {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 18px; /* premium look */
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

/* Image fit properly */
.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* IMPORTANT: crops nicely */
    transition: 0.45s ease;
    will-change: transform;
}

/* Hover effect (premium look) */
.project-item:hover img {
    transform: scale(1.06);
}

/* Lightbox overlay + premium hover for studio photos */
.project-item .project-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.project-item .project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.72) 100%);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(6px);
    pointer-events: none; /* clicks go to the anchor (lightbox) */
}

.project-item .project-overlay-inner {
    width: 100%;
}

.project-item .project-overlay-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(79, 124, 255, 0.45);
    background: rgba(79, 124, 255, 0.12);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
    backdrop-filter: blur(8px);
}

.project-item .project-overlay-title {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.project-item:hover .project-overlay,
.project-item:focus-within .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-item .project-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.2rem var(--ak-ring);
}

@media (max-width: 575.98px) {
    .project-item {
        height: 220px;
        border-radius: 16px;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.btn-primary {
    background: var(--primary);
    border: none;
    color: #0B1220;
}

.btn-primary:hover {
    background: var(--secondary);
    color: #ffffff;
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
/* FIX NAVBAR VISIBILITY */
.navbar.fixed-top {
    display: flex !important;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/* REMOVE YELLOW BACKGROUND */
.navbar-brand {
    background: none !important;
    padding: 0 !important;
}

/* PERFECT LOGO SIZE */
.main-logo {
    height: 65px;
    width: auto;
    display: block;
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.2px;
}

/* ALIGN CENTER PROPERLY */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }
}

/* BODY OFFSET */
body {
    background: #F8FAFC;
    color: var(--text);
}

.section-dark {
    background: #0B1D3A;
}

.section-light {
    background: #ffffff;
    color: #000;
}

.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 15px;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
.navbar {
    background: #0F172A !important;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.navbar .nav-link {
    color: #ffffff !important;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
}

/*** Header ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

/* Logo Size */
.main-logo {
    height: 64px;
    width: auto;
}

/* Navbar spacing */
.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Menu styling */
.navbar .nav-link {
    font-weight: 500;
    margin-right: 15px;
}

/* WhatsApp button */
.navbar .btn-primary {
    background: var(--primary);
    border: none;
    color: #0B1220;
}

.navbar .btn-primary:hover {
    background: var(--secondary);
    color: #fff;
}


.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Facts ***/
.fact-item {
    transition: .3s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 16px 32px rgba(15, 23, 42, .12);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: none;
    z-index: -1;
}

/* About section images: premium photo cards */
.img-twice img.img-fluid {
    border-radius: 18px;
    padding: 0 !important;
    background: transparent !important;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 16px 32px rgba(2, 6, 23, 0.28);
}

.img-twice img.img-fluid:hover {
    transform: translateY(-2px);
    transition: transform 0.25s ease;
}


/*** Service ***/
.service-item,
.service-item * {
    transition: .3s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary) !important;
}

.service-item:hover * {
    color: var(--light);
}

.service-item .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-overlay {
    opacity: 1;
}


/*** Project ***/
.project-item {
    position: relative;
}

.project-item .project-title {
    position: absolute;
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.project-item:hover .project-title {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: transparent transparent #FFFFFF transparent;      
}

@media (min-width: 576px) {
    .flex-sm-row .team-img::after,
    .flex-lg-row-reverse .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }
}

@media (min-width: 992px) {
    .flex-lg-row-reverse .team-img::after,
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }

    .flex-sm-row-reverse.flex-lg-row .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}

/* Testimonial Card Styling */
.testimonial-item {
    background: #111827;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

/* Hover Effect */
.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

/* Text Fix */
.testimonial-item p {
    color: #CBD5E1;
}

/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--secondary);
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--secondary);
    transform: skew(40deg);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

#pricing h1,
#pricing h4,
#pricing p,
#pricing li,
#reviews h1,
#reviews h5,
#reviews p,
#reviews span,
.footer p,
.footer h4,
.footer a {
    color: #F8FAFC;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
/* FORCE NAVBAR VISIBLE ALWAYS */
.navbar {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
}

/* Remove hidden state from template */
.navbar-light {
    display: flex !important;
}

/* Disable any animation hiding */
.fade {
    opacity: 1 !important;
}

/* =========================================================
   Akiflow-inspired professional dark theme overrides
   ========================================================= */
:root {
    --ak-bg: #070b16;
    --ak-bg-soft: #0d1324;
    --ak-surface: #121a2f;
    --ak-surface-2: #18223c;
    --ak-border: rgba(148, 163, 184, 0.22);
    --ak-text: #e6edf9;
    --ak-text-muted: #94a3b8;
    --ak-primary: #4f7cff;
    --ak-primary-2: #6d8dff;
    --ak-ring: rgba(79, 124, 255, 0.35);
}

html,
body {
    background: radial-gradient(circle at 15% -5%, #192445 0%, var(--ak-bg) 45%, #050810 100%) !important;
    color: var(--ak-text) !important;
    font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #f8fbff !important;
    font-family: 'Manrope', sans-serif !important;
    letter-spacing: -0.02em;
}

p, span, li {
    color: var(--ak-text-muted);
}

.container,
.container-xxl {
    position: relative;
    z-index: 2;
}

/* Navbar */
.navbar {
    background: rgba(9, 14, 28, 0.84) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ak-border) !important;
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.45) !important;
}

.main-logo {
    height: 58px !important;
}

.brand-text {
    color: #f8fbff !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700;
    font-size: 1.05rem;
}

.navbar .nav-link {
    color: #cbd5e1 !important;
    font-size: 0.96rem !important;
    font-weight: 600 !important;
    margin-right: 0.4rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffffff !important;
}

/* White hamburger icon on dark navbar */
.navbar .navbar-toggler {
    border-color: rgba(226, 232, 240, 0.35) !important;
    box-shadow: none !important;
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem var(--ak-ring) !important;
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Buttons */
.btn,
.btn-primary {
    border-radius: 999px !important;
    font-weight: 700 !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ak-primary), var(--ak-primary-2)) !important;
    color: #ffffff !important;
    border: 1px solid rgba(131, 155, 255, 0.45) !important;
    box-shadow: 0 8px 22px rgba(79, 124, 255, 0.3) !important;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(79, 124, 255, 0.42) !important;
}

/* Card surfaces */
.fact-item,
.pricing-card,
.testimonial-item {
    background: linear-gradient(180deg, rgba(23, 32, 56, 0.95), rgba(13, 20, 37, 0.95)) !important;
    border: 1px solid var(--ak-border) !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 32px rgba(2, 6, 23, 0.35);
}

.fact-item h4,
.pricing-card h4,
.testimonial-item h5 {
    color: #f8fbff !important;
}

.fact-item span,
.pricing-card p,
.pricing-card li,
.testimonial-item p {
    color: #a8b5cd !important;
}

.fact-item .display-2,
.pricing-card h1 {
    color: #ffffff !important;
}

.pricing-card.featured {
    border: 1px solid rgba(125, 150, 255, 0.52) !important;
    box-shadow: 0 0 0 1px var(--ak-ring), 0 20px 36px rgba(10, 16, 34, 0.5) !important;
}

/* Gallery polish */
.project-item {
    border: 1px solid var(--ak-border);
    border-radius: 16px !important;
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.28);
}

/* Section headings and small labels */
.text-primary,
.text-uppercase {
    color: #a9bcff !important;
    letter-spacing: 0.09em;
}

/* Dark sections explicitly keep same premium tone */
#pricing,
#reviews,
.footer {
    background: linear-gradient(180deg, #0b1120 0%, #070b16 100%) !important;
}

.footer,
.footer p,
.footer a,
.footer h4 {
    color: #cbd5e1 !important;
}

.footer .btn.btn-link:hover {
    color: #ffffff !important;
}

/* Inputs/focus states in case form fields are present */
input:focus,
textarea:focus,
select:focus,
.btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.2rem var(--ak-ring) !important;
}

@media (max-width: 991.98px) {
    .main-logo {
        height: 50px !important;
    }

    .brand-text {
        font-size: 0.95rem;
    }
}

/* Footer uniqueness: premium closing section */
.footer {
    background:
        radial-gradient(1100px 380px at 18% 0%, rgba(79, 124, 255, 0.28) 0%, rgba(79, 124, 255, 0) 60%),
        radial-gradient(900px 320px at 85% 10%, rgba(109, 141, 255, 0.18) 0%, rgba(109, 141, 255, 0) 62%),
        linear-gradient(180deg, #070b16 0%, #050812 100%) !important;
    border-top: 1px solid rgba(148, 163, 184, 0.18) !important;
}

/* Disable old template divider line */
.footer::after {
    content: none !important;
}

.footer .navbar-brand .brand-text {
    font-size: 1.05rem !important;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #e6edf9;
    background: rgba(18, 26, 47, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.22);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-action i {
    color: #a9bcff;
}

.footer-action:hover {
    transform: translateY(-1px);
    background: rgba(24, 34, 60, 0.75);
    border-color: rgba(169, 188, 255, 0.35);
}

.footer-meta {
    display: grid;
    gap: 10px;
}

.footer-meta-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: #cbd5e1;
}

.footer-meta-item i {
    color: #a9bcff;
    margin-top: 2px;
}

.footer-social {
    border: 1px solid rgba(148, 163, 184, 0.25) !important;
    color: #cbd5e1 !important;
    background: rgba(18, 26, 47, 0.55) !important;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social:hover {
    transform: translateY(-2px);
    border-color: rgba(169, 188, 255, 0.45) !important;
    background: rgba(24, 34, 60, 0.6) !important;
    color: #ffffff !important;
}

@media (max-width: 575.98px) {
    .footer-actions {
        gap: 8px;
    }
    .footer-action {
        padding: 10px 12px;
    }
}