/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Montserrat:wght@600;800&display=swap');

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

body {
    font-family:'Roboto', sans-serif;
    line-height:1.7;
    color:#111;
    background:#fff;
    padding-top:80px;
}

/* NAVBAR (same as homepage) */
.navbar {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 30px;
    background:#ffffffcc;
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    backdrop-filter:blur(10px);
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.nav-logo { height:50px; }

/* CENTER BUTTONS */
.nav-buttons {
    display:flex;
    gap:15px;
    margin:0 auto;
}

.nav-button {
    padding:10px 22px;
    background:linear-gradient(145deg,#0a2540,#0f3a66);
    color:#fff;
    border:none;
    border-radius:8px;
    font-family:'Montserrat';
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.nav-button:hover {
    transform:translateY(-2px);
    filter:brightness(1.1);
}

/* MAIN */
main {
    text-align:center;
    padding:40px 20px;
    max-width:1200px;
    margin:auto;
}

/* CONTACT CARD */
.contact-content {
    background:#fff;
    padding:50px 30px;
    max-width:900px;
    margin:40px auto;
    border-radius:20px;
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

/* TITLE */
.contact-content h1 {
    font-family:'Montserrat';
    font-size:2.8rem;
    font-weight:800;
    color:#0a2540;
    margin-bottom:20px;
}

/* TEXT */
.contact-content p {
    font-size:1.1rem;
    color:#444;
    margin-bottom:15px;
}

/* MAP */
.map-container {
    max-width:900px;
    margin:30px auto 60px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.map-container iframe {
    width:100%;
    height:400px;
    border:none;
}

/* SIDE RED LINES */
body::before,
body::after {
    content:"";
    position:fixed;
    top:0;
    width:3px;
    height:100%;
    z-index:0;

    background:linear-gradient(
        to bottom,
        transparent,
        #b11226,
        #ff4d5a,
        #b11226,
        transparent
    );

    background-size:100% 200%;
    animation:scrollGlow 6s linear infinite;
}

body::before { left:20px; }
body::after { right:20px; }

@keyframes scrollGlow {
    0% { background-position:0% 0%; }
    100% { background-position:0% 200%; }
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b11226, #ff4d5a);
    margin: 40px auto;
    border-radius: 2px;
}

/* FOOTER (same as homepage) */
.footer {
    background:#f8f8f8;
    color:#333;
    margin-top:60px;
    padding-top:40px;
}

.footer-container {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.footer-section {
    flex:1;
    min-width:250px;
}

.footer-section h3 {
    margin-bottom:15px;
    color:#0a2540;
}

.footer-section p {
    margin:6px 0;
    color:#555;
}

.footer-bottom {
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(0,0,0,0.05);
    margin-top:20px;
    font-size:.9rem;
}

/* RESPONSIVE */
@media(max-width:768px){
    .nav-buttons {
        display:none;
    }
}