@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
    --navy: #06294a;
    --navy-dark: #031b32;
    --navy-light: #0d4777;
    --gold: #b9873d;
    --gold-light: #d3a762;
    --cream: #faf8f3;
    --white: #ffffff;
    --text: #4d5660;
    --border: #e6e6e6;
    --shadow: 0 12px 35px rgba(6, 41, 74, 0.12);
    --radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--cream);
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 25px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary {
    color: var(--white);
    background: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    color: var(--navy);
    background: var(--white);
}

/* Header */

.topbar {
    color: var(--white);
    background: var(--navy-dark);
    font-size: 13px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 38px;
}

.topbar a:hover {
    color: var(--gold-light);
}

.topbar-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 82px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.brand-text strong {
    display: block;
    color: var(--navy);
    font-size: 19px;
    line-height: 1.15;
    font-weight: 900;
}

.brand-text small {
    display: block;
    margin-top: 3px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    position: relative;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
}

.nav-menu a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    border: 0;
    color: var(--navy);
    background: transparent;
    font-size: 27px;
    cursor: pointer;
}

/* Hero */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 620px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(3, 27, 50, 0.96), rgba(6, 41, 74, 0.76)),
        url("images/bhardwaj-logo.jpg") center / cover no-repeat;
    overflow: hidden;
}

.hero::after {
    position: absolute;
    right: -100px;
    bottom: -130px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(211, 167, 98, 0.25);
    border-radius: 50%;
    content: "";
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08;
    font-weight: 900;
}

.hero h1 em {
    color: var(--gold-light);
    font-style: normal;
}

.hero p {
    max-width: 610px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Cards */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card,
.feature-card,
.contact-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--gold);
    content: "";
}

.card-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-size: 27px;
}

.service-card h3,
.feature-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 21px;
}

.service-card p,
.feature-card p {
    font-size: 15px;
}

/* Split content */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.content-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-block h2 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
}

.content-block p {
    margin-bottom: 18px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 25px 0 30px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 29px;
    color: var(--navy);
    font-weight: 500;
}

.check-list li::before {
    position: absolute;
    top: 2px;
    left: 0;
    color: var(--gold);
    content: "✓";
    font-size: 20px;
    font-weight: 900;
}

.image-panel {
    position: relative;
    min-height: 390px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(6, 41, 74, 0.9), rgba(185, 135, 61, 0.5)),
        url("images/bhardwaj-logo.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
}

.image-panel::before {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 12px;
    content: "";
    z-index: -1;
}

/* Stats */

.stats {
    background: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    padding: 10px;
    color: var(--white);
    text-align: center;
}

.stat strong {
    display: block;
    color: var(--gold-light);
    font-size: 39px;
    font-weight: 900;
}

.stat span {
    font-size: 14px;
}

/* Page banner */

.page-banner {
    padding: 90px 0;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(rgba(3, 27, 50, 0.9), rgba(6, 41, 74, 0.85)),
        url("images/bhardwaj-logo.jpg") center / cover no-repeat;
}

.page-banner h1 {
    margin-bottom: 8px;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--gold-light);
}

/* Process */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-item {
    position: relative;
    padding: 25px 20px;
    text-align: center;
}

.process-number {
    display: grid;
    place-items: center;
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: var(--white);
    background: var(--gold);
    font-size: 20px;
    font-weight: 900;
}

.process-item h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 19px;
}

/* Contact */

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
}

.contact-info {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 23px;
    box-shadow: none;
}

.contact-card-icon {
    display: grid;
    flex: 0 0 45px;
    place-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-size: 20px;
}

.contact-card h3 {
    margin-bottom: 3px;
    color: var(--navy);
    font-size: 17px;
}

.contact-card p,
.contact-card a {
    color: var(--text);
    font-size: 14px;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--cream);
}

.contact-form h2 {
    margin-bottom: 22px;
    color: var(--navy);
    font-size: 29px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d9dde1;
    border-radius: 4px;
    outline: none;
    color: var(--text);
    background: var(--white);
    font: inherit;
}

.form-group textarea {
    min-height: 125px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-message {
    display: none;
    margin-top: 15px;
    color: #187443;
    font-size: 14px;
    font-weight: 700;
}

.map-box {
    display: grid;
    place-items: center;
    min-height: 300px;
    padding: 30px;
    color: var(--white);
    text-align: center;
    background: var(--navy);
}

.map-box h3 {
    margin-bottom: 10px;
    color: var(--gold-light);
}

/* CTA */

.cta {
    padding: 65px 0;
    color: var(--white);
    background: var(--navy-dark);
    text-align: center;
}

.cta h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 42px);
}

.cta p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */

.site-footer {
    color: rgba(255, 255, 255, 0.75);
    background: #021426;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    padding: 65px 0 45px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
}

.footer-brand strong {
    display: block;
    color: var(--white);
    font-size: 18px;
}

.site-footer h3 {
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 18px;
}

.site-footer p {
    max-width: 350px;
    font-size: 14px;
}

.footer-links {
    display: grid;
    gap: 8px;
    list-style: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact {
    display: grid;
    gap: 10px;
    font-size: 14px;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 13px;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; } .designed-by a { color: inherit; text-decoration: none; font-weight: 500; } .designed-by a:hover { text-decoration: underline; } /* Mobile */ @media (max-width: 767px) { .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; } }

/* Responsive */

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 82px;
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 20px;
        border: 1px solid var(--border);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border: 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .cards-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1140px);
    }

    .section {
        padding: 65px 0;
    }

    .topbar-content {
        justify-content: center;
        padding: 8px 0;
        text-align: center;
    }

    .topbar-details {
        justify-content: center;
        gap: 8px 15px;
    }

    .topbar-details span:first-child {
        display: none;
    }

    .navbar {
        min-height: 72px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .nav-menu {
        top: 72px;
    }

    .hero {
        min-height: 560px;
    }

    .hero p {
        font-size: 16px;
    }

    .cards-grid,
    .process-grid,
    .stats-grid,
    .footer-main,
    .form-row {
        grid-template-columns: 1fr;
    }

    .image-panel {
        min-height: 290px;
    }

    .contact-form {
        padding: 22px;
    }
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 142px;
    padding: 13px 17px;
    border-radius: 50px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.floating-btn:hover {
    color: #ffffff;
    transform: translateY(-4px);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

.call-btn {
    background: var(--gold);
}

.call-btn:hover {
    background: var(--gold-light);
}

@media (max-width: 600px) {
    .floating-actions {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-btn {
        min-width: 52px;
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn svg {
        width: 27px;
        height: 27px;
    }
}
