:root {
    --navy-deep: #0B1E33;       /* Premium Dark Navy */
    --navy-medium: #153254;     /* Accent Navy Mid-tone */
    --navy-light: #F0F4F8;      /* Clean Minimal Blue Tint */
    --gold-primary: #C5A059;    /* Corporate Matt Gold */
    --gold-bright: #F4D393;     /* Soft Shimmer Highlight Gold */
    --white-base: #FFFFFF;      /* Pure Minimal White */
    --text-main: #1C2B3E;       /* Deep Navy Dark Typography */
    --text-muted: #5C6E84;      /* Modern Soft Slate Text */
    --whatsapp-green: #22C55E;
    --sans-font: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans-font);
    background-color: var(--white-base);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.65;
}

/* Header Navbar - Fixed Sizing & Spacing Alignment */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 75px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(21, 50, 84, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo .logo-name {
    font-family: var(--sans-font);
    color: var(--navy-deep);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.logo .logo-name span { 
    color: var(--gold-primary); 
}

.logo .logo-loc {
    font-size: 0.52rem;
    letter-spacing: 0.12rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--navy-medium);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    margin-right: 18px;
    letter-spacing: 0.06em;
    transition: color 0.25s;
}

.nav-links a:hover { 
    color: var(--gold-primary); 
}

.tb-right { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.tb-num { 
    color: var(--navy-deep); 
    font-weight: 800; 
    text-decoration: none; 
    font-size: 0.88rem; 
    white-space: nowrap;
}

.cta-enquire {
    background: var(--navy-deep);
    color: var(--white-base);
    text-decoration: none;
    font-weight: 700;
    padding: 10px 18px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(11, 30, 51, 0.15);
}

.cta-enquire:hover { 
    background: var(--gold-primary); 
    transform: translateY(-2px);
}

/* Floating SVG WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 1500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.wa-svg {
    width: 30px;
    height: 30px;
    display: block;
}

/* Modal Popup Form Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 30, 51, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--white-base);
    width: 90%;
    max-width: 480px;
    padding: 35px 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--gold-primary);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy-deep);
    cursor: pointer;
}

.modal-card h3 {
    color: var(--navy-deep);
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.modal-card .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--navy-light);
    border: 1px solid rgba(21, 50, 84, 0.08);
    outline: none;
    font-family: var(--sans-font);
    font-size: 0.9rem;
    border-radius: 4px;
    color: var(--navy-deep);
    resize: none;
}

/* Hero Section Layout */
.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 70px;
    padding-left: 5%;
    padding-right: 5%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0B1E33;
}

/* Video Styling */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Overlay for Text Contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 30, 51, 0.85) 0%, rgba(21, 50, 84, 0.75) 100%);
    z-index: 2;
}

.hero-container-flex {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
    z-index: 3;
}

.hero-content { color: var(--white-base); }

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold-bright);
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    border-radius: 50px;
}

.badge-dot { 
    width: 8px; 
    height: 8px; 
    background: var(--whatsapp-green); 
    border-radius: 50%; 
    box-shadow: 0 0 8px var(--whatsapp-green);
}

.h-loc { 
    font-size: 0.78rem; 
    color: rgba(255,255,255,0.75); 
    letter-spacing: 0.12em; 
    margin-bottom: 10px; 
    font-weight: 700; 
}

.h-title { 
    font-family: var(--sans-font); 
    font-size: clamp(2.4rem, 4.5vw, 4.2rem); 
    font-weight: 800; 
    line-height: 1.12; 
    letter-spacing: -1px; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.h-title span { color: var(--gold-bright); }

.h-sub { 
    color: rgba(255, 255, 255, 0.82); 
    font-weight: 400; 
    margin: 18px 0 25px; 
    font-size: 0.98rem; 
    line-height: 1.65; 
    max-width: 620px;
}

.h-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.chip { 
    background: rgba(255,255,255,0.08); 
    border: 1px solid rgba(255,255,255,0.18); 
    padding: 7px 14px; 
    font-size: 0.72rem; 
    color: rgba(255,255,255,0.9); 
    border-radius: 6px; 
    font-weight: 600; 
    backdrop-filter: blur(5px);
}
.chip.font-gold { 
    border-color: var(--gold-primary); 
    color: var(--gold-bright); 
    background: rgba(197,160,89,0.2); 
}

.h-price-box .price-lbl { 
    font-size: 0.72rem; 
    color: rgba(255,255,255,0.6); 
    letter-spacing: 0.15em; 
    display: block; 
    margin-bottom: 2px; 
    font-weight: 700; 
}

.h-price-box .price-val { 
    font-family: var(--sans-font); 
    font-size: clamp(2.4rem, 4vw, 3.6rem); 
    color: var(--gold-bright); 
    font-weight: 800; 
    letter-spacing: -0.5px; 
}
.h-price-box .price-val small { font-size: 1.1rem; font-weight: 500; opacity: 0.8; }

/* Hero Form Box */
.hero-form-box {
    background: rgba(15, 35, 60, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 35px 28px;
    border-radius: 12px;
    color: var(--white-base);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.form-header h3 {
    font-family: var(--sans-font);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--gold-bright);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.form-header p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
    line-height: 1.4;
}

.h-form-group { margin-bottom: 18px; }
.h-form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}

.h-form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    font-family: var(--sans-font);
    font-size: 0.88rem;
    border-radius: 6px;
    color: var(--white-base);
    transition: all 0.25s;
    font-weight: 500;
}

.h-form-group input::placeholder { color: rgba(255, 255, 255, 0.4); }
.h-form-group input:focus {
    border-color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 12px rgba(244, 211, 147, 0.25);
}

.h-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #B38E46 100%);
    color: var(--white-base);
    font-weight: 800;
    border: none;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.h-submit-btn:hover {
    background: var(--gold-bright);
    color: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(244, 211, 147, 0.4);
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-primary { background: var(--gold-primary); color: var(--white-base); box-shadow: 0 4px 15px rgba(197,160,89,0.3); border: none; }
.btn-primary:hover { background: var(--gold-bright); color: var(--navy-deep); }
.btn-secondary { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: var(--white-base); }
.btn-secondary:hover { background: var(--white-base); color: var(--navy-deep); }

/* Stats Ribbon */
.stats-strip {
    background: var(--navy-deep);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item { padding: 35px 20px; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.05); }
.stat-num { font-family: var(--sans-font); font-size: 2.4rem; color: var(--gold-bright); font-weight: 800; letter-spacing: -0.5px; }
.stat-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.45); letter-spacing: 0.15em; margin-top: 6px; font-weight: 700; }

/* About Section */
.about-sec { padding: 100px 6%; background: var(--white-base); }
.about-container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }

.about-img-box {
    position: relative;
    background: var(--navy-light);
    aspect-ratio: 1/1.1;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(11, 30, 51, 0.06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--navy-medium);
    padding: 16px 20px; text-align: center; color: var(--white-base);
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(21, 50, 84, 0.2);
    z-index: 10;
}

.about-badge .ab-num { font-family: var(--sans-font); font-size: 2.2rem; line-height: 1; font-weight: 800; color: var(--gold-bright); }
.about-badge .ab-lbl { font-size: 0.55rem; letter-spacing: 0.1em; font-weight: 700; opacity: 0.8; }

.about-text-box h2 { font-family: var(--sans-font); font-size: 2.6rem; line-height: 1.2; font-weight: 800; color: var(--navy-deep); letter-spacing: -0.5px; }
.about-text-box h2 span { color: var(--gold-primary); }
.divider-bar { width: 50px; height: 3px; background: var(--gold-primary); margin: 18px 0 22px; }
.divider-bar.center { margin: 18px auto 25px; }

.rera-info-box { background: var(--navy-light); padding: 24px; margin: 25px 0; display: flex; flex-direction: column; gap: 10px; border-left: 4px solid var(--navy-medium); border-radius: 4px; }
.rera-row { font-size: 0.88rem; color: var(--text-main); display: flex; gap: 12px; }
.rera-row strong { color: var(--text-muted); font-size: 0.7rem; width: 110px; letter-spacing: 0.05em; font-weight: 700; }
.rera-row span { color: var(--navy-deep); font-weight: 700; }
.dot { width: 6px; height: 6px; background: var(--gold-primary); border-radius: 50%; display: inline-block; margin-top: 8px; }

.feature-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 35px; font-size: 0.9rem; color: var(--navy-medium); font-weight: 600; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-gold-action { background: var(--navy-deep); color: var(--white-base); font-weight: 700; }
.btn-gold-action:hover { background: var(--gold-primary); }
.btn-outline { border: 2px solid var(--navy-deep); color: var(--navy-deep); background: transparent; font-weight: 700; }
.btn-outline:hover { background: var(--navy-light); }
.btn-whatsapp { background: var(--whatsapp-green); color: var(--white-base); font-weight: 700; }

/* Pricing Section */
.price-sec { background: var(--navy-deep); padding: 100px 6%; }
.price-header h2.light { color: var(--white-base); font-family: var(--sans-font); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.5px; }
.price-header h2.light span { color: var(--gold-bright); }
.price-header .sub-text { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-top: 6px; }

.table-container { overflow-x: auto; margin-top: 40px; background: rgba(255, 255, 255, 0.03); padding: 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.price-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.price-table th { background: rgba(255,255,255,0.04); color: var(--gold-bright); text-align: left; padding: 18px; font-size: 0.7rem; letter-spacing: 0.15em; border-bottom: 1px solid rgba(255,255,255,0.1); text-transform: uppercase; font-weight: 700; }
.price-table td { padding: 18px; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; font-weight: 500; }
.price-table tr:hover td { background: rgba(255, 255, 255, 0.03); }
.unit-tag { background: rgba(197,160,89,0.15); border: 1px solid rgba(197,160,89,0.3); color: var(--gold-bright); padding: 5px 12px; font-size: 0.7rem; font-weight: 700; border-radius: 3px; }

.gold-text { color: var(--gold-bright); font-family: var(--sans-font); font-size: 1.65rem; font-weight: 800; }
.btn-table { display: inline-block; background: var(--gold-primary); color: var(--white-base); border: none; font-weight: 700; font-size: 0.7rem; padding: 8px 18px; text-decoration: none; border-radius: 4px; cursor: pointer; }
.btn-table:hover { background: var(--gold-bright); color: var(--navy-deep); }
.price-actions { display: flex; justify-content: center; gap: 15px; margin-top: 45px; flex-wrap: wrap; }
.font-dark { color: var(--white-base) !important; }

/* Amenities Grid Layout */
.amenities-sec { padding: 100px 6%; background: var(--navy-light); }
.sec-heading.center { text-align: center; }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 25px; margin-top: 45px; }
.amen-card { background: var(--white-base); padding: 40px 25px; text-align: center; border-radius: 6px; border: 1px solid rgba(21, 50, 84, 0.05); transition: all 0.3s; }
.amen-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(11, 30, 51, 0.08); border-color: rgba(197,160,89,0.4); }
.amen-card .ico { font-size: 2.4rem; margin-bottom: 15px; }
.amen-card .title { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.05em; color: var(--navy-deep); }

/* Location Section */
.location-sec { padding: 100px 6%; background: var(--white-base); }
.location-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.map-box { height: 420px; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(11, 30, 51, 0.1); border: 1px solid rgba(21, 50, 84, 0.1); }
.landmarks-box { padding: 20px; background: var(--navy-light); border-radius: 8px; border-left: 5px solid var(--gold-primary); }
.landmarks-box h3 { font-size: 1.4rem; color: var(--navy-deep); font-weight: 700; margin-bottom: 20px; }
.landmarks-list { list-style: none; }
.landmarks-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 18px; }
.landmarks-list li:last-child { margin-bottom: 0; }
.lm-icon { font-size: 1.5rem; background: var(--white-base); padding: 8px; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.landmarks-list strong { color: var(--navy-deep); font-size: 0.95rem; display: block; }
.landmarks-list p { color: var(--text-muted); font-size: 0.82rem; }

/* Spaces Showcase */
.gallery-sec { padding: 100px 6%; background: var(--white-base); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.gallery-card { border: 1px solid rgba(21, 50, 84, 0.08); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.gallery-img-box { width: 100%; aspect-ratio: 4/3; background: var(--navy-light); overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.gallery-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-card:hover .gallery-img-box img { transform: scale(1.05); }
.gallery-info { padding: 20px; background: var(--white-base); }
.gallery-info h4 { font-size: 1.1rem; color: var(--navy-deep); font-weight: 700; margin-bottom: 6px; }
.gallery-info p { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* Floor Blueprints */
.plans-sec { padding: 100px 6%; background: var(--navy-light); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.plan-card { border: 1px solid rgba(21, 50, 84, 0.08); border-radius: 6px; overflow: hidden; cursor: pointer; transition: all 0.3s; background: var(--white-base); }
.plan-card:hover { border-color: var(--gold-primary); box-shadow: 0 12px 30px rgba(11,30,51,0.06); }
.plan-img-box { width: 100%; aspect-ratio: 4/3; background: var(--navy-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.plan-img-box img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.plan-footer { padding: 18px; display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 800; background: #E9EFF5; color: var(--navy-deep); }
.plan-footer .highlight { color: var(--gold-primary); }

/* Enquiry Footer Block */
.enquiry-section { background: linear-gradient(135deg, #0B1E33 0%, #153254 100%); padding: 100px 6%; }
.enquiry-container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start; }
.bullets-list { list-style: none; margin: 25px 0 35px; }
.bullets-list li { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; font-weight: 500; }
.bullets-list li::before { content: "✓"; color: var(--gold-bright); font-weight: 800; }
.quick-contacts { display: flex; flex-direction: column; gap: 12px; }
.contact-link { text-decoration: none; font-size: 1.5rem; color: var(--gold-bright); font-weight: 700; }

.enquiry-form-card { background: var(--white-base); padding: 45px 35px; border-radius: 8px; box-shadow: 0 25px 55px rgba(11,30,51,0.25); border-top: 5px solid var(--gold-primary); }
.enquiry-form-card h3 { font-family: var(--sans-font); font-size: 1.9rem; font-weight: 700; color: var(--navy-deep); letter-spacing: -0.5px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group label { display: block; font-size: 0.68rem; font-weight: 700; color: var(--navy-medium); margin-bottom: 8px; letter-spacing: 0.05em; }
.form-group input, .form-group select { width: 100%; padding: 14px 16px; background: var(--navy-light); border: 1px solid rgba(21, 50, 84, 0.08); outline: none; font-family: var(--sans-font); font-size: 0.9rem; border-radius: 4px; color: var(--navy-deep); font-weight: 500; }
.form-group input:focus, .form-group select:focus { border-color: var(--gold-primary); background: var(--white-base); }
.submit-btn { width: 100%; padding: 16px; background: var(--navy-deep); color: var(--white-base); font-weight: 700; border: none; font-size: 0.8rem; letter-spacing: 0.05em; border-radius: 4px; cursor: pointer; transition: background 0.25s; margin-top: 10px; }
.submit-btn:hover { background: var(--gold-primary); }

/* Footer */
.footer { background: var(--white-base); padding: 70px 6% 40px; color: var(--text-muted); font-size: 0.82rem; border-top: 1px solid rgba(21, 50, 84, 0.08); }
.footer-top-row { display: grid; grid-template-columns: 1.3fr 1fr 0.8fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid rgba(21, 50, 84, 0.06); }
.rb-title { font-size: 0.68rem; font-weight: 700; color: var(--navy-deep); letter-spacing: 0.15em; margin-bottom: 14px; text-transform: uppercase; }
.footer-top-row p { margin-bottom: 8px; line-height: 1.7; font-weight: 500; }
.footer-bottom-row { text-align: center; padding-top: 30px; color: var(--text-muted); font-size: 0.78rem; font-weight: 500; }

/* Mobile Adjustments */
@media (max-width: 950px) {
    .topbar { padding: 0 4%; height: 70px; }
    .logo .logo-name { font-size: 1.25rem; }
    .logo .logo-loc { font-size: 0.48rem; }
    .tb-num { font-size: 0.8rem; }
    .cta-enquire { padding: 8px 14px; font-size: 0.68rem; }
    .nav-links { display: none; }
    .hero { padding-top: 100px; padding-bottom: 50px; }
    .hero-container-flex { grid-template-columns: 1fr; gap: 35px; }
    .about-container, .enquiry-container, .footer-top-row, .location-container { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}