/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset və Ümumi Stillər */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Kart */
.card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-img {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Başlıq */
.title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    font-size: 15px;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Əlaqə Linkləri */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: #f7fafc;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Telefon */
.contact-link.phone {
    border-color: #e6f4ff;
}

.contact-link.phone:hover {
    background: #e6f4ff;
    border-color: #1890ff;
}

.contact-link.phone .icon-wrapper {
    background: linear-gradient(135deg, #1890ff, #096dd9);
}

/* WhatsApp */
.contact-link.whatsapp {
    border-color: #e8f9f0;
}

.contact-link.whatsapp:hover {
    background: #e8f9f0;
    border-color: #25d366;
}

.contact-link.whatsapp .icon-wrapper {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Email */
.contact-link.email {
    border-color: #fff0f0;
}

.contact-link.email:hover {
    background: #fff0f0;
    border-color: #ff4757;
}

.contact-link.email .icon-wrapper {
    background: linear-gradient(135deg, #ff4757, #ee5a6f);
}

/* İkon Wrapper */
.icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 24px;
    color: #ffffff;
}

/* Link Content */
.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.link-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 3px;
}

.link-subtitle {
    font-size: 14px;
    color: #718096;
}

/* Ox İkonu */
.arrow {
    font-size: 18px;
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.contact-link:hover .arrow {
    color: #4a5568;
    transform: translateX(5px);
}

/* Footer */
.footer {
    margin-top: 40px;
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: #a0aec0;
}

/* Tablet (768px və aşağı) */
@media (max-width: 768px) {
    .card {
        padding: 40px 30px;
        border-radius: 25px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 14px;
    }

    .logo-img {
        width: 155px;
    }

    .contact-link {
        padding: 18px 20px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .icon-wrapper i {
        font-size: 22px;
    }

    .link-title {
        font-size: 17px;
    }

    .link-subtitle {
        font-size: 13px;
    }
}

/* Mobil (480px və aşağı) */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .logo-img {
        width: 135px;
    }

    .contact-links {
        gap: 12px;
    }

    .contact-link {
        padding: 16px 18px;
        border-radius: 15px;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
        margin-right: 12px;
        border-radius: 12px;
    }

    .icon-wrapper i {
        font-size: 20px;
    }

    .link-title {
        font-size: 16px;
    }

    .link-subtitle {
        font-size: 12px;
    }

    .arrow {
        font-size: 16px;
    }

    .footer {
        margin-top: 30px;
    }

    .footer p {
        font-size: 12px;
    }
}

/* Kiçik mobil (360px və aşağı) */
@media (max-width: 360px) {
    .card {
        padding: 30px 20px;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 12px;
    }

    .logo-img {
        width: 115px;
    }

    .contact-link {
        padding: 14px 16px;
    }

    .icon-wrapper {
        width: 42px;
        height: 42px;
        margin-right: 10px;
    }

    .icon-wrapper i {
        font-size: 18px;
    }

    .link-title {
        font-size: 15px;
    }

    .link-subtitle {
        font-size: 11px;
    }
}

/* Animasiyalar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.6s ease-out;
}

.contact-link {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.contact-link:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-link:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-link:nth-child(3) {
    animation-delay: 0.3s;
}
