/* --- ROOT VARIABLES --- */
:root {
    --charcoal: #2C3E50;
    --ivory: #F0F4F7;
    --cream: #D1D1D1;
    --white: #ffffff;
    --text-muted: #5B7C99;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--ivory);
    color: var(--charcoal);
    width: 100%;
    overflow-x: hidden;
}

/* ------------------ HEADER (Synced with Gallery) ------------------ */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
    background: var(--ivory);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: #F0F4F7BF; 
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.left-section { display: flex; align-items: center; gap: 8px;}

/* --- FIXED LOGO BUTTON (Prevents Shifting) --- */
.wide-logo-button {
    /* 1. Define the border width here so it takes up space even when invisible */
    border: 2px solid transparent; 
    
    background-color: transparent;
    padding: 5px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-sizing: border-box; 
}

.wide-logo-button:hover {
    box-shadow: 0 4px 12px rgba(42, 59, 71, 0.7);
    cursor: pointer;
    transform: translateY(-2px);
}

.wide-logo-button img { height: 55px; width: auto; }

.nav-center-menu { display: flex; gap: 50px; }

.nav-center-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 700; /* Bold */
    font-size: 16px;
    position: relative;
    transition: 0.3s;
}

.nav-center-menu a:hover { transform: translateY(-1px); }

.nav-center-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; /* Thicker bold line */
    bottom: -5px;
    left: 0;
    background: var(--charcoal);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-center-menu a:hover::after { width: 100%; }

.right-section { display: flex; gap: 16px; }

.login-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800; /* Extra Bold */
    cursor: pointer;
    border: none;
    background-color: var(--ivory);
    color: var(--charcoal);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* ------------------ BOLD DARK FOOTER ------------------ */
.site-footer {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 120px 10% 40px;
    border-radius: 80px 80px 0 0; /* Gallery Style Curve */
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.footer-brand h3 span { color: var(--cream); }

.footer-actions { display: flex; gap: 15px; margin-top: 35px; }

.footer-btn {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.footer-btn.primary { background-color: var(--ivory); color: var(--charcoal); }
.footer-btn.secondary { border: 2px solid var(--ivory); color: var(--ivory); }

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-nav { display: flex; flex-direction: column; }

.footer-contact h4, .footer-nav h4 {
    color: var(--cream);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 30px;
    text-decoration: underline;
    text-decoration-color: var(--cream);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    border-bottom: none; 
    padding-bottom: 0; 
    width: auto; 
}
.footer-contact p, .footer-nav a {
    font-size: 1.05rem;
    margin-bottom: 18px;
    display: block;
    text-decoration: none;
    color: var(--ivory);
    opacity: 0.8;
    transition: 0.3s ease;
    font-weight: 500;
}

.footer-contact p a { color: #fff; text-decoration: none; }

.footer-nav a:hover {
    opacity: 1;
    color: var(--cream);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    margin-top: 60px;
    border-top: 1px solid rgba(256, 256, 256, 0.5);
    font-size: 13px;
    opacity: 0.4;
}

/* ------------------ MODAL (Bento Style) ------------------ */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(42, 59, 71, 0.9);
    backdrop-filter: blur(15px);
    display: none; justify-content: center; align-items: center; z-index: 9999;
}

.modal-card {
    background: var(--ivory);
    width: 90%; max-width: 480px;
    padding: 50px 40px;
    border-radius: 50px; /* Bento Curve */
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    text-align: center;
}

.close-modal {
    position: absolute; top: 25px; right: 30px;
    background: none; border: none;
    font-size: 2rem; color: var(--charcoal);
    cursor: pointer; opacity: 0.5; transition: 0.3s;
}
.close-modal:hover { opacity: 1; }

.modal-header h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.modal-header p { margin-bottom: 30px; color: var(--text-muted); font-weight: 600; }

.input-group { margin-bottom: 20px; }
.input-group input, .input-group textarea {
    width: 100%; padding: 18px 25px;
    border-radius: 25px;
    border: 2px solid var(--cream);
    background: var(--white);
    outline: none; font-size: 1rem; color: var(--charcoal);
    font-weight: 600; transition: 0.3s; font-family: inherit; resize: none;
}
.input-group input:focus, .input-group textarea:focus {
    border-color: var(--charcoal);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.submit-enquiry-btn {
    width: 100%; padding: 18px;
    background: var(--charcoal); color: var(--ivory);
    border: none; border-radius: 50px;
    font-weight: 900; cursor: pointer; transition: 0.3s;
    text-transform: uppercase; letter-spacing: 1px;
}
.submit-enquiry-btn:hover {
    background: #1a262e; transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.modal-success-msg h3 { font-size: 2rem; font-weight: 900; color: var(--charcoal); margin-bottom: 10px; }

/* ------------------ WHATSAPP ------------------ */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25d366; color: white;
    padding: 14px 28px; border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; font-weight: 800;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000; transition: 0.3s;
}
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* ... [Keep all your variables and header/footer styles above this] ... */

/* ------------------ RESPONSIVE (Fixed) ------------------ */
@media (max-width: 900px) {
    .main-header { padding: 10px 20px; }
    .wide-logo-button img { height: 42px; }
    .right-section { gap: 8px; }
    .login-btn { font-size: 12px; padding: 10px 18px; }
    
    /* Navigation */
    .nav-center-menu { display: none; }
    
    /* Footer */
    .site-footer{padding:60px 6% 30px;border-radius:40px 40px 0 0;margin-top:40px}
    .footer-grid{grid-template-columns:1fr;gap:35px;text-align:center}
    .footer-brand{order:3}
    .footer-contact{order:2}
    .footer-nav{order:1}
    .footer-brand h3{font-size:1.6rem;margin-bottom:15px}
    .footer-contact h4,.footer-nav h4{font-size:1rem;margin:0 auto 20px}
    .footer-contact p,.footer-nav a{font-size:0.95rem;margin-bottom:12px}
    .footer-actions{justify-content:center;flex-wrap:wrap;gap:10px;margin-top:20px}
    .footer-btn{font-size:13px;padding:12px 24px}
}

@media (max-width: 600px) {
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .site-footer{padding:50px 5% 20px;border-radius:30px 30px 0 0}
    .footer-actions{flex-direction:column;align-items:center}
    .footer-btn{width:100%;max-width:280px}
    
    .input-group input, .input-group textarea { padding: 14px 18px; font-size: 0.95rem; }
    .submit-enquiry-btn { padding: 14px; }
}