/* --- VARIABLES --- */
:root {
    --primary: #1e1e2f;
    --accent: #caa24d;
    --bg: #f4f4f4;
    --white: #ffffff;
    --text: #333;
    --shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* --- HEADER --- */
header {
    background: var(--primary);
    color: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header h1 { font-size: clamp(1rem, 4vw, 1.5rem); }
.language-selector {
    background: var(--accent);
    border: none;
    padding: 6px 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

/* --- HERO (DRONE SHOT) --- */
.hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url("Drone shot.jpeg") center/cover no-repeat;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* --- CONTAINER --- */
.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 20px 0 60px; }

.intro-text { text-align: center; padding: 40px 0; }
.intro-text h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); color: var(--primary); }

/* --- RESPONSIVE GRID --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--accent);
}

.info-box h3 { color: var(--primary); margin-bottom: 15px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.info-box ul { list-style: none; }
.info-box ul li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.info-box ul li::before { content: "✓"; color: var(--accent); position: absolute; left: 0; font-weight: bold; }

address { font-style: normal; }
address p { margin-bottom: 15px; }
address strong { color: var(--accent); display: block; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* --- SECTION SPACING --- */
.spacer-section {
    margin-top: 60px; /* Big gap between Banking and Rates */
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

/* --- TABLES --- */
.table-wrapper { overflow-x: auto; border-radius: 8px; margin: 20px 0; }
.rates-table { width: 100%; border-collapse: collapse; min-width: 500px; background: #fff; }
.rates-table th { background: var(--primary); color: var(--accent); padding: 15px; text-align: left; }
.rates-table td { padding: 12px; border: 1px solid #eee; }

.policy-info p { margin-bottom: 10px; font-size: 0.9rem; }

/* --- GALLERY --- */
.gallery { position: relative; margin-top: 40px; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: auto; display: block; }
.gallery-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); padding: 0 15px; }
.gallery-controls button { background: var(--accent); border: none; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; color: white; font-size: 1.5rem; }

/* --- MAP SECTION --- */
.map-section { margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}
.map-section h3 { background: var(--primary); color: var(--accent); padding: 15px 0; margin-bottom: 15px; }
.map-section iframe { width: 100%; height: 300px; border: none; }
.map-section p { padding: 15px; font-size: 0.9rem; }
.map-section a { color: white(--accent); text-decoration: none; font-weight: 600; }   
.map-section a:hover { text-decoration: underline; }
.map-section a:active { color: var(--primary); }
.map-button {
    display: inline-block;
    margin-top: 10px;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

/* --- FOOTER --- */
footer { background: var(--primary); color: white; text-align: center; padding: 40px 20px; margin-top: 60px; }

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
    .hero { aspect-ratio: 4 / 3; } /* Taller image for mobile screens */
    .info-box { padding: 20px; }
    .spacer-section { margin-top: 40px; }
}