/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #003d7a;
    --accent-color: #00a8ff;
    --dark-bg: #f5f7fa;
    --light-text: #2c3e50;
    --gray-text: #5a6c7d;
    --card-bg: #ffffff;
    --sidebar-width: 100px;
    --border-color: #e1e8ed;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: var(--dark-bg);
    color: var(--light-text);
}

/* Yükleme Ekranı */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e1e8ed 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.logo-loader {
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-square {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawSquare 2s ease-in-out forwards;
}

@keyframes drawSquare {
    to { stroke-dashoffset: 0; }
}

.logo-text {
    opacity: 0;
    animation: fadeInText 1s ease-in-out 1s forwards;
}

@keyframes fadeInText {
    to { opacity: 1; }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 2px;
    overflow: hidden;
}
.loader-text {
    margin-top: 20px;
    font-size: 14px;
    color: #2c3e50;
    text-align: center;
    opacity: 0;
    animation: fadeInText 1s ease-in-out 0.3s forwards;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 400px;
    width: 100%;
}
.loading-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    animation: loading 2s ease-in-out infinite;
}
.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--card-bg);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    z-index: 998;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    transition: opacity 0.4s ease;
}

/* Menü açıkken sidebar gizle */
.fullscreen-menu.active ~ .sidebar {
    opacity: 0;
    pointer-events: none;
}

.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 40px;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Menü İkonu */
.menu-icon {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px;
}

.menu-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.menu-icon-bar {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon:hover .menu-icon-bar {
    background: white;
}

.menu-icon.active .menu-icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-icon.active .menu-icon-bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .menu-icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Tam Sayfa Menü */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: var(--sidebar-width);  /* Sidebar genişliğinden başla */
    width: calc(100% - var(--sidebar-width));  /* Sidebar hariç tüm genişlik */
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    backdrop-filter: blur(20px);
    overflow-y: auto;
    transform: scale(0.95);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Mobilde tam ekran menü */
@media (max-width: 1024px) {
    .fullscreen-menu {
        left: 0;
        width: 100%;
    }
}



.menu-close {
    position: fixed;
    top: 35px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;  /* 0.3s yerine 0.4s */
    z-index: 1000;  /* 998 yerine 1000 */
}

.menu-close:hover {
    background: var(--primary-color);
    transform: rotate(180deg) scale(1.1);  /* 90deg yerine 180deg */
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.menu-close:hover i {
    color: white;
}

.menu-close i {
    font-size: 24px;
    color: var(--primary-color);
    transition: color 0.4s ease;  /* 0.3s yerine 0.4s */
}

.menu-nav {
    padding: 80px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.menu-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;  /* 0.6s yerine 0.8s */
}

.fullscreen-menu.active .menu-section {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-section:nth-child(1) { transition-delay: 0.2s; }  /* 0.1s yerine 0.2s */
.fullscreen-menu.active .menu-section:nth-child(2) { transition-delay: 0.4s; }  /* 0.2s yerine 0.4s */
.fullscreen-menu.active .menu-section:nth-child(3) { transition-delay: 0.6s; }  /* 0.3s yerine 0.6s */

.menu-section-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    text-transform: uppercase;
    font-weight: 600;
}

.menu-nav ul {
    list-style: none;
}

.menu-nav ul li {
    margin: 15px 0;
}

.menu-nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.menu-nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.menu-nav ul li a:hover::before {
    width: 100%;
}

.menu-nav ul li a:hover {
    color: var(--accent-color);
}

.menu-contact-info {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.menu-contact-item {
    color: var(--gray-text);
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.6;
}

/* Ana İçerik */
main {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* Hero Bölümü */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeInHero 1.5s ease-out forwards;
}

@keyframes fadeInHero {
    to { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8) 0%, rgba(0, 61, 122, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out 0.5s forwards;
}

.hero-content h1 span {
    color: #00d4ff;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out 0.8s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 50px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out 1.1s forwards;
}

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

.hero-stat h3 {
    font-size: 42px;
    color: #00d4ff;
    margin-bottom: 8px;
}

.hero-stat p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Özet Bölümler */
.overview-sections {
    padding: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.overview-section {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSection 0.8s ease-out forwards;
}

@keyframes fadeInSection {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--light-text);
    margin-bottom: 10px;
}

.section-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.content-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.content-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--light-text);
}

.content-card p {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 14px;
}

/* Sayfa İçerik */
.page-content {
    padding: 150px 100px 100px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.page-header p {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 900px;
}

.page-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.page-text h2 {
    font-size: 32px;
    color: var(--light-text);
    margin: 40px 0 20px;
}

.page-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

/* İletişim Formu */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    color: var(--light-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.contact-info-card i {
    font-size: 28px;
    color: var(--primary-color);
    min-width: 35px;
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.contact-info-card p {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 15px;
}
/* Footer */
.footer {
    margin-left: var(--sidebar-width);
    background: #003d7a;
    border-top: 1px solid var(--border-color);
    padding: 60px 100px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

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

/* Logo bölümü - yukarıda kalacak */
.footer-section:first-child {
    align-self: start;
}

.footer-section:first-child img {
    margin-bottom: 15px;
    margin-top: 0;
}

/* Diğer bölümler - aşağı inecek */
.footer-section:not(:first-child) {
    padding-top: 50px;
}

.footer-section h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 600;
}

.footer-section p {
    color: white;
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

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

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 80px;
    }
    
    .hero-content {
        padding: 0 60px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .page-content,
    .overview-sections {
        padding: 120px 60px 80px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 50px 60px 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 70px;
    }
    
    .menu-nav {
        padding: 40px 40px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .page-content,
    .overview-sections {
        padding: 100px 30px 60px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 40px 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Dropdown Menü */
.dropdown-parent {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 19px;
    font-weight: 600;
}

.dropdown-toggle i {
    font-size: 14px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.dropdown-parent.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    padding-left: 20px;
    margin-top: 0;
    opacity: 0;
}

.dropdown-parent.active .dropdown-menu {
    max-height: 500px;
    margin-top: 10px;
    opacity: 1;
}

.dropdown-menu li {
    margin: 10px 0;
}

.dropdown-menu li a {
    font-size: 16px;
    color: var(--gray-text);
    padding: 8px 0;
}

.dropdown-menu li a:hover {
    color: var(--accent-color);
}


.footer-bottom {
    background-color: #003d7a;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-bottom img {
    vertical-align: middle;
}

.furkatech-logo {
    height: 20px;
}

.footer-copyright .furkatech {
    color: #fff;
    font-weight: 700;
}

.footer-copyright .tecnology {
    color: #00fefb;
    font-weight: 700;
}

.footer-copyright a {
    text-decoration: none; /* Mavi alt çizgiyi kaldırır */
    color: inherit; /* Varsayılan mavi rengi kaldırır, üst elementin rengini alır */
}

/* Servis Slider Stili */
.service-slider-container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 0;
    margin-top: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.slider-image-section {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slider-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow i {
    font-size: 20px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.slider-arrow:hover i {
    color: white;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    border-color: var(--primary-color);
    transform: scale(1.3);
}

.slider-content-section {
    padding: 50px 40px;
    overflow-y: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.slider-content-section .page-text h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 0;
}

.slider-content-section .page-text h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.slider-content-section .page-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.slider-content-section .page-text ul {
    list-style: none;
    padding-left: 0;
}

.slider-content-section .page-text ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 14px;
}

.slider-content-section .page-text ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.slider-content-section .page-text ul li strong {
    color: var(--primary-color);
}

@media (min-width: 1025px) {
    .sidebar {
        opacity: 1 !important;
        pointer-events: all !important;
    }
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .service-slider-container {
        grid-template-columns: 1fr;
    }

    .fullscreen-menu.active ~ .sidebar {
        opacity: 0;
        pointer-events: none;
    }
    
    .slider-image-section {
        height: 500px;
    }
    
    .slider-content-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .slider-image-section {
        height: 400px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow i {
        font-size: 16px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-content-section {
        padding: 30px 20px;
    }
}

.phone-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-direction: row !important;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.contact-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

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

.call-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.email-link {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.email-link:hover {
    color: var(--primary-color);
}

.email-link i {
    font-size: 14px;
    color: var(--primary-color);
}