:root {
    --color-bg: #e8f4fc;
    --color-bg-light: #f0f8ff;
    --color-bg-card: #ffffff;
    --color-text: #1a3a5c;
    --color-text-muted: #1f4e79;
    --color-primary: #1565c0;
    --color-primary-light: #42a5f5;
    --color-accent: #c9a227;
    --color-accent-light: #e6c453;
    --color-gradient-start: #1565c0;
    --color-gradient-end: #00bfa5;
    --color-border: rgba(21, 101, 192, 0.15);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-soft: 0 4px 20px rgba(21, 101, 192, 0.1);
    --shadow-hover: 0 8px 30px rgba(21, 101, 192, 0.15);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-hero {
    padding: 20px 60px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(21, 101, 192, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.hero-label::before,
.hero-label::after {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(21, 101, 192, 0.3);
}

.hero-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}


.contact-content {
    padding: 60px 0 100px;
}


.contact-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.contact-intro-text {
    padding-right: 20px;
}

.contact-intro-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.3;
}

.contact-text {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-text:last-child {
    margin-bottom: 0;
}


.contact-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--color-bg-card);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.contact-stat-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary-light);
}

.contact-stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 16px;
    flex-shrink: 0;
}

.contact-stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.contact-stat-content {
    flex: 1;
}

.contact-stat-value {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    line-height: 1.2;
}

.contact-stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 2px;
}


.contact-methods {
    margin-bottom: 80px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-method-card {
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method-card.whatsapp::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.contact-method-card.telegram::before {
    background: linear-gradient(90deg, #0088cc, #229ED9);
}

.contact-method-card.email::before {
    background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.contact-method-card:hover::before {
    opacity: 1;
}

.contact-method-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method-card.whatsapp .contact-method-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-method-card.whatsapp:hover .contact-method-icon {
    background: #25D366;
    color: white;
}

.contact-method-card.telegram .contact-method-icon {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.contact-method-card.telegram:hover .contact-method-icon {
    background: #0088cc;
    color: white;
}

.contact-method-card.email .contact-method-icon {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(0, 191, 165, 0.1));
    color: var(--color-primary);
}

.contact-method-card.email:hover .contact-method-icon {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    color: white;
}

.contact-method-card.email .contact-method-icon svg {
    stroke: currentColor;
    fill: none;
}

.contact-method-icon svg {
    width: 30px;
    height: 30px;
}

.contact-method-content {
    flex: 1;
    min-width: 0;
}

.contact-method-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.contact-method-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.contact-method-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-muted);
    fill: none;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.contact-method-card:hover .contact-method-arrow {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
}

.contact-method-card:hover .contact-method-arrow svg {
    stroke: white;
    transform: translateX(4px);
}


.contact-services {
    margin-bottom: 80px;
}

.contact-services-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.contact-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.contact-service-item {
    padding: 36px 24px;
    list-style: none;
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.4s ease;
}

.contact-service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary-light);
}

.contact-service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-service-item:hover .contact-service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3);
}

.contact-service-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.contact-service-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.contact-service-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}


.contact-cta {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.contact-cta-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-cta-btn.primary {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-cta-btn.primary:hover {
    background: var(--color-bg-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.contact-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1200px) {
    .contact-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-service-item:nth-child(4),
    .contact-service-item:nth-child(5) {
        grid-column: span 1;
    }
}


@media (max-width: 992px) {
    .contact-content {
        padding: 50px 0 80px;
    }

    .contact-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-intro-text {
        padding-right: 0;
        text-align: center;
    }

    .contact-intro-title {
        font-size: 28px;
    }

    .contact-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-stat-item {
        flex: 1;
        min-width: 280px;
        max-width: 350px;
    }

    .contact-stat-item:hover {
        transform: translateY(-5px);
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-service-item:nth-child(5) {
        grid-column: span 2;
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-cta {
        padding: 50px 40px;
    }

    .contact-cta-title {
        font-size: 32px;
    }
}


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

    .contact-hero {
        padding: 80px 0 40px;
    }

    .hero-label::before,
    .hero-label::after {
        width: 24px;
    }

    .hero-icon {
        width: 70px;
        height: 70px;
    }

    .hero-icon svg {
        width: 32px;
        height: 32px;
    }

    .contact-content {
        padding: 40px 0 70px;
    }

    .contact-intro {
        margin-bottom: 60px;
    }

    .contact-intro-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 15px;
    }

    .contact-stats {
        flex-direction: column;
        gap: 16px;
    }

    .contact-stat-item {
        min-width: auto;
        max-width: none;
        padding: 20px 24px;
    }

    .contact-stat-item:hover {
        transform: none;
    }

    .contact-stat-icon {
        width: 52px;
        height: 52px;
    }

    .contact-stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-stat-value {
        font-size: 22px;
    }

    .section-title {
        font-size: 24px;
    }

    .contact-methods {
        margin-bottom: 60px;
    }

    .contact-method-card {
        padding: 24px 20px;
    }

    .contact-method-icon {
        width: 56px;
        height: 56px;
    }

    .contact-method-icon svg {
        width: 26px;
        height: 26px;
    }

    .contact-method-title {
        font-size: 18px;
    }

    .contact-services {
        margin-bottom: 60px;
    }

    .contact-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-service-item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 24px;
    }

    .contact-service-item:nth-child(5) {
        grid-column: span 1;
        max-width: none;
    }

    .contact-service-item:hover {
        transform: none;
    }

    .contact-service-icon {
        margin: 0;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .contact-service-item:hover .contact-service-icon {
        transform: none;
    }

    .contact-service-icon svg {
        width: 26px;
        height: 26px;
    }

    .contact-service-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .contact-cta {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .contact-cta-title {
        font-size: 28px;
    }

    .contact-cta-text {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .contact-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .contact-cta-btn {
        justify-content: center;
        padding: 16px 28px;
        font-size: 15px;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .contact-intro-title {
        font-size: 24px;
    }

    .contact-stat-item {
        gap: 16px;
        padding: 18px 20px;
    }

    .contact-stat-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .contact-stat-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-stat-value {
        font-size: 20px;
    }

    .contact-stat-label {
        font-size: 13px;
    }

    .contact-method-card {
        padding: 20px 16px;
        gap: 16px;
    }

    .contact-method-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .contact-method-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-method-title {
        font-size: 16px;
    }

    .contact-method-desc {
        font-size: 13px;
    }

    .contact-method-arrow {
        display: none;
    }

    .contact-service-item {
        gap: 16px;
        padding: 20px;
    }

    .contact-service-icon {
        width: 52px;
        height: 52px;
    }

    .contact-service-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-service-title {
        font-size: 15px;
    }

    .contact-service-desc {
        font-size: 12px;
    }

    .contact-cta {
        padding: 36px 20px;
    }

    .contact-cta-title {
        font-size: 24px;
    }

    .contact-cta-text {
        font-size: 15px;
    }

    .contact-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }

    .contact-cta-btn svg {
        width: 20px;
        height: 20px;
    }
}