@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: #121212;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

main {
    flex: 1;
}

.hero-section {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.7) 50%, rgba(18, 18, 18, 0.9) 100%), url('../images/hero-image.png');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(18, 18, 18, 0.8) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.call-btn {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: #FFFFFF;
    color: #121212;
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s;
}

.call-btn__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: #FFFFFF;
    background-color: #121212;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.call-btn:hover {
    background-color: #121212;
    color: #FFFFFF;
}

.call-btn:hover .call-btn__icon-wrapper {
    color: #121212;
    background-color: #FFFFFF;
}

.call-btn__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.call-btn:hover .call-btn__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.call-btn:hover .call-btn__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup {
    background-color: #121212;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup h2 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.popup-contact {
    margin-bottom: 2rem;
}

.popup-contact div {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}



.close-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}