/* ============================================
   PREMIUM TEXTILE HOMEPAGE - CORE STYLES
   Bibtex | Luxury Manufacturing Since 1990
   ============================================ */

/* ============================================
   FONT LOADING
   ============================================ */
@font-face {
    font-family: "Nova Flat";
    src: url("../fonts/NovaFlat-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GE SS Two Medium";
    src: url("../fonts/GE SS Two Medium.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   LANGUAGE-BASED FONT SWITCHING
   ============================================ */
html[lang="en"] body,
html[lang="en"] body * {
    font-family: "Nova Flat", Arial, sans-serif !important;
}

html[lang="ar"] body,
html[lang="ar"] body * {
    font-family: "GE SS Two Medium", Tahoma, sans-serif !important;
}

:root {
    /* Brand Colors - Inspired by Reference */
    --color-bg-start: #424242;
    --color-bg-mid: #4d4d4d;
    --color-bg-end: #191919;
    --color-accent: #797878;
    --color-accent-dim: rgba(192, 192, 192, 0.55);
    --color-accent-light: #e5e5e5;
    --color-accent-hover: #b5b5b5;
    --color-accent-dark: #a8a8a8;
    --color-text-primary: #f3f3f3;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.5);

    /* Shadows */
    --shadow-card:
        0 26px 78px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 32px 90px rgba(0, 0, 0, 0.55);

    /* Spacing */
    --spacing-section: 140px;
    --spacing-section-mobile: 80px;

    /* Typography */
    --font-primary: "Nova Flat", Arial, sans-serif;
    --font-display: "Nova Flat", Arial, sans-serif;

    /* Border Radius */
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* ============================================
   RESET & GLOBAL
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(
        135deg,
        var(--color-bg-start) 0%,
        var(--color-bg-mid) 60%,
        var(--color-bg-end) 100%
    );
    background-attachment: fixed;
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    transition: var(--transition-smooth);
}

.main-nav.scrolled {
    background: rgba(22, 22, 28, 0.92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition-fast);
}

.nav-logo:hover img {
    opacity: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Language Switcher in Navbar */
.nav-lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-lang-btn {
    padding: 6px 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 100px;
    transition: var(--transition-fast);
}

.nav-lang-btn.active {
    background: var(--color-accent);
    color: #191919;
}

.nav-lang-btn:hover:not(.active) {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-lang-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* RTL Support for Language Switcher */
html[dir="rtl"] .nav-lang-switcher {
    direction: ltr;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -20%;
    height: 140%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--color-bg-start) 0%,
        var(--color-bg-mid) 40%,
        var(--color-bg-end) 100%
    );
    position: relative;
}

.hero-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(192, 192, 192, 0.15) 0%,
        transparent 60%
    );
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.85),
        rgba(93, 104, 108, 0.3)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.hero-label {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(192, 192, 192, 0.15);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-title .accent {
    background: linear-gradient(
        135deg,
        var(--color-accent) 0%,
        var(--color-accent-light) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(192, 192, 192, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-4px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ============================================
   HERITAGE SECTION
   ============================================ */
.heritage-section {
    padding: var(--spacing-section) 0;
    position: relative;
}

.heritage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.section-label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.section-title.center {
    text-align: center;
}

.section-title .accent {
    background: linear-gradient(
        135deg,
        var(--color-accent) 0%,
        var(--color-accent-light) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heritage-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.story-visible {
    margin-bottom: 0;
}

.story-hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 400ms ease-in-out,
        opacity 400ms ease-in-out,
        margin-top 400ms ease-in-out;
    margin-top: 0;
}

.story-hidden.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-top: 0;
}

.read-more-btn {
    margin: 30px 0 40px 0;
    padding: 14px 32px;
    background: rgba(192, 192, 192, 0.15);
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--color-accent-light);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.read-more-btn:hover {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.read-more-btn i {
    transition: transform 400ms ease;
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(
        135deg,
        white 0%,
        var(--color-accent-light) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heritage-image-wrapper {
    position: relative;
}

.heritage-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.heritage-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.heritage-image:hover img {
    transform: scale(1.05);
}

.heritage-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-accent), transparent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* ============================================
   SECTION DESC (shared utility)
   ============================================ */
.section-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 30px auto 0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: var(--spacing-section) 0;
    background: rgba(0, 0, 0, 0.2);
}

.products-header {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
    padding: 0 40px;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: var(--shadow-hover);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.product-arrow {
    font-size: 1.1rem;
    color: var(--color-accent);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.product-card:hover .product-arrow {
    transform: translateX(5px);
}

.product-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   MANUFACTURING SECTION
   ============================================ */
.manufacturing-section {
    padding: var(--spacing-section) 0;
    background: rgba(0, 0, 0, 0.2);
}

.manufacturing-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 0 40px;
}

.manufacturing-visual {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 40px;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.process-image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 500px;
    min-height: 400px;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.process-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-fast);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Loading state for image */
.process-image-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(192, 192, 192, 0.3);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 0;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hide loading spinner when image is loaded */
.process-image-container img[src] {
    z-index: 2;
}

.manufacturing-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.process-step:hover,
.process-step.active {
    background: rgba(192, 192, 192, 0.1);
    border-color: rgba(192, 192, 192, 0.3);
    transform: translateX(10px);
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-accent);
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--spacing-section) 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(192, 192, 192, 0.15);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--color-accent-light);
}

.contact-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow-card);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 350px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--color-text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: #191919;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-accent-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(229, 229, 229, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top i {
    font-size: 1.2rem;
    font-weight: bold;
}

/* ============================================
   RTL (Right-to-Left) OVERRIDES
   ============================================ */

/* Section label underline starts from the right in RTL */
html[dir="rtl"] .section-label::after {
    left: auto;
    right: 0;
}

/* Footer link hover indent flips in RTL */
html[dir="rtl"] .footer-column a:hover {
    padding-left: 0;
    padding-right: 5px;
}

/* Manufacturing step active/hover slides left in RTL */
html[dir="rtl"] .process-step:hover,
html[dir="rtl"] .process-step.active {
    transform: translateX(-10px);
}

/* Nav link underline starts from the right in RTL */
html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

/* RTL Support for Scroll to Top Button */
html[dir="rtl"] .scroll-to-top {
    right: auto;
    left: 30px;
}

html[dir="rtl"] .product-arrow {
    transform: rotate(180deg);
}

html[dir="rtl"] .product-card:hover .product-arrow {
    transform: rotate(180deg) translateX(5px);
}

.whatsapp-link {
    color: inherit;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
}

.whatsapp-link:hover,
.whatsapp-link:focus,
.whatsapp-link:visited,
.whatsapp-link:active {
    color: inherit;
    text-decoration: none;
}
