:root {
    --primary: #0f172a; /* Deep Navy */
    --secondary: #d4af37; /* Metallic Gold */
    --accent: #3b82f6; /* Modern Blue */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 130px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* MODERN NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}

nav.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
}

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

.logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--secondary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-cta {
        display: none;
    }

    .logo img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* HAC PROGRAM MOBILE */
    .hac-mobile-responsive {
        grid-template-columns: 1fr !important;
    }

    .hac-mobile-image {
        height: 200px !important;
    }

    .hac-mobile-dates {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .hac-mobile-bottom {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .hac-mobile-button {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }

    .hac-mobile-summary {
        min-height: auto !important;
    }

    .hac-mobile-table {
        font-size: 12px !important;
    }

    /* SIDEBAR MOBILE */
    aside {
        order: 2;
    }

    .tour-grid {
        order: 1;
    }

    /* PAGE HEADER MOBILE */
    section[style*="padding: 180px 0 100px"] {
        padding: 200px 0 60px !important;
    }

    section[style*="padding: 180px 0 100px"] h1 {
        font-size: 32px !important;
    }

    section[style*="padding: 180px 0 100px"] p {
        font-size: 14px !important;
    }

    /* SECTION PADDING MOBILE */
    section[style*="padding: 100px 0"] {
        padding: 40px 0 !important;
    }

    /* SIDEBAR MOBILE - üstte göster */
    .hac-filter-layout {
        grid-template-columns: 1fr !important;
    }

    aside {
        order: 1;
        margin-bottom: 30px;
    }

    .tour-grid {
        order: 2;
    }

    /* Sidebar sticky position mobilede kapat */
    aside div[style*="position: sticky"] {
        position: static !important;
    }
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4)), url('../images/avrupa.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-inner h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-inner p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 300;
}

/* FLOATING SEARCH BOX (GLASSMORPHISM) */
.search-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.input-group label {
    display: block;
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group select, .input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--primary);
    outline: none;
}

.search-trigger {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 0 40px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    height: 50px;
    align-self: end;
}

.search-trigger:hover { background: white; transform: translateY(-2px); }

/* SECTION STYLING */
section { padding: 30px 0; }

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header span {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--primary);
    margin-top: 10px;
    font-weight: 800;
}

/* MODERN TOUR CARDS */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* SWIPER CAROUSEL STYLES */
.swiper {
    width: 100%;
    padding: 20px 0 20px !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--secondary) !important;
    background: #000;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    right: 0 !important;
    position: absolute !important;
    top: 65% !important;
    transform: translateY(-50%) !important;

}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px) !important;
    right: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
}

/* DETAILED TOUR INFO STYLES */
.tour-dates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: var(--bg-light);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 16px;
}

.date-item {
    display: flex;
    flex-direction: column;
}

.date-item label {
    font-weight: 700;
    color: #99802c;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 2px;
}

.date-item span {
    color: var(--primary);
    font-weight: 600;
}

.price-options-grid {
    display: block;
    margin-bottom: 20px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.price-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid #e2e8f0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: #f8fafc;
}

.price-table .price-amount {
    font-weight: 700;
    color: var(--primary);
}

.price-option {
    text-align: center;
    padding: 8px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    transition: var(--transition);
}

.price-option:hover {
    border-color: var(--secondary);
    background: var(--bg-light);
}

.price-option label {
    display: block;
    font-size: 14px;
    color: #201c66;
    margin-bottom: 3px;
}

.price-option strong {
    display: block;
    font-size: 16px;
    color: var(--primary);
    font-weight: 800;
}

/* FILTER STYLES */
.filter-group {
    margin-bottom: 30px;
}

.filter-group h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* DETAIL PAGE NEW STYLES */
.detail-info-box {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
}

.detail-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.detail-price-item {
    text-align: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.detail-price-item:hover {
    border-color: var(--secondary);
    background: white;
}

.detail-price-item label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.detail-price-item strong {
    font-size: 20px;
    color: var(--primary);
    font-weight: 800;
}

.tour-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.tour-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.15);
}

.tour-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.tour-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.tour-badge-left {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.hac-umre-card {
    border: 2px solid #0000001a;
    transition: var(--transition);
}

.hac-umre-card:hover {
    border-color: var(--secondary);
}

.hac-umre-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.countdown-timer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
}

.tour-info { padding: 13px; }

.tour-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.tour-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 14px;
}

.tour-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px;
    border-top: 1px solid #f1f5f9;
}

.price-box span { font-size: 12px; color: var(--text-muted); display: block; }
.price-box strong { font-size: 28px; color: var(--primary); font-weight: 800; }

.explore-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.tour-card:hover .explore-btn { background: var(--primary); color: white; }

/* LUXURY FOOTER */
footer {
    background: var(--primary);
    color: white;
    padding: 100px 0 40px;
}

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

.footer-logo img { height: 50px; margin-bottom: 30px; filter: brightness(0) invert(1); }

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--secondary);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 15px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.footer-col a:hover { color: white; padding-left: 10px; }

.newsletter input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    margin-bottom: 15px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .tour-grid { grid-template-columns: repeat(2, 1fr); }
    .search-box { grid-template-columns: repeat(2, 1fr); margin-top: -50px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero-inner h1 { font-size: 42px; }
    .tour-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
}

/* NAVIGATION MENU DROPDOWNS */
.nav-links {
    position: relative;
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links li > a {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    padding: 10px 0;
}

.nav-links li > a:hover {
    color: var(--secondary);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 220px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.2s ease;
}

.nav-links li:hover > .submenu,
.nav-links li:focus-within > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li {
    display: block;
    position: relative;
    width: 100%;
}

.submenu li a {
    display: block;
    padding: 12px 18px;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.submenu li a:hover {
    background: var(--bg-light);
    color: var(--secondary);
    padding-left: 22px;
}

.submenu .submenu {
    top: 100%;
    left: 0;
    transform: none;
    margin: 0;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .submenu {
        position: static;
        display: none;
        background: var(--bg-light);
        box-shadow: none;
        border-left: 3px solid var(--secondary);
        border-radius: 0;
        min-width: auto;
        padding: 8px 0 8px 20px;
    }

    .nav-links li:hover > .submenu {
        display: block;
    }

    .submenu .submenu {
        position: static;
        left: 0;
        transform: none;
        margin: 0;
        border-left: 3px solid var(--accent);
        padding: 8px 0 8px 20px;
    }
}

/* FOOTER STYLING */
footer {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
    margin-top: 60px;
}

footer .container {
    display: flex;
    flex-direction: column;
}

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

.footer-col {
    flex: 1;
}

.footer-col.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary);
}

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    nav .nav-links {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100dvh;
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        padding: 92px 20px 20px;
        background: var(--primary);
        box-shadow: -6px 0 24px rgba(0, 0, 0, 0.35);
        overflow-y: auto;
        z-index: 1002;
    }

    nav .nav-links.active {
        right: 0;
    }

    nav .nav-links > li > a {
        display: block;
        color: #fff;
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav .nav-links .submenu {
        position: static;
        transform: none;
        min-width: 0;
        margin: 6px 0 0;
        padding: 6px 0 6px 14px;
        border-left: 2px solid rgba(212, 175, 55, 0.8);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        display: none;
    }

    nav .nav-links li.open > .submenu {
        display: block;
    }

    nav .nav-links .submenu li a {
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
        padding: 8px 0;
        border-bottom: 0;
    }

    nav .nav-links .submenu .submenu {
        padding-left: 12px;
        border-left-color: rgba(59, 130, 246, 0.8);
    }

}

    .floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
    }

    .whatsapp-btn {
        background: linear-gradient(135deg, #25d366, #128c7e);
    }

    .floating-btn {
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: .3s;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    text-decoration: none;
    }

.floating-btn i {
    text-decoration: none;
}

.faq-question i, .floating-btn {
    border-radius: 50%;
    display: flex;
}

.call-btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.floating-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

.floating-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: rgba(15, 23, 42, .95);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    padding: 8px 10px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
}

.floating-btn:hover .floating-tooltip,
.floating-btn:focus-visible .floating-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .floating-contact {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .floating-tooltip {
        display: none;
    }
}








    .fa-brands, .fab {
        font-weight: 400;
    }
    .fa-brands, .fab {
        font-family: "Font Awesome 6 Brands";
    }
    .fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: var(--fa-display, inline-block);
        font-style: normal;
        font-variant: normal;
        line-height: 1;
        text-rendering: auto;
    }
    .fa-whatsapp:before {
        content: "\f232";
    }
