/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* BODY */
body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    min-height: 100vh;
}

/*header*/
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:#0f172a;
    flex-wrap:wrap;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo{
    color:white;
    font-size:28px;
    font-weight:bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.logo img{
    height:80px;
    width:auto;
    display:block;
}
.logo span{
    font-size: 12px;
    color: #d4af37;
    display: block;
    font-style: italic;
}

.nav-links{
    display:flex;
    gap: 25px;
    list-style:none;
    flex-wrap: wrap;
}

.nav-links a{
    position:relative;
    color:white;
    text-decoration:none;
    padding:5px;
    font-size: 15px;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:3px;
    background:#f59e0b;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}


.logo-text span{
    color:gold;
    font-size:14px;
    font-style: italic;
}


/* HERO */
.contact-hero {
    text-align: center;
    padding: 140px 20px 30px;
}

.contact-hero h1 {
    font-size: 42px;
    color: #d4af37;
}

.contact-hero p {
    opacity: 0.8;
    margin-top: 10px;
}

/* CENTER WRAPPER */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* INFO CARD WRAPPER FIX */
.info-card {
    width: 90%;
    max-width: 450px;
    margin-top: 20px;

    padding: 30px;
    border-radius: 15px;

    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* TITLE */
.info-card h2 {
    margin-bottom: 20px;
    color: #d4af37;
}

/* INFO ITEMS */
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    justify-content: center;
}

.info-item i {
    color: #d4af37;
    font-size: 18px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    margin-top: 25px;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* MAP */
.map {
    width: 90%;
    max-width: 900px;
    text-align: center;
    margin: 40px 0;
}

.map iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 12px;
    margin-top: 15px;
}

/* FOOTER */
footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .info-card {
        width: 95%;
    }
}