<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
/* ===== BASIC RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #ffffff;
}

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== AUTHORITY HERO ===== */
.hero-authority {
    position: relative;
    height: 85vh;
    background-image: url("../images/hero-infrastructure.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 45, 0.75);
}

.hero-content {
    position: relative;
    color: #ffffff;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #0b1c2d;
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

/* LOGO */
.logo a {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #0b1c2d;
    letter-spacing: 1px;
}

/* NAVIGATION */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.main-nav ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #f4a300;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background-color: #f7f9fc; /* light professional background */
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.about-intro {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
}

.about p {
    font-size: 16px;
    margin-bottom: 18px;
    max-width: 950px;
}

/* ===== CAPABILITIES (AUTHORITY STYLE) ===== */
.capabilities-authority {
    padding: 90px 0;
    background-color: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 34px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.section-subtitle {
    font-size: 18px;
    max-width: 850px;
    margin: 0 auto 50px;
    color: #555;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.capability-card {
    background-color: #f7f9fc;
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.capability-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.capability-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.capability-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* ===== WHY AASHVIERA SECTION ===== */
.why-aashviera {
    padding: 80px 0;
    background-color: #0b1c2d;
    color: #ffffff;
}

.why-aashviera h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 6px;
}

.why-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f4a300;
}

.why-item p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: 80px 0;
    background-color: #ffffff;
}

.projects h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.projects-intro {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
}

.projects p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 950px;
}

/* ===== ENGINEERING INSIGHTS SECTION ===== */
.insights {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.insights h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.insights-intro {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.insight-box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #0b1c2d;
}

.insight-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0b1c2d;
}

.insight-box p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== CALL TO ACTION SECTION ===== */
.cta {
    padding: 80px 0;
    background-color: #f4a300;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #000;
}

.cta-text {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #000;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #0b1c2d;
    color: #ffffff;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: #f4a300;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
}

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero {
    background-color: #0b1c2d;
    color: #ffffff;
    padding: 80px 0;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    max-width: 800px;
}

/* ===== ABOUT CORE CONTENT ===== */
.about-core {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-core h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.about-core h3 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.about-core p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 950px;
}

.about-core .lead {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 900px;
}

/* ===== ABOUT VALUES & GOVERNANCE ===== */
.about-values {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.about-values h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.values-intro {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #f4a300;
}

.value-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.value-box p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== ABOUT FUTURE DIRECTION ===== */
.about-future {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-future h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.future-intro {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 900px;
}

.about-future p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 950px;
}

/* ===== BRIDGE & HIGHWAY CORE CONTENT ===== */
.capability-core {
    padding: 80px 0;
    background-color: #ffffff;
}

.capability-core h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.capability-core .lead {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 900px;
}

.capability-core p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 950px;
}

/* ===== EXECUTION SCOPE ===== */
.execution-scope {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.execution-scope h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.scope-intro {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
}

.scope-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.scope-list li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ===== QHSE SECTION ===== */
.qhse {
    padding: 80px 0;
    background-color: #ffffff;
}

.qhse h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.qhse-intro {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
}

.qhse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.qhse-box {
    background-color: #f7f9fc;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #0b1c2d;
}

.qhse-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.qhse-box p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== CAPABILITY CTA ===== */
.capability-cta {
    padding: 80px 0;
    background-color: #0b1c2d;
    color: #ffffff;
    text-align: center;
}

.capability-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.capability-cta .cta-intro {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.capability-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RE CORE TECHNICAL POSITIONING ===== */
.re-core {
    padding: 80px 0;
    background-color: #ffffff;
}

.re-core h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.re-core .lead {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 900px;
}

.re-core p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 950px;
}

/* ===== RE EXECUTION METHODOLOGY ===== */
.re-methodology {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.re-methodology h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.method-intro {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
}

.method-steps {
    margin-bottom: 30px;
    padding-left: 20px;
}

.method-steps li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ===== RE QUALITY, SAFETY & MATERIAL CONTROLS ===== */
.re-qc {
    padding: 80px 0;
    background-color: #ffffff;
}

.re-qc h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.qc-intro {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
}

.re-qc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.re-qc-box {
    background-color: #f7f9fc;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #f4a300;
}

.re-qc-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.re-qc-box p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== RE PROJECT INTEGRATION CTA ===== */
.re-cta {
    padding: 80px 0;
    background-color: #0b1c2d;
    color: #ffffff;
    text-align: center;
}

.re-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.re-cta .cta-intro {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.re-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PRECAST & SAFETY CORE CONTENT ===== */
.precast-core {
    padding: 80px 0;
    background-color: #ffffff;
}

.precast-core h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.precast-core .lead {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 900px;
}

.precast-core p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 950px;
}

/* ===== PRECAST EXECUTION SCOPE ===== */
.precast-scope {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.precast-scope h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.precast-scope .scope-intro {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
}

.precast-scope .scope-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.precast-scope .scope-list li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ===== PRECAST CTA ===== */
.precast-cta {
    padding: 80px 0;
    background-color: #0b1c2d;
    color: #ffffff;
    text-align: center;
}

.precast-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.precast-cta .cta-intro {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PROJECTS EXPERIENCE OVERVIEW ===== */
.projects-overview {
    padding: 80px 0;
    background-color: #ffffff;
}

.projects-overview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.projects-overview .lead {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 900px;
}

.projects-overview p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 950px;
}

/* ===== PROJECT CATEGORIES ===== */
.projects-categories {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.projects-categories h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.categories-intro {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #0b1c2d;
}

.category-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.category-box p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== PROJECTS CTA ===== */
.projects-cta {
    padding: 80px 0;
    background-color: #0b1c2d;
    color: #ffffff;
    text-align: center;
}

.projects-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.projects-cta .cta-intro {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.projects-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ENGINEERING INSIGHTS CORE ===== */
.insights-core {
    padding: 80px 0;
    background-color: #ffffff;
}

.insights-core h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.insights-core .lead {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.insight-card {
    background-color: #f7f9fc;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #0b1c2d;
}

.insight-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.insight-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== INSIGHTS CTA ===== */
.insights-cta {
    padding: 80px 0;
    background-color: #0b1c2d;
    color: #ffffff;
    text-align: center;
}

.insights-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.insights-cta .cta-intro {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.insights-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT PAGE ===== */
.contact-core {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-core h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.contact-core .lead {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-box {
    background-color: #f7f9fc;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #f4a300;
}

.contact-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.contact-box p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    max-width: 900px;
    color: #555;
}

/* ===== COMPANY IDENTITY ===== */
.company-identity {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.company-identity h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.identity-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #f4a300;
}

.identity-box h4 {
    margin-bottom: 10px;
    color: #0b1c2d;
}

/* ===== NAVIGATION DROPDOWN (FINAL, GAP-FREE FIX) ===== */

.site-header {
    position: relative;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;          /* tightly attached */
    left: 0;

    background-color: #ffffff;
    min-width: 280px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 4px;

    z-index: 9999;
}

/* ===== DROPDOWN (CLICK-BASED, FINAL) ===== */

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background-color: #ffffff;
    min-width: 280px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 4px;

    z-index: 9999;
}

.dropdown.open > .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 20px;

    background-color: #ffffff;
    color: #0b1c2d;
    font-size: 14px;
    text-decoration: none;

    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #f7f7f7;
    border-left: 4px solid #f4a300;
    padding-left: 16px;
}

/* ===== HARD OVERRIDE FOR DROPDOWN MENU ===== */

/* main menu stays horizontal */
.main-nav > ul {
    display: flex;
}

/* submenu MUST NOT inherit flex */
.dropdown-menu {
    display: none !important;
    flex-direction: column !important;
    position: absolute;
    top: 100%;
    left: 0;

    background-color: #ffffff;
    min-width: 280px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 4px;

    z-index: 9999;
}

/* show only when JS adds class */
.dropdown.open > .dropdown-menu {
    display: block !important;
}

.dropdown-toggle .arrow {
    font-size: 12px;
    margin-left: 6px;
}

.dropdown-toggle .arrow {
    pointer-events: none;
}

/* ===== SCROLL FADE-IN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOGO STYLING ===== */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-wrap img {
    width: 48px;
    height: 48px;
    border-radius: 50%;           /* keeps round logo perfect */
    object-fit: contain;
    background-color: #ffffff;   /* clean contrast if logo is transparent */
    padding: 4px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #0b1c2d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* HEADER LAYOUT */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

/* LEFT: LOGO + NAME */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
}

.site-name {
    font-weight: 800;
    font-size: 23px;
    letter-spacing: 1.0px;
}

/* CENTER MENU */
.header-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.header-nav a,
.dropdown-title {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    cursor: pointer;
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
}

.dropdown-content a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

/* RIGHT ICONS */
.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.search-icon,
.menu-icon {
    font-size: 30px;
    cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: #ffffff;
        width: 100%;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,28,45,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.search-overlay.active {
    display: flex;
}

.search-box input {
    width: 90%;
    max-width: 500px;
    padding: 16px 20px;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 4px;
}

/* HEADER BASE */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: #fff;
    position: relative;
}

/* LOGO */
.logo img {
    height: 60px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

/* RIGHT ACTIONS */
.nav-actions {
    display: flex;
    gap: 16px;
}

.search-btn,
.menu-toggle {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* HIDE HAMBURGER ON DESKTOP */
.menu-toggle {
    display: none;
}

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    top: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* MOBILE */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* ===== NAV LINK HOVER ===== */
.header-nav a:hover,
.dropdown-title:hover {
    color: #c18b2c;           /* gold accent */
}

/* ===== ACTIVE PAGE ===== */
.header-nav a.active {
    color: #c18b2c;
    font-weight: 600;
    border-bottom: 2px solid #c18b2c;
    padding-bottom: 4px;
}

/* ===== DROPDOWN HOVER ===== */
.dropdown-content a:hover {
    background-color: #f6f6f6;
    color: #c18b2c;
}

/* ===== DROPDOWN ACTIVE ITEM ===== */
.dropdown-content a.active {
    background-color: #fff4e0;
    font-weight: 600;
    color: #c18b2c;
}

.search-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

.search-box input {
  width: 80%;
  max-width: 600px;
  padding: 18px 22px;
  font-size: 20px;
  border-radius: 6px;
}

/* ===== ENTERPRISE FULL-WIDTH SEARCH OVERLAY ===== */

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 28, 45, 0.92);
    backdrop-filter: blur(4px);
    z-index: 9999;

    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 90px;
}

.search-overlay.active {
    display: flex;
}

.search-overlay input {
    width: 75%;
    max-width: 900px;
    padding: 18px 60px 18px 22px;
    font-size: 20px;
    font-weight: 500;

    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    outline: none;
}

.search-overlay input::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-overlay input:focus {
    background: rgba(255,255,255,0.12);
    border-color: #f4a300;
}

.close-search {
    position: absolute;
    right: 40px;
    top: 95px;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    opacity: 0.8;
}

.close-search:hover {
    opacity: 1;
}

#searchResults {
  margin-top: 20px;
  max-width: 600px;
  width: 100%;
}

.search-result-item {
  padding: 14px 18px;
  background: rgba(255,255,255,0.95);
  color: #0b1c2d;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.search-result-item:hover {
  background: #f4a300;
  color: #000;
}

.site-name{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;letter-spacing:1px;}

/* ===== 2026 VISUAL SYSTEM ===== */
:root { --ink: #071c31; --ink-soft: #123754; --gold: #d69a2d; --sand: #f5f1e8; --mist: #f4f7f9; --line: #d9e1e6; }
html { scroll-behavior: smooth; }
body { font-family: "Segoe UI", Arial, sans-serif; color: #283847; }
.site-header { min-height: 82px; padding: 8px clamp(18px, 4vw, 56px); border-bottom: 1px solid rgba(7,28,49,.09); box-shadow: 0 4px 24px rgba(7,28,49,.05); }
.site-logo { width: 62px; height: 62px; }
.site-name { color: var(--ink); font-family: "Bebas Neue", "Segoe UI", sans-serif; font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: 1.4px; }
.nav-links { align-items: center; }
.header-nav a, .dropdown-title { color: var(--ink); font-weight: 650; letter-spacing: .01em; }
.header-nav a { padding: 8px 0; }
.header-nav a.active { border-bottom: 2px solid var(--gold); color: var(--ink); }
.search-icon, .menu-icon { color: var(--ink); font-size: 24px; }

.hero-authority { min-height: 690px; height: min(86vh, 850px); overflow: hidden; background-image: url("../images/hero-infrastructure.jpg"); background-position: center; }
.hero-authority::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,20,36,.93) 0%, rgba(4,20,36,.78) 43%, rgba(4,20,36,.26) 100%); z-index: 1; }
.hero-overlay { z-index: 2; background: linear-gradient(120deg, rgba(214,154,45,.16), transparent 45%); }
.hero-slide { position: absolute; inset: 0; display: grid; align-items: center; opacity: 0; transform: translateX(26px); transition: opacity .75s ease, transform .75s ease; pointer-events: none; z-index: 3; }
.hero-slide.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.hero-slide::before { content: ""; position: absolute; inset: 0; z-index: -1; background-position: center; background-size: cover; background-repeat: no-repeat; transform: scale(1.04); transition: transform 6.5s ease; }
.hero-slide.is-active::before { transform: scale(1); }
/* Add your files as images/hero-1.jpg, images/hero-2.jpg, and images/hero-3.jpg. */
.hero-slide:nth-of-type(1)::before { background-image: url("../images/hero-1.png"); }
.hero-slide:nth-of-type(2)::before { background-image: url("../images/hero-2.png"); }
.hero-slide:nth-of-type(3)::before { background-image: url("../images/hero-3.png"); }
.hero-content { margin: 0 auto; width: 90%; max-width: 1200px; }
.hero-eyebrow { color: #f4c56f; text-transform: uppercase; letter-spacing: .16em; font-size: .75rem !important; font-weight: 750; margin-bottom: 16px !important; }
.hero-content h1 { max-width: 900px; font-size: clamp(2.6rem, 5.2vw, 5.1rem); font-weight: 750; letter-spacing: -.045em; line-height: 1.03; margin-bottom: 22px; text-wrap: balance; }
.hero-content p:not(.hero-eyebrow) { max-width: 650px; color: rgba(255,255,255,.85); font-size: clamp(1rem, 1.6vw, 1.16rem); line-height: 1.75; }
.hero-actions { flex-wrap: wrap; gap: 13px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border-radius: 2px; font-weight: 750; letter-spacing: .01em; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.17); }
.btn-primary { background: var(--gold); color: #17212c; }
.btn-secondary { background: var(--ink); color: white; }
.hero-slider-controls { position: absolute; z-index: 4; bottom: 34px; left: 5%; right: 5%; display: flex; justify-content: space-between; align-items: center; }
.hero-dots { display: flex; gap: 9px; }
.hero-dot { width: 30px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.42); cursor: pointer; transition: background .25s, width .25s; }
.hero-dot.is-active { width: 52px; background: var(--gold); }
.hero-pause { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.55); background: rgba(7,28,49,.35); color: #fff; border-radius: 50%; cursor: pointer; }

.capabilities-authority, .projects, .insights, .why-aashviera, .cta, .about, .about-core, .about-values, .about-future, .capability-core, .execution-scope, .qhse, .capability-cta, .re-core, .re-methodology, .re-qc, .re-cta, .precast-core, .precast-scope, .precast-cta, .projects-overview, .projects-categories, .projects-cta, .insights-core, .insights-cta, .contact-core, .company-identity { padding: clamp(64px, 8vw, 112px) 0; }
.section-title, .projects h2, .insights h2, .why-aashviera h2, .cta h2, .about h2, .about-core h2, .about-values h2, .about-future h2, .capability-core h2, .execution-scope h2, .qhse h2, .re-core h2, .re-methodology h2, .re-qc h2, .precast-core h2, .precast-scope h2, .projects-overview h2, .projects-categories h2, .insights-core h2, .contact-core h2, .company-identity h2 { color: var(--ink); font-size: clamp(2rem, 3vw, 3rem); line-height: 1.15; letter-spacing: -.035em; }
.capabilities-authority { background: var(--mist); }
.capability-card, .insight-box, .value-box, .qhse-box, .re-qc-box, .category-box, .insight-card, .contact-box, .identity-box { border: 1px solid var(--line); border-radius: 5px; box-shadow: 0 7px 22px rgba(7,28,49,.045); }
.capability-card { background: #fff; text-align: left; padding: 35px 28px; }
.capability-icon { font-size: 2rem; }
.why-aashviera, .capability-cta, .re-cta, .precast-cta, .projects-cta, .insights-cta { background: linear-gradient(135deg, #061a2e, #123d5b); }
.why-item { border: 1px solid rgba(255,255,255,.12); border-radius: 5px; background: rgba(255,255,255,.055); }
.cta { background: var(--sand); }
.cta .btn-primary { background: var(--ink); color: white; }
.site-footer { background: #061a2e; }

@media (max-width: 900px) { .site-header { padding: 8px 18px; } .header-nav { gap: 0; } .nav-links { padding: 18px; gap: 16px; } .site-logo { width: 52px; height: 52px; } .hero-authority { min-height: 620px; } .hero-content h1 br { display: none; } .hero-slider-controls { bottom: 20px; } .dropdown-content { position: static; box-shadow: none; } }
@media (max-width: 520px) { .site-name { font-size: 1.1rem; } .hero-authority { min-height: 650px; } .hero-content { width: 88%; } .hero-actions { flex-direction: column; align-items: stretch; } .btn { width: 100%; } .footer-container { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }

/* ===== EXPERIENCE REFINEMENT ===== */
body::selection { background: #d69a2d; color: #061a2e; }
.container { width: min(90%, 1240px); }
.site-header { transition: min-height .25s ease, box-shadow .25s ease, background-color .25s ease; }
.site-header.is-scrolled { min-height: 70px; background: rgba(255,255,255,.96); box-shadow: 0 10px 28px rgba(7,28,49,.1); }
.header-nav a, .dropdown-title { position: relative; }
.header-nav a:not(.active)::after, .dropdown-title::after { content: ""; position: absolute; bottom: 1px; left: 0; width: 100%; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--gold); transition: transform .25s ease; }
.header-nav a:hover::after, .dropdown-title:hover::after { transform: scaleX(1); transform-origin: left; }
.dropdown-content { border: 1px solid var(--line); border-radius: 8px; padding: 8px; overflow: hidden; }
.dropdown-content a { border-radius: 4px; }

.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(92px, 13vw, 160px) 0 clamp(72px, 10vw, 110px); background: linear-gradient(115deg, #061a2e 0%, #0d3653 65%, #16516c 100%); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .26; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(90deg, black, transparent 86%); }
.page-hero::after { content: ""; width: 440px; height: 440px; border-radius: 50%; position: absolute; right: -130px; bottom: -230px; z-index: -1; border: 1px solid rgba(214,154,45,.65); box-shadow: 0 0 0 44px rgba(214,154,45,.08), 0 0 0 88px rgba(214,154,45,.045); }
.page-hero h1 { max-width: 850px; color: #fff; font-size: clamp(2.65rem, 5.5vw, 5rem); line-height: 1.03; letter-spacing: -.05em; margin-bottom: 20px; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.75; }

.trust-strip { background: var(--gold); color: var(--ink); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; gap: 15px; align-items: center; padding: 25px clamp(17px, 3vw, 36px); border-right: 1px solid rgba(7,28,49,.22); }
.trust-item:last-child { border-right: 0; }
.trust-number { color: rgba(7,28,49,.62); font-family: "Bebas Neue", sans-serif; font-size: 1.6rem; letter-spacing: .08em; }
.trust-item strong, .trust-item span:not(.trust-number) { display: block; }
.trust-item strong { font-size: 1rem; letter-spacing: .01em; }
.trust-item span:not(.trust-number) { margin-top: 1px; font-size: .83rem; line-height: 1.35; }

.section-subtitle, .projects-intro, .insights-intro, .values-intro, .scope-intro, .qhse-intro, .qc-intro, .categories-intro, .lead, .future-intro { color: #526473; line-height: 1.75; }
.projects, .about-core, .capability-core, .re-core, .precast-core, .projects-overview, .insights-core, .contact-core { position: relative; }
.projects .container, .about-core .container, .capability-core .container, .re-core .container, .precast-core .container, .projects-overview .container, .insights-core .container, .contact-core .container { max-width: 1000px; }
.projects p, .about-core p, .capability-core p, .re-core p, .precast-core p, .projects-overview p, .insights-core p, .contact-core p { color: #526473; line-height: 1.82; }
.about-core h3, .capability-core h3, .re-core h3, .precast-core h3, .projects-overview h3 { margin-top: 38px; font-size: 1.25rem; color: var(--ink); }
.capability-card, .insight-box, .value-box, .qhse-box, .re-qc-box, .category-box, .insight-card, .contact-box, .identity-box { position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.capability-card::before, .insight-box::before, .value-box::before, .qhse-box::before, .re-qc-box::before, .category-box::before, .insight-card::before, .contact-box::before, .identity-box::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.capability-card:hover, .insight-box:hover, .value-box:hover, .qhse-box:hover, .re-qc-box:hover, .category-box:hover, .insight-card:hover, .contact-box:hover, .identity-box:hover { transform: translateY(-7px); box-shadow: 0 18px 38px rgba(7,28,49,.12); border-color: rgba(214,154,45,.5); }
.capability-card:hover::before, .insight-box:hover::before, .value-box:hover::before, .qhse-box:hover::before, .re-qc-box:hover::before, .category-box:hover::before, .insight-card:hover::before, .contact-box:hover::before, .identity-box:hover::before { transform: scaleX(1); }
.capability-card h3, .insight-box h3, .value-box h3, .qhse-box h3, .re-qc-box h3, .category-box h3, .insight-card h3, .contact-box h3 { letter-spacing: -.018em; }
.why-item { transition: transform .3s ease, background-color .3s ease; }
.why-item:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.why-item h3 { color: #f4c56f; }
.site-footer { padding-top: 76px; }
.footer-brand h3 { font-family: "Bebas Neue", sans-serif; letter-spacing: .08em; font-size: 1.55rem; }
.footer-links a { color: rgba(255,255,255,.72) !important; transition: color .2s ease; }
.footer-links a:hover { color: #f4c56f !important; }
.footer-bottom { color: rgba(255,255,255,.7); padding: 20px 0; }
.reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease, box-shadow .3s ease, background-color .3s ease, border-color .3s ease !important; }
.reveal-on-scroll.is-revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } .trust-item { border-right: 0; border-bottom: 1px solid rgba(7,28,49,.2); } .trust-item:last-child { border-bottom: 0; } .page-hero::after { width: 280px; height: 280px; right: -95px; bottom: -145px; } }

/* ===== PREMIUM SEARCH DIALOG ===== */
.search-overlay { padding: 24px; align-items: center; justify-content: center; background: rgba(3, 15, 27, .82); backdrop-filter: blur(13px) saturate(120%); }
.search-overlay::before { content: ""; position: absolute; width: min(78vw, 920px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(214,154,45,.2), transparent 66%); filter: blur(22px); pointer-events: none; }
.search-box { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-start; width: min(100%, 780px); min-height: 190px; padding: 36px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: linear-gradient(145deg, rgba(20,53,77,.92), rgba(5,23,40,.94)); box-shadow: 0 28px 85px rgba(0,0,0,.43); }
.search-box::before { content: "SEARCH AASHVIERA"; display: block; margin-bottom: 14px; color: #f4c56f; font-size: .71rem; font-weight: 750; letter-spacing: .18em; }
.search-overlay input, .search-box input { width: 100%; max-width: none; padding: 18px 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; background: rgba(255,255,255,.08); color: #fff; font-size: clamp(1rem, 2vw, 1.2rem); transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.search-overlay input:focus { border-color: #f4c56f; background: rgba(255,255,255,.13); box-shadow: 0 0 0 4px rgba(214,154,45,.14); }
.close-search { z-index: 2; top: 28px; right: 34px; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; background: rgba(255,255,255,.08); font-size: 1.35rem; transition: transform .2s ease, background-color .2s ease; }
.close-search:hover { transform: rotate(90deg); background: rgba(214,154,45,.24); }
#searchResults { max-width: none; margin-top: 12px; overflow: hidden; border-radius: 6px; }
.search-result-item { padding: 14px 18px; border-bottom-color: rgba(7,28,49,.08); font-weight: 650; transition: padding .2s ease, background-color .2s ease; }
.search-result-item:hover { padding-left: 24px; background: #f4c56f; }
@media (max-width: 520px) { .search-box { padding: 27px 20px; min-height: 170px; } .close-search { top: 17px; right: 17px; width: 38px; height: 38px; } }

/* ===== BRAND HEADER & PROJECT SHOWCASE ===== */
.site-header { position: sticky; overflow: visible; border-bottom: 0; background: rgba(255,255,255,.98); }
.site-header::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--gold), #f4c56f 34%, rgba(7,28,49,.08) 34%); }
.header-left { padding-left: 12px; border-left: 3px solid var(--gold); }
.site-logo { filter: drop-shadow(0 3px 5px rgba(7,28,49,.12)); }
.site-name { line-height: 1; }
.site-name::after { content: "ENGINEERING · EXECUTION · INTEGRITY"; display: block; margin-top: 5px; color: #607180; font-family: "Segoe UI", sans-serif; font-size: .53rem; font-weight: 750; letter-spacing: .13em; }
.nav-links > a:last-of-type { padding: 9px 14px; border: 1px solid var(--ink); border-radius: 3px; color: #fff; background: var(--ink); transition: background .2s ease, color .2s ease, transform .2s ease; }
.nav-links > a:last-of-type:hover { transform: translateY(-2px); color: var(--ink); background: var(--gold); border-color: var(--gold); }
.nav-links > a:last-of-type::after { display: none; }
.header-right { padding-left: 18px; border-left: 1px solid var(--line); }
.search-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #f0f4f6; font-size: 18px; transition: color .2s ease, background .2s ease; }
.search-icon:hover { color: white; background: var(--ink); }

.infrastructure-showcase { padding: clamp(68px, 9vw, 120px) 0; background: #edf3f5; }
.showcase-heading { display: grid; grid-template-columns: 1fr minmax(270px, .7fr); gap: 40px; align-items: end; margin-bottom: 36px; }
.section-kicker { margin-bottom: 12px; color: #b57714; font-size: .71rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.showcase-heading h2 { color: var(--ink); font-size: clamp(2.3rem, 4vw, 4.35rem); line-height: .99; letter-spacing: -.055em; }
.showcase-heading > p { margin: 0; color: #526473; line-height: 1.75; }
.showcase-gallery { display: grid; grid-template-columns: 1.12fr .88fr .88fr; grid-template-rows: 250px 250px; gap: 16px; }
.showcase-card { position: relative; min-height: 0; margin: 0; overflow: hidden; border-radius: 7px; background: var(--ink); box-shadow: 0 15px 28px rgba(7,28,49,.1); }
.showcase-featured { grid-row: 1 / 3; }
.showcase-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.25,1); }
.showcase-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,18,31,.84), transparent 58%); pointer-events: none; }
.showcase-card:hover img { transform: scale(1.08); }
.showcase-card figcaption { position: absolute; z-index: 1; right: 18px; bottom: 17px; left: 18px; color: white; font-size: .87rem; font-weight: 700; line-height: 1.35; }
.showcase-card figcaption span { display: inline-block; margin-right: 7px; color: #f4c56f; font-family: "Bebas Neue", sans-serif; font-size: 1.05rem; letter-spacing: .07em; }

.footer-container { grid-template-columns: 1.4fr .75fr 1.12fr; gap: clamp(28px, 6vw, 80px); }
.footer-brand p { color: rgba(255,255,255,.7); }
.footer-links h4, .footer-contact .footer-label { color: #f4c56f; font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-contact .footer-label { margin-bottom: 5px; }
.footer-contact a { color: rgba(255,255,255,.76); text-decoration: none; transition: color .2s ease; }
.footer-contact a:hover { color: #f4c56f; }
.footer-contact .footer-phone { color: #fff; font-size: 1.3rem; font-weight: 750; letter-spacing: -.025em; }
.footer-contact .footer-location { margin-top: 9px; color: #f4c56f; font-size: .88rem; }
.footer-bottom { margin-top: 22px; }
@media (max-width: 900px) { .showcase-heading { grid-template-columns: 1fr; gap: 18px; } .showcase-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 210px 210px; } .showcase-featured { grid-column: 1 / 3; grid-row: auto; } .footer-container { grid-template-columns: 1fr 1fr; } .footer-contact { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); } }
@media (max-width: 520px) { .header-left { padding-left: 8px; } .site-name::after { font-size: .46rem; } .header-right { padding-left: 9px; } .showcase-gallery { grid-template-columns: 1fr; grid-template-rows: 280px repeat(3, 220px); } .showcase-featured { grid-column: auto; } .footer-container { grid-template-columns: 1fr; } }

/* ===== PAGE OPENING & NAVIGATION TRANSITIONS ===== */
body { animation: page-enter .62s cubic-bezier(.2,.75,.25,1) both; }
@keyframes page-enter { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.page-transition { position: fixed; inset: 0; z-index: 10000; display: none; place-items: center; overflow: hidden; background: linear-gradient(125deg, #061a2e, #0d3653); pointer-events: none; }
.page-transition::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 40px 40px; }
.transition-mark { position: relative; display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(244,197,111,.7); border-radius: 50%; color: #f4c56f; font-family: "Bebas Neue", sans-serif; font-size: 2.2rem; letter-spacing: .03em; box-shadow: 0 0 0 12px rgba(244,197,111,.07); }
body.is-leaving { overflow: hidden; }
body.is-leaving .page-transition { display: grid; animation: transition-curtain-in .36s cubic-bezier(.77,0,.18,1) both; }
@keyframes transition-curtain-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { body { animation: none; } .page-transition { display: none; } }

/* ===== REFINED HEADER — CLEAN SINGLE-LINE LOCK-UP ===== */
.site-header { min-height: 76px; gap: 28px; padding: 10px clamp(18px, 4vw, 56px); background: rgba(255,255,255,.98); box-shadow: 0 4px 20px rgba(7,28,49,.055); }
.site-header::after { height: 1px; background: linear-gradient(90deg, var(--gold) 0 11%, rgba(7,28,49,.1) 11% 100%); }
.header-left { flex: 0 0 auto; gap: 10px; padding-left: 0; border-left: 0; }
.site-logo { width: 50px; height: 50px; filter: none; }
.site-name { color: #0a2740; font-family: "Segoe UI", Arial, sans-serif; font-size: clamp(.98rem, 1.55vw, 1.16rem); font-weight: 800; line-height: 1; letter-spacing: .095em; white-space: nowrap; }
.site-name::after { display: none; }
.header-nav { flex: 1; justify-content: center; }
.nav-links { gap: clamp(14px, 1.65vw, 27px); }
.header-nav a, .dropdown-title { color: #304555; font-size: .8rem; font-weight: 700; letter-spacing: .015em; white-space: nowrap; }
.header-nav a.active { color: var(--ink); border-bottom: 0; }
.header-nav a.active::after { transform: scaleX(1); background: var(--gold); }
.nav-links > a:last-of-type { padding: 10px 15px; border: 0; border-radius: 3px; background: var(--gold); color: #102333; box-shadow: 0 4px 10px rgba(214,154,45,.22); }
.nav-links > a:last-of-type:hover { background: #e9b453; color: #102333; box-shadow: 0 7px 15px rgba(214,154,45,.26); }
.header-right { flex: 0 0 auto; gap: 12px; padding-left: 0; border-left: 0; }
.search-icon { width: 34px; height: 34px; border: 1px solid #dbe4e8; background: #fff; color: var(--ink); font-size: 16px; }
.search-icon:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-icon { color: var(--ink); font-size: 23px; }
@media (max-width: 900px) { .site-header { min-height: 70px; gap: 14px; } .site-logo { width: 45px; height: 45px; } .header-nav { flex: 0 1 auto; } .nav-links { padding: 20px; } .nav-links > a:last-of-type { width: max-content; } }
@media (max-width: 520px) { .site-header { padding: 9px 14px; } .site-logo { width: 42px; height: 42px; } .site-name { font-size: .78rem; letter-spacing: .065em; } }
