/* ============================================================
   1. PROFILE & GLASS CARD STYLES
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    background: #f4f7fc;
    color: #1f2a44;
    line-height: 1.5;
    padding: 0%;
}

/* profile container – mobile‑first, card style */
.profile-container {
    max-width: 680px;
    margin: 0 auto;
}

/* glassmorphic profile card */
.profile-glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(0px);
    border-radius: 40px;
    box-shadow:
        0 20px 35px -12px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.8rem 1.5rem;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s;
}

.profile-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #062b84, #59c135);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 20px -8px rgba(6, 43, 132, 0.25);
    border: 3px solid white;
    transition: all 0.2s;
}

.profile-image i {
    font-size: 3.2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.edit-icon {
    background: white;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #eef2fa;
}

.edit-icon:hover {
    background: #062b84;
    color: white;
    transform: scale(1.03);
}

.rating-badge {
    background: rgba(89, 193, 53, 0.12);
    padding: 6px 14px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.8rem;
    color: #2c6e2f;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rating-badge i {
    color: #f5b042;
}

/* STATUS BUTTONS (available / unavailable) */
.status-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #eef2f8;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    background: #f0f2f5;
}

.status-btn {
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
    background: white;
    border: 1px solid #dce5f0;
}

.status-btn.active-status {
    background: #062b84;
    color: white;
    border-color: #062b84;
}

.status-btn.available-active {
    background: #59c135;
    color: white;
    border-color: #59c135;
    box-shadow: 0 4px 10px rgba(89, 193, 53, 0.2);
}

.status-btn.unavailable-active {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    display: inline-block;
    margin-right: 6px;
}

.status-indicator.green {
    background: #59c135;
    box-shadow: 0 0 0 2px #59c13540;
}

.status-indicator.red {
    background: #dc3545;
    box-shadow: 0 0 0 2px #dc354540;
}

/* action tiles (modern settings style) */
.action-tile {
    background: white;
    border-radius: 24px;
    padding: 1rem 1.2rem;
    margin-bottom: 10px;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid #eef2f8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-tile:hover {
    transform: translateY(-3px);
    border-color: #59c135;
    box-shadow: 0 12px 22px -12px rgba(0, 0, 0, 0.1);
    background: #fefefe;
}

.tile-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tile-icon {
    width: 46px;
    height: 46px;
    background: #f0f4fa;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #062b84;
    font-size: 1.4rem;
    transition: 0.2s;
}

.action-tile:hover .tile-icon {
    background: rgba(6, 43, 132, 0.08);
    color: #59c135;
}

.tile-text h6 {
    font-weight: 700;
    margin-bottom: 2px;
    color: #121f3f;
}

.tile-text p {
    font-size: 0.7rem;
    color: #6f7e9b;
    margin-bottom: 0;
}

.tile-arrow i {
    color: #b9c4da;
    font-size: 1.2rem;
}

/* extra info cards */
.info-mini-card {
    background: white;
    border-radius: 26px;
    padding: 1rem;
    border: 1px solid #eef2f8;
    transition: 0.15s;
}

.badge-verified {
    background: #59c13510;
    color: #59c135;
    border-radius: 30px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.help-quick-card {
    background: linear-gradient(145deg, #ffffff, #fafdff);
}

.btn-gradient-save {
    background: linear-gradient(95deg, #062b84 0%, #59c135 100%);
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    color: white;
    transition: all 0.2s;
}

.btn-gradient-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px -6px #59c13570;
}

.btn-outline-cancel {
    border-radius: 50px;
    border: 1px solid #cfddee;
    background: transparent;
    padding: 10px 24px;
}

.social-share-icon {
    width: 44px;
    height: 44px;
    background: #f2f5f9;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: 0.2s;
    cursor: pointer;
    color: #2c3e66;
}

.social-share-icon:hover {
    transform: translateY(-4px);
    background: #062b84;
    color: white;
}

.settings-switch-lg .form-check-input:checked {
    background-color: #59c135;
    border-color: #59c135;
}

.footer-note {
    font-size: 0.7rem;
    text-align: center;
    color: #7c8aa8;
}

.logout-btn-final {
    background: linear-gradient(95deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 60px;
    padding: 14px;
    font-weight: 700;
    color: white;
    width: 100%;
    transition: 0.2s;
}

.logout-btn-final:hover {
    transform: scale(0.98);
    box-shadow: 0 8px 20px rgba(238, 90, 36, 0.25);
}

/* dark mode support */
body.dark-mode {
    background: #121826;
    color: #eef2ff;
}

body.dark-mode .profile-glass-card,
body.dark-mode .action-tile,
body.dark-mode .info-mini-card,
body.dark-mode .modal-content {
    background: #1e2538;
    border-color: #2e3a55;
    color: #eef2ff;
}

body.dark-mode .tile-icon {
    background: #252f44;
    color: #a7f0a0;
}

body.dark-mode .tile-text p,
body.dark-mode .footer-note {
    color: #a7b3ce;
}

body.dark-mode .edit-icon {
    background: #1f2a3e;
    color: white;
}

body.dark-mode .status-btn {
    background: #2a3448;
    border-color: #3f4a66;
    color: #eef2ff;
}

/* ============================================================
   2. BLOG & HERO SEARCH STYLES
   ============================================================ */
body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    background-color: #ffffff;
    color: #1a2a3f;
    line-height: 1.5;
    scroll-behavior: smooth;
    padding-bottom: 100px;
}

h1,
h2,
h3,
h4,
.heading-font {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* brand color variables */
:root {
    --primary-blue: #062b84;
    --primary-green: #59c135;
    --gray-50: #f9fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e9eef3;
    --gray-600: #5c6f87;
    --gray-900: #1e2a3e;
    --shadow-sm:
        0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
    --shadow-md:
        0 12px 28px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-hover:
        0 20px 32px -12px rgba(6, 43, 132, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.02);
}

/* subtle fade-in */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeUp 0.6s ease-out forwards;
}

.btn-outline-blue {
    background: transparent;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 60px;
    padding: 0.55rem 1.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-outline-blue:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.badge-category {
    background-color: rgba(89, 193, 53, 0.12);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    letter-spacing: -0.2px;
    display: inline-block;
}

.badge-blue-light {
    background-color: rgba(6, 43, 132, 0.08);
    color: var(--primary-blue);
    font-weight: 500;
}

/* Blog Cards */
.blog-card,
.featured-card {
    background: #ffffff;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    height: 100%;
}

.blog-card:hover,
.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: #e2f0dc;
}

.card-img-top {
    height: 210px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.03);
}

.blog-card .card-body,
.featured-card .card-body {
    padding: 1.6rem;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0 0.75rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    color: var(--gray-900);
}

.blog-excerpt {
    font-size: 0.85rem;
    color: #4a5b73;
    margin-bottom: 1.2rem;
}

.read-more {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.read-more i {
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--primary-green);
    gap: 10px;
}

/* Hero + glass morph */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafd 100%);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--gray-200);
}

.hero-search-wrapper {
    background: white;
    border-radius: 80px;
    padding: 6px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 0;
    max-width: 780px;
    margin: 0 auto;
}

.search-input-group {
    flex: 2;
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border-radius: 50px;
    padding: 0 18px;
    gap: 8px;
}

.search-input-group i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.search-input-group input {
    border: none;
    background: transparent;
    padding: 12px 0;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.filter-select {
    background: var(--gray-50);
    border: none;
    padding: 0 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-900);
    cursor: pointer;
    height: 46px;
}

.filter-select:focus {
    outline: none;
    box-shadow: none;
}

.hero-cta {
    background: var(--primary-green);
    border-radius: 50px;
    padding: 0 26px;
    font-weight: 600;
    border: none;
    color: white;
    transition: 0.2s;
    white-space: nowrap;
    height: 46px;
}

@media (max-width: 680px) {
    .hero-search-wrapper {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        gap: 12px;
    }

    .search-input-group,
    .filter-select,
    .hero-cta {
        width: 100%;
        border-radius: 60px;
        background: white;
        border: 1px solid #e9eef3;
    }

    .hero-cta {
        background: var(--primary-green);
        color: white;
        border: none;
        margin-top: 4px;
    }
}

/* categories pills */
.category-pill {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 40px;
    background: white;
    border: 1px solid var(--gray-200);
    font-weight: 500;
    font-size: 0.85rem;
    color: #2c3e50;
    transition: all 0.2s;
    cursor: pointer;
}

.category-pill:hover,
.category-pill.active-cat {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 43, 132, 0.15);
}

.category-pill.active-cat {
    background: var(--primary-blue);
    color: white;
}

/* no results */
.no-results-msg {
    text-align: center;
    padding: 2rem;
    background: #fafcff;
    border-radius: 28px;
}

/* ============================================================
   3. ABOUT PAGE STYLES
   ============================================================ */
body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
    padding-bottom: 100px;
}

:root {
    --primary-blue: #062b84;
    --primary-green: #59c135;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-900: #0f172a;
    --shadow-sm:
        0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
    --shadow-md:
        0 12px 28px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 32px -12px rgba(6, 43, 132, 0.12);
}

h1,
h2,
h3,
.heading-font {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

/* Fade-up animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1),
        transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary-blue);
    color: white;
    border-radius: 60px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
}

.btn-primary-custom:hover {
    background: #0a3b9e;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(6, 43, 132, 0.2);
    color: white;
}

.btn-outline-custom {
    border: 1.5px solid var(--primary-green);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 60px;
    padding: 0.7rem 1.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline-custom:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Cards & Glass */
.glass-card,
.mission-card,
.service-card,
.feature-card,
.team-card,
.review-card,
.stat-card,
.contact-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(0px);
    border-radius: 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
    height: 100%;
}

.glass-card:hover,
.mission-card:hover,
.service-card:hover,
.feature-card:hover,
.team-card:hover,
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: #d9f0cf;
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(89, 193, 53, 0.12);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

/* Hero */
.hero-about {
    background: linear-gradient(135deg, #ffffff 0%, #f4f9fe 100%);
    border-bottom: 1px solid var(--gray-200);
    padding: 4rem 0 3rem;
}

.hero-img {
    border-radius: 32px;
    box-shadow: var(--shadow-md);
}

/* Statistics counters */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

/* Floating navbar */
.floating-nav {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 0.25rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 1050;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 18px;
    border-radius: 40px;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 500;
    color: #5e6f8d;
}

.nav-item i {
    font-size: 1.3rem;
    margin-bottom: 3px;
}

.nav-item.active {
    background: var(--primary-blue);
    color: white;
}

.nav-item.active i {
    color: white;
}

.nav-item:hover:not(.active) {
    background: rgba(6, 43, 132, 0.08);
    color: var(--primary-blue);
}

@media (max-width: 550px) {
    .floating-nav {
        gap: 0;
        padding: 0.3rem 0.6rem;
    }

    .nav-item {
        padding: 4px 10px;
        font-size: 0.6rem;
    }

    .nav-item i {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}

/* step connector line */
.step-connector {
    position: relative;
}

@media (min-width: 992px) {
    .step-connector:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50px;
        right: -30px;
        width: 60px;
        height: 2px;
        background: var(--primary-green);
        opacity: 0.4;
    }
}

.team-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    margin-bottom: 1rem;
}

.rating-stars i {
    color: #f5b042;
    font-size: 0.85rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(6, 43, 132, 0.05);
    color: var(--primary-blue);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-green);
}

/* ============================================================
   4. MAIN HOME / MISTRY & CONTRACTOR STYLES
   ============================================================ */
:root {
    --navy: #01266f;
    --navy-mid: #0f3b7a;
    --navy-light: #1e509a;
    --gold: #54ad34;
    --gold-light: #6bc94c;
    --gold-pale: #e1f5da;
    --cream: #faf7f2;
    --white: #ffffff;
    --text-dark: #121826;
    --text-mid: #2a3a5e;
    --text-light: #6c7b98;
    --border: rgba(84, 173, 52, 0.2);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", sans-serif;
    --font-hindi: "Noto Sans Devanagari", sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 60px;
    --shadow-gold: 0 8px 32px rgba(84, 173, 52, 0.2);
    --shadow-navy: 0 8px 40px rgba(1, 38, 111, 0.18);
    --shadow-card: 0 2px 24px rgba(1, 38, 111, 0.08);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --navy-gradient: linear-gradient(135deg,
            var(--navy),
            var(--navy-light));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-mid);
    padding-bottom: 100px;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Buttons */
.btn-custom {
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary-custom {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-navy);
    border: 1px solid var(--navy);
}

.btn-primary-custom:hover {
    background: var(--navy-mid);
    color: var(--gold-light);
    transform: translateY(-3px);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--navy);
}

.btn-outline-custom:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px;
    background: var(--navy-gradient);
    color: var(--white);
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(84, 173, 52, 0.15) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-text h1 {
    color: white;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-search-box {
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius-pill);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.hero-input-group {
    flex: 1;
    position: relative;
    min-width: 150px;
}

.hero-input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}

.hero-input-group input {
    width: 100%;
    padding: 14px 14px 14px 48px;
    border: 1px solid transparent;
    background: var(--cream);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    color: var(--navy);
    font-weight: 500;
}

.hero-input-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.hero-btn-search {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 14px 35px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: var(--transition);
}

.hero-btn-search:hover {
    background: var(--gold-light);
    color: var(--white);
}

.hero-img {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-badge {
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-navy);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

/* Services Cards */
.services-section {
    padding: 100px 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-card);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-navy);
    border-color: var(--gold-pale);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--gold);
    color: var(--navy);
    transform: rotateY(180deg);
}

.service-card h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.more-services-container {
    text-align: center;
    margin-top: 50px;
}

/* Masons Section (with status & extra info) */
.mistry-section {
    padding: 80px 0;
    background-color: var(--white);
}

.scrolling-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 25px;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.scrolling-wrapper::-webkit-scrollbar {
    height: 6px;
}

.scrolling-wrapper::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 10px;
}

.scrolling-wrapper::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.mistry-card {
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
}

.mistry-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 5px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f8;
    z-index: 2;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    display: inline-block;
}

.status-dot.green {
    background: #59c135;
    box-shadow: 0 0 0 2px #59c13530;
}

.status-dot.red {
    background: #dc3545;
    box-shadow: 0 0 0 2px #dc354530;
}

.mistry-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mistry-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-pale);
}

.rating-stars {
    color: #ffb400;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-left: 8px;
}

.mistry-details p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.extra-info {
    display: flex;
    justify-content: space-between;
    background: var(--cream);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    margin: 15px 0;
}

.btn-sm-hire {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    background: var(--navy);
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-sm-hire:hover:not(:disabled) {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn-sm-hire:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #a0aec0;
}

/* Contractors Section */
.contractor-section {
    padding: 100px 0;
}

.contractor-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.contractor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-navy);
}

.contractor-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.contractor-body {
    padding: 25px;
}

.contractor-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.badge-projects {
    background: var(--gold-pale);
    color: var(--navy);
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-weight: 700;
}

/* How it Works */
.how-section {
    padding: 100px 0;
    background: white;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
    flex-wrap: wrap;
    gap: 30px;
}

@media (min-width: 992px) {
    .steps-container::before {
        content: "";
        position: absolute;
        top: 50px;
        left: 80px;
        right: 80px;
        height: 2px;
        background: var(--gold-pale);
        border-top: 2px dashed var(--gold);
        z-index: 0;
    }
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.step-icon-box {
    width: 100px;
    height: 100px;
    background: var(--cream);
    color: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    position: relative;
    transition: var(--transition);
}

.step-item:hover .step-icon-box {
    background: var(--navy);
    color: var(--gold);
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--navy);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
    font-size: 20px;
}

.step-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--navy);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Floating Navbar */
.floating-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gold-pale);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-navy);
    z-index: 1050;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 0.7rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 30px;
    transition: var(--transition);
    background: transparent;
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.nav-item.active {
    background: var(--navy);
    color: white;
}

.nav-item.active i {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        text-align: center;
        padding-top: 50px;
    }

    .hero-search-box {
        margin: 40px auto;
        flex-direction: column;
    }

    .hero-input-group {
        width: 100%;
    }

    .hero-btn-search {
        width: 100%;
    }

    .hero-img {
        margin-top: 50px;
        max-width: 100%;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .steps-container::before {
        display: none;
    }
}