@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root{
    --color1: #0c437a;
    --color2: #0f365e;
    --color3: #53746d;
    --color4: #ababab;
    --color5: #424242;
    --color6: #d3d3d3;
    --color7: #ffffff;
    --color8: black;
    --color9: #101728;
    --color10: #007cda;
    --bg-dark: #000000;
    --text-light: #ffffff;
    --accent: #0c437a;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: DIN_Regular, Roboto, Arial, Verdana, geneva, san-serif;;
}

body{
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

header{
    height: auto;
    background-color: var(--bg-dark);
}

h1, h2, h3, h4{
    color: var(--text-light);
}

a{
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 250ms ease;
}

p{
    color: var(--text-light);
}

ul{
    list-style-type: none;
}
li{
    list-style-type: none;
}

.direct-contact{
    display: flex;
    justify-content: start;
    background-color: var(--bg-dark);
    height: 3rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
}

.info-contact{
    width: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
}

.info-contact a{
    font-size: 0.8rem;
    color: var(--color4);
    padding: 20px;
}

.icon-contact {
    width: 100%;
    height: auto;
    max-width: 15px;
}

.info-media{
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

.info-media li{
    padding: 0.5rem;
}

.navbar{
    display: flex;
    justify-content: center;
    background: rgba(15, 24, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
    padding: 0.5rem 0;
}

.navbar-menu{
    display:flex;
    justify-content: space-around;
    background: transparent;
    align-items: center;
    width: 70%;
    height: auto;
    gap: 0.5rem;
}

.navbar-logo{
    height: 7rem;
}

.navbar-menu li a{
    color: var(--text-light);
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 4vw, 14px) clamp(16px, 3vw, 20px);
    border-radius: 999px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 250ms ease, color 250ms ease;
}

.navbar-menu li a:hover{
    color: var(--accent);
    transform: translateY(-1px);
}

.navbar-menu li ul{
    display: none;
    position: absolute;
    width: 180px;
    background: rgba(14, 32, 58, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    z-index: 1000;
}

.navbar-menu li:hover ul{
    display: block;
    opacity: 0.90;
}

main{
    padding: 0;
}
.hero-slogan{
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.hero-content{
    flex: 1;
    text-align: left;
}

.hero h1{
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.hero p{
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.price{
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 2rem;
}

.price span{
    font-size: 0.5em;
    color: var(--text-light);
}

.cta-button{
    background: var(--accent);
    color: var(--color7);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 250ms ease;
    
}

.cta-button:hover{
    background: #5bb8e6;
}

.hero-image{
    flex: 2;
    
}

.hero-image img{
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.services{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 40px;
}



.services-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 40px 10%;
    flex-wrap: wrap;
}

.service{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(56, 125, 255, 0.30), 0 0 0 1px rgba(56, 125, 255, 0.30);
    text-align: center;
    width: 22%;
    min-height: 250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service p{
    font-size: 0.8rem;

}

.service h3{
    margin-bottom: 1rem;
    color: var(--color10);
}

.service:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.service-btn:hover {
    background: #5bb8e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about{
    padding: 4rem 2rem;
    text-align: center;
    max-width: 85%;
    margin: 0 auto;
    
}

.about h2{
    margin-bottom: 2rem;
}

.about p{
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--color6);
    width: 70%;
    text-align: center;
    margin: 20px;
    
}
.about-p{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
 }



footer{
    background: var(--bg-dark);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-button{
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    font-weight: 600;
    animation: floating-pulse 2s ease-in-out infinite;
    transition: transform 250ms ease, box-shadow 250ms ease, opacity 250ms ease;
}



.floating-button img{
    width: 85px;
    height: auto;
}

@keyframes floating-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 900px) {
    .floating-button{
        right: 1rem;
        bottom: 1rem;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
    .hero-image{
        display: none;
    }
    .hero-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 1rem;
        padding: 1.5rem;
        margin: 1rem;
    }
}



@media (max-width: 1024px) {
    .hero {
        padding: 3rem 1rem;
        gap: 1rem;
    }
    .hero h1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
    .price {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    .services-container {
        margin: 40px 2%;
    }
    .service {
        width: 35%;
        margin: 1rem;
    }
}

@media (max-width: 768px) {
    .services-container{
        margin: 40px 5%;
    }
    .service{
        width: 50%;
        margin: 1rem;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    .hero-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service{
        width: 95%;
        margin: 1rem auto;
    }
}

@media (max-width: 900px) {
    .about-p p:nth-of-type(2) {
        display: none;
    }
    .about h1 {
        font-size: 2.5rem;
    }
    .about p {
        font-size: 1.5rem;
    }
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-overlay.show {
    display: flex;
}

.popup-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.2rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(56, 125, 255, 0.22), 0 0 0 1px rgba(56, 125, 255, 0.15);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.popup-close:hover {
    color: var(--accent);
}

.popup-body {
    color: var(--text-light);
    text-align: center;
}
