/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* COLORS */
:root {
    --bg-dark: #121212;
    --bg-section: #1a1a1a;
    --bg-card: #1f1f1f;
    --text-light: #ffffff;
    --text-muted: #bdbdbd;
    --accent: #dcdcdc;
    --border-soft: #2f2f2f;
    --radius-md: 10px;
    --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* BODY */
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--text-light);
    outline-offset: 2px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(15, 15, 15, 0.92);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.navbar .logo a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/* Responsive logo image */
.responsive-logo {
    max-width: 150px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-light);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-light);
}

/* HERO SECTIONS */
.hero {
    text-align: center;
    padding: 110px 20px 95px;
    max-width: 900px;
    margin: auto;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-main {
    background: radial-gradient(
        circle at top,
        #2a2a2a 0%,
        #121212 60%
    );
    min-height: 70vh;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 50px);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.hero p {
    color: var(--text-muted);
    font-size: clamp(16px, 2.2vw, 19px);
    margin-bottom: 40px;
    max-width: 700px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 30px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 999px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-weight: 600;
}

.btn.primary {
    background: var(--text-light);
    color: var(--bg-dark);
    font-weight: bold;
}

.btn.primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn.secondary {
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

.btn.secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ABOUT SECTION */
.about {
    padding: 80px 40px;
    background: var(--bg-section);
}

.about-content {
    max-width: 800px;
    margin: auto;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
}

.about-content h3 {
    font-size: 24px;
    margin: 40px 0 15px;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.about-content ul li {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 16px;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    padding: 80px 40px;
    background: var(--bg-dark);
    text-align: center;
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.intro-text {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 50px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto 0 50px;
}

.step {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--text-light);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.cta-section {
    margin-top: 40px;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

/* SERVICES SECTION */
.services {
    padding: 80px 40px;
    text-align: center;
}

.services:nth-child(odd) {
    background: var(--bg-dark);
}

.services:nth-child(even) {
    background: var(--bg-section);
}

.services h2 {
    font-size: 38px;
    margin-bottom: 50px;
    letter-spacing: -0.3px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: linear-gradient(180deg, #232323 0%, var(--bg-card) 100%);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.02) inset;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: -0.2px;
}

.card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.packages-section .card {
    position: relative;
    text-align: left;
    background: transparent;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 28px 22px 24px;
}

.packages-section .card:hover {
    border-color: var(--text-light);
    transform: translateY(-4px);
}

.packages-section .card h3 {
    font-size: 21px;
    margin: 10px 0 12px;
    padding-right: 120px;
}

.packages-section .package-features {
    background: transparent;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 16px;
    margin: 18px 0 12px;
}

.packages-section .package-features p {
    margin-bottom: 10px;
}

.packages-section .package-features ul li {
    padding-left: 18px;
}

.packages-section .package-features ul li:before {
    content: "▸";
    left: 0;
    color: var(--text-light);
}

.package-features {
    background: #262626;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
    border: 1px solid #343434;
}

.package-features p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.package-features ul li:before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card .price {
    margin-top: 15px;
    font-size: 16px;
    color: var(--accent);
}

.packages-section .price {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 10px 16px;
    background: var(--text-light);
    color: var(--bg-dark);
    font-size: 16px;
    font-weight: 700;
    border-radius: 0 8px 0 10px;
    letter-spacing: 0.2px;
}

.packages-section .price strong {
    font-weight: 700;
}

.packages-section .card .card-btn {
    margin-top: auto;
}

.card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--text-light);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 999px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* FAQ SECTION */
.faq {
    padding: 80px 40px;
    background: var(--bg-section);
    max-width: 1000px;
    margin: auto;
}

.faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.faq-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    border-top: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* CONTACT SECTION */
.contact {
    padding: 80px 40px;
    background: var(--bg-dark);
}

.contact-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* FORM */
.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
}

.contact-form h2 {
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: var(--text-light);
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: var(--text-light);
    color: var(--bg-dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    background: #2a2a2a;
    border-left: 3px solid #25D366;
    color: var(--text-light);
    display: none;
    border-radius: 4px;
}

/* CONTACT INFO */
.contact-info {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
}

.contact-info h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.contact-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-details ul {
    list-style: none;
    padding-left: 0;
}

.contact-details ul li {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-details ul li:before {
    content: "✓ ";
    color: #25D366;
    font-weight: bold;
    margin-right: 8px;
}

/* CONTACT INFO SECTION */
.contact-info-section {
    padding: 80px 40px;
    background: var(--bg-dark);
    text-align: center;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-intro {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto 0 50px;
}

.info-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--accent);
}

.response-time {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 10px;
    font-style: italic;
}

.quick-contact-cta {
    max-width: 500px;
    margin: 30px auto 0;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
    border-top: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.quick-contact-cta p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

/* FOOTER */
.footer {
    text-align: left;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 14px;
    background: #0f0f0f;
    border-top: 1px solid #232323;
}

.footer p {
    margin: 5px 0;
}

.footer-message {
    max-width: 1200px;
    margin: 0 auto 28px;
    padding: 20px;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    text-align: left;
}

.footer-message h3 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-message p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-light);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-note {
    font-size: 12px;
    margin-top: 10px;
}

/* SOCIAL MEDIA ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Sticky mobile contact CTA */
.sticky-contact {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
}
.sticky-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 12px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    text-decoration: none;
    font-weight: bold;
}
.sticky-contact a svg{width:18px;height:18px}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg-card);
    border-radius: 50%;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--text-light);
}

.social-link:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover svg {
    color: var(--bg-dark);
}

.social-link.whatsapp-icon {
    background: #25D366;
    border-color: #25D366;
}

.social-link.whatsapp-icon svg {
    color: #ffffff;
    width: 20px;
    height: 20px;
}

.social-link.whatsapp-icon:hover {
    background: #20ba5a;
    border-color: #20ba5a;
}

.social-link.facebook-icon {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link.facebook-icon svg {
    color: #ffffff;
    width: 20px;
    height: 20px;
}

.social-link.facebook-icon:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.social-link.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #E1306C;
}

.social-link.instagram-icon svg {
    color: #ffffff;
    width: 20px;
    height: 20px;
}

.social-link.instagram-icon:hover {
    background: linear-gradient(45deg, #f28932 0%, #e6633b 25%, #db2642 50%, #cb2265 75%, #bb1787 100%);
    border-color: #d02860;
}

.social-link.tiktok-icon {
    background: #000000;
    border-color: #25F4EE;
}

.social-link.tiktok-icon svg {
    color: #25F4EE;
    width: 20px;
    height: 20px;
}

.social-link.tiktok-icon:hover {
    background: #1a1a1a;
    border-color: #25F4EE;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0f0f0f;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid #1a1a1a;
        justify-content: flex-start;
        align-items: stretch;
    }

    .nav-menu.active {
        max-height: 250px;
    }

    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid #1a1a1a;
        display: block;
        white-space: nowrap;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .how-it-works {
        padding: 60px 20px;
    }

    .how-it-works h2 {
        font-size: 28px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services {
        padding: 60px 20px;
    }

    .services h2 {
        font-size: 28px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about {
        padding: 60px 20px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .faq {
        padding: 60px 20px;
    }

    .faq-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form,
    .contact-info {
        padding: 25px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 20px;
    }

    .contact-info-section {
        padding: 60px 20px;
    }

    .contact-info-section h2 {
        font-size: 28px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quick-contact-cta {
        padding: 20px;
    }

    .footer {
        text-align: center;
    }

    .footer-message {
        text-align: center;
        padding: 18px;
    }

    .footer-message h3 {
        font-size: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px;
    }

    .navbar nav {
        gap: 5px;
    }

    .navbar nav a {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .services h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .card {
        padding: 20px 15px;
    }

    .about-content h3 {
        font-size: 20px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .contact-info-section {
        padding: 50px 15px;
    }

    .contact-info-section h2 {
        font-size: 24px;
    }

    .section-intro {
        font-size: 14px;
    }

    .info-icon {
        font-size: 40px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .info-card h3 {
        font-size: 18px;
    }

    .quick-contact-cta p {
        font-size: 14px;
    }
}

/* Performance: reduce heavy transitions and shadows on small devices */
@media (max-width: 768px) {
    .card,
    .step,
    .info-card,
    .social-link,
    .card-btn,
    .hero,
    .contact-form {
        transition: none !important;
        box-shadow: none !important;
    }

    .card:hover,
    .step:hover,
    .info-card:hover,
    .social-link:hover {
        transform: none !important;
        box-shadow: none !important;
        border-color: transparent !important;
    }
}
