/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #F8F8F8;
    /* Soft Ivory for main background */
    color: #1D1D1D;
    /* Dark Charcoal text */
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
    /* VERY IMPORTANT: make sure navbar is on top */
}

.logo img {
    height: 50px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #1D3557;
    /* Deep Blue / Navy */
    font-weight: 500;
    padding-bottom: 6px;
}

.nav-links a:hover {
    color: #D4AF37;
    /* Gold hover accent */
}

.nav-links a.active {
    color: #1D3557;
    font-weight: 700;
    border-bottom: 3px solid #1D3557;
}


/* ================= CONTACT HERO ================= */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url("../images/ppkBuilding.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

/* ================================
   CONTACT INFO SECTION
================================ */
.contact-info {
    position: relative;
    color: white;
    text-align: center;
    padding: 80px 20px;
    min-height: 600px;

    /* Background Image */
    background: url("../images/backgroundcs.jpg") center center / cover no-repeat;
}

/* Dark overlay */
.contact-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

.contact-container h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* ================================
   CONTACT CARDS (HORIZONTAL)
================================ */
.contact-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255,255,255,0.95);
    color: #333;
    width: 320px;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 18px;
}

.contact-card h4 {
    margin-bottom: 10px;
    color: #0d6efd;
}

/* ================================
   CONTACT FORM
================================ */
.contact-form {
    background: #f9f9f9;
    text-align: center;
    
    /* Background Image */
    background: url("../images/customer_support.png") center center / cover no-repeat;
}

.contact-form .container {
    max-width: 700px;
    margin: auto;
}

.contact-form h2 {
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 36px;

    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #084298;
}

/* ================================
   MAP SECTION
================================ */
.contact-map {
    background: #ffffff;
    text-align: center;
}

.contact-map h2 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* ================= FOOTER ================= */
.ppk-footer {
    background: #1D3557;
    /* Dark Navy footer */
    padding: 50px 20px 0;
    color: #F8F8F8;
    /* Light text */
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    color: #D4AF37;
    /* Gold headings in footer */
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 150px;
    background-color: #F8F8F8;
    /* light background behind logo */
    padding: 5px 10px;
    border-radius: 8px;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 2px solid #D4AF37;
    /* gold accent */
    background: #1D3557;
    width: 100%;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom a {
    color: #F8F8F8;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #D4AF37;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {

    .navbar {
        padding: 15px 30px;
    }

    .footer-container,
    .footer-bottom-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .contact-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer-container,
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown hidden */
.dropdown-content {
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
}

/* Dropdown link */
.dropdown-content a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 0;
    box-sizing: border-box;
}

.dropdown-content a:hover {
    background: #f0f0f0;
}

/* Show on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

html {
    scroll-behavior: smooth;
}

.dropdown a i {
    font-size: 12px;
    margin-left: 5px;
    transition: 0.3s;
}

/* rotate bila hover */
.dropdown:hover a i {
    transform: rotate(180deg);
}