*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(to bottom, #f4fbff, #ffffff);
    color: #1d1d1d;
    overflow-x: hidden;
}


.logo{
    height: 110px;
    margin: 0;
    padding: 0 70px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.text{
    font-family: "Anton", sans-serif;
    font-size: 34px;
    letter-spacing: 2px;
    color: #10375c;
    text-transform: uppercase;
    text-align: center;
}

.logo img{
    height: 75px;
    position: absolute;
    left: 50px;
    transition: 0.4s ease;
}

.logo img:hover{
    transform: rotate(-5deg) scale(1.08);
}


.menu{
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: transparent;
    margin-top: 15px;
    padding-right: 60px;
}

.container{
    display:flex;
    gap: 18px;
    background: rgba(255,255,255,0.7);
    padding: 12px 22px;
    border-radius: 60px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}



.button{
    padding: 12px 28px;
    border-radius: 40px;
    border: none;
    background: white;
    font-weight: 600;
    font-size: 15px;
    transition: 0.35s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.button:hover{
    transform: translateY(-4px);
    background: linear-gradient(135deg,#00b4d8,#90e0ef);
    color: white;
    box-shadow: 0 12px 24px rgba(0,180,216,0.35);
}


.map{
    position: relative;
    overflow: hidden;

    background-image:
    linear-gradient(
        rgba(6,15,25,0.45),
        rgba(6,15,25,0.55)
    ),
    url(image_province/Angkorwat_sunrise.jpg);

    background-size: cover;

    background-repeat: no-repeat;
    background-attachment: fixed;

    animation: zoomBackground 18s ease-in-out infinite alternate;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;

    padding: 60px 20px 100px;

    background-position: center 0px;
    transition: background-position 0.1s linear;
}

@keyframes zoomBackground{
    0%{
        background-size: 100%;
    }

    100%{
        background-size: 110%;
    }
}

.map::before{
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    background:
    radial-gradient(
        circle,
        rgba(0,180,216,0.18),
        transparent 70%
    );

    top: -200px;
    left: -150px;

    z-index: 0;

    animation: floatingGlow 8s ease-in-out infinite alternate;
}

.container_map,
.container_text{
    position: relative;
    z-index: 2;
}

.map::after{
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,0.12),
        transparent 70%
    );

    bottom: -200px;
    right: -100px;

    z-index: 0;

    animation: floatingGlow2 10s ease-in-out infinite alternate;
}

@keyframes floatingGlow{
    0%{
        transform: translateY(0px);
    }

    100%{
        transform: translateY(40px);
    }
}

@keyframes floatingGlow2{
    0%{
        transform: translateY(0px);
    }

    100%{
        transform: translateY(-40px);
    }
}

.container_map{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.8);
    padding : 30px;
    border-radius: 28px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.6);

    transition: 0.4s ease;
}

.container_map:hover{
    transform: translateY(-8px);
}

.container_map img{
    width: 100%;
    max-width: 750px;
    transition: 0.4s ease;
}

.container_map img:hover{
    transform: scale(1.02);
}


.container_text{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.82);
    padding: 50px;
    border-radius: 28px;
    max-width: 980px;
    line-height: 1.9;
    backdrop-filter: blur(14px);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.6);

    transition: 0.4s ease;
}

.container_text:hover{
    transform: translateY(-5px);
}

.container_text h1{
    font-size: 52px;
    margin-bottom: 30px;
    color: #0f172a;
    font-family: "Anton", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.container_text p{
    font-size: 17px;
    color: #3d4b5c;
    text-align: justify;
}



footer{
    background: linear-gradient(to right,#071c2f,#10375c);
    text-align: center;
    padding: 35px 20px;
    margin-top: 80px;
}

footer p{
    font-size: 15px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

footer nav a{
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s ease;
    font-weight: 500;
}

footer nav a:hover{
    color: #90e0ef;
}



@media(max-width: 900px){

    .logo{
        flex-direction: column;
        height: auto;
        padding: 25px;
        gap: 10px;
    }

    .logo img{
        position: static;
        height: 65px;
    }

    .text{
        font-size: 22px;
    }

    .container{
        flex-wrap: wrap;
        justify-content: center;
    }

    .container_text{
        padding: 30px;
    }

    .container_text h1{
        font-size: 38px;
    }

    .container_text p{
        font-size: 15px;
    }
}

.contact-form{
    margin-top: 30px;
}

.input-group{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input-group label{
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
}

.input-group input{
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    background-color: #f8fafc;
    transition: 0.3s ease;
    outline: none;
}

.input-group input:focus{
    border-color: #38bdf8;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(56,189,248,0.15);
}

.submit-btn{
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,#0ea5e9,#38bdf8);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.35s ease;
    box-shadow: 0 8px 20px rgba(14,165,233,0.25);
}

.submit-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(14,165,233,0.35);
}

.submit-btn:active{
    transform: scale(0.98);
}


.info-section{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.card{
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,180,216,0.25);
}

.card h2{
    font-family: "Anton", sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #10375c;
    letter-spacing: 1px;
}

.card ul{
    list-style: none;
    padding: 0;
}

.card ul li{
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 15px;
    color: #334155;
}

/* Responsive */
@media(max-width: 900px){
    .info-section{
        grid-template-columns: 1fr;
    }
}

.card h2{
    font-family: "Anton", sans-serif;
    font-size: 22px;
    margin: 0 0 15px 0;   /* removes hidden misalignment */
    padding: 0;
    color: #10375c;
    letter-spacing: 1px;
    text-align: center;
    min-height: 50px; /* 🔥 key fix: forces equal header height */
    display: flex;
    align-items: center;
    justify-content: center;
}
.card ul{
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1; /* pushes content evenly */
}
.card ul li:last-child{
    border-bottom: none;
}