/* ==========================================================================
   M D PARMAR & ASSOCIATES - MASTER LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-base: #0a0d12;
    --bg-surface: #111620;
    --bg-card: rgba(22, 28, 38, 0.75);
    --bg-card-hover: rgba(30, 39, 53, 0.9);
    --bg-glass: rgba(17, 22, 32, 0.85);
    --bg-darker: #07090d;
    
    --gold-primary: #fab207;
    --gold-light: #ffd466;
    --gold-dark: #c98c00;
    --gold-gradient: linear-gradient(135deg, #ffd466 0%, #fab207 50%, #d97706 100%);
    --gold-glow: 0 0 25px rgba(250, 178, 7, 0.25);
    
    --text-main: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --border-glass: rgba(250, 178, 7, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --shadow-card: 0 12px 36px -8px rgba(0, 0, 0, 0.5);
    --shadow-elevated: 0 20px 48px -10px rgba(0, 0, 0, 0.7);
    
    --font-display: 'Cinzel', serif;
    --font-accent: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.gold-text {
    color: var(--gold-primary);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(250, 178, 7, 0.1);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
}

.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px auto 0;
}

.section-separator::before,
.section-separator::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.4;
}

.section-separator i {
    color: var(--gold-primary);
    font-size: 8px;
}

/* Buttons & CTA */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    font-family: var(--font-accent);
    font-size: 14.5px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0d0f12;
    box-shadow: 0 4px 18px rgba(250, 178, 7, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(250, 178, 7, 0.5);
    filter: brightness(1.08);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(250, 178, 7, 0.4);
    color: var(--gold-primary);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(250, 178, 7, 0.12);
    border-color: var(--gold-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* Top Announcement Bar */
.top-bar {
    background: #07090e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 7px 0;
    font-size: 12.5px;
    letter-spacing: 0.2px;
    color: var(--text-muted);
    font-family: var(--font-accent);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.top-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-secondary);
    font-size: 12.5px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.top-contact-item .top-icon {
    color: var(--gold-primary);
    font-size: 12px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.top-contact-item:hover {
    color: #ffffff;
}

.top-contact-item:hover .top-icon {
    transform: scale(1.15);
    color: var(--gold-light);
}

.top-divider {
    display: inline-block;
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.12);
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 3px 12px;
    background: rgba(250, 178, 7, 0.08);
    border: 1px solid rgba(250, 178, 7, 0.22);
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.25px;
    box-shadow: 0 0 12px rgba(250, 178, 7, 0.05);
}

.top-badge i {
    font-size: 12px;
    color: var(--gold-primary);
}

.top-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-social a,
.footer-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 11.5px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-social a:hover,
.footer-social a:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    color: #0b0f17;
    box-shadow: 0 0 12px rgba(250, 178, 7, 0.4);
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    font-size: 13px;
}

/* Main Nav Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(10, 13, 18, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-bottom-color: var(--border-glass);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

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

.brand-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    padding: 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--gold-primary);
}

.nav-link i.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #121722;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    box-shadow: var(--shadow-elevated);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition-smooth);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 11px 22px;
    font-size: 13.5px;
    color: var(--text-secondary);
    font-weight: 500;
    border-left: 2px solid transparent;
    transition: var(--transition-smooth);
}

.dropdown-menu li a:hover, .dropdown-menu li.active a {
    background: rgba(250, 178, 7, 0.08);
    color: var(--gold-primary);
    border-left-color: var(--gold-primary);
    padding-left: 26px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #0f141c;
    border-left: 1px solid var(--border-glass);
    box-shadow: -10px 0 40px rgba(0,0,0,0.8);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px 24px;
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.mobile-submenu {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.mobile-submenu a {
    font-size: 14px;
    color: var(--text-muted);
    padding: 4px 0;
}

.mobile-submenu a:hover {
    color: var(--gold-primary);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HOMEPAGE FULL-SCREEN 5-IMAGE LUXURY HERO SLIDER
   ========================================================================== */
.fullscreen-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    max-height: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-slides-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 4s linear;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.0);
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(8, 11, 16, 0.45) 0%, rgba(8, 11, 16, 0.6) 50%, rgba(8, 11, 16, 0.88) 100%),
        radial-gradient(circle at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}

.hero-centered-container {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 0 20px 40px;
}

.hero-centered-content {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-slide {
    display: none;
    animation: fullHeroFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text-slide.active {
    display: block;
}

@keyframes fullHeroFadeIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-tagline {
    display: inline-block;
    color: var(--gold-primary);
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.8vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.hero-main-desc {
    font-size: clamp(15px, 1.35vw, 18px);
    color: #d1d5db;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 32px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-center-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-center-actions .btn {
    padding: 14px 32px;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Left & Right Slider Arrow Buttons */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(10, 13, 18, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.hero-arrow-prev {
    left: 30px;
}

.hero-arrow-next {
    right: 30px;
}

.hero-slider-arrow:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(250, 178, 7, 0.5);
}

/* 5-Slide Dot Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.hero-dot:hover {
    background: rgba(250, 178, 7, 0.6);
    border-color: var(--gold-primary);
}

.hero-dot.active {
    width: 38px;
    border-radius: 6px;
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    box-shadow: 0 0 14px rgba(250, 178, 7, 0.6);
}

/* Floating Metrics Strip at Bottom of Hero */
.hero-floating-metrics {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    background: rgba(10, 13, 18, 0.75);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-glass);
    padding: 14px 0;
}

.metrics-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.metric-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.metric-val {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-primary);
}

.metric-lbl {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .fullscreen-hero-slider {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 100px;
    }
    .hero-slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
    .hero-arrow-prev {
        left: 15px;
    }
    .hero-arrow-next {
        right: 15px;
    }
    .metrics-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .hero-slider-pagination {
        bottom: 80px;
    }
}

@media (max-width: 600px) {
    .hero-center-actions {
        flex-direction: column;
    }
    .hero-center-actions .btn {
        width: 100%;
    }
    .hero-slider-arrow {
        display: none;
    }
    .metrics-bar-grid {
        grid-template-columns: 1fr;
    }
    .hero-floating-metrics {
        display: none;
    }
    .hero-slider-pagination {
        bottom: 25px;
    }
}

/* ==========================================================================
   PAGE HERO / SUBHEADER SECTION
   ========================================================================== */
.page-subheader {
    position: relative;
    padding: 100px 0 70px;
    background: linear-gradient(180deg, #090c10 0%, #111722 100%);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.page-subheader::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(250, 178, 7, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(250, 178, 7, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.page-subheader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.page-subheader-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-subheader-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.breadcrumb-trail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(22, 28, 38, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 13.5px;
}

.breadcrumb-trail a {
    color: var(--text-muted);
}

.breadcrumb-trail a:hover {
    color: var(--gold-primary);
}

.breadcrumb-trail i {
    font-size: 10px;
    color: var(--gold-primary);
}

.breadcrumb-trail span {
    color: var(--gold-primary);
    font-weight: 600;
}

/* ==========================================================================
   CONTENT BLOCKS, GRIDS & CARDS
   ========================================================================== */
.content-section {
    padding: 80px 0;
    position: relative;
}

.bg-surface {
    background-color: var(--bg-surface);
}

.bg-base {
    background-color: var(--bg-base);
}

.bg-darker {
    background-color: var(--bg-darker);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

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

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

.luxury-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.luxury-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.luxury-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(250, 178, 7, 0.12);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}

.luxury-card:hover .card-icon {
    background: var(--gold-primary);
    color: #000;
    transform: scale(1.05);
}

.card-title {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Feature List */
.luxury-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
}

.luxury-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    color: var(--text-secondary);
}

.luxury-list li i {
    color: var(--gold-primary);
    font-size: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Gallery Showcase Cards */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #141a24;
    border: 1px solid var(--border-subtle);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10, 13, 18, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 20%, rgba(10, 13, 18, 0.98) 100%);
}

.gallery-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.gallery-title {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.gallery-zoom-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 13, 18, 0.8);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-8px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
    font-weight: 600;
}

/* Specs & Detail Table */
.specs-table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 30px 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.specs-table th {
    background: rgba(250, 178, 7, 0.1);
    color: var(--gold-primary);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-glass);
}

.specs-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14.5px;
    color: var(--text-secondary);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Machinery Detail Cards */
.machine-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    align-items: center;
    transition: var(--transition-smooth);
}

.machine-card:hover {
    border-color: var(--border-glass);
    box-shadow: var(--shadow-card);
}

.machine-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.machine-card:nth-child(even) > * {
    direction: ltr;
}

.machine-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    aspect-ratio: 16 / 10;
}

.machine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Client Logo Showcase Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 36px;
    align-items: center;
}

.client-logo-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(250, 178, 7, 0.2);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(250, 178, 7, 0.22);
    border-color: var(--gold-primary);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.client-logo-card:hover img {
    transform: scale(1.06);
}

@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .client-logo-card {
        height: 84px;
        padding: 14px 18px;
    }
    .client-logo-card img {
        max-height: 44px;
    }
}

@media (max-width: 600px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .client-logo-card {
        height: 76px;
        padding: 12px 14px;
    }
    .client-logo-card img {
        max-height: 38px;
    }
}

/* ==========================================================================
   SEO FAQ ACCORDION SECTION
   ========================================================================== */
.faq-grid {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover, .faq-item.active {
    border-color: var(--border-glass);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-accent);
    font-size: 16.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(250, 178, 7, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--gold-primary);
    color: #000000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Call to Action Ribbon */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #131a26 0%, #0d1219 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(250, 178, 7, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 36px);
    color: #fff;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 16px;
    color: var(--text-muted);
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.site-footer {
    background: #06080c;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 0;
    color: var(--text-muted);
    font-size: 14.5px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
    height: 54px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 22px;
}

.footer-col-title {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(4px);
}

.footer-address-card {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-address-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-address-card h5 {
    color: var(--gold-primary);
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-address-card p {
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13.5px;
}

/* ==========================================================================
   MODALS, LIGHTBOX & FLOATING WIDGETS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111722;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 580px;
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-elevated);
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-smooth);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--gold-primary);
    color: #000;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
}

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

.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #fff;
    font-size: 14.5px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(250, 178, 7, 0.15);
    background: rgba(255, 255, 255, 0.07);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img-wrapper {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
}

.lightbox-caption {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-top: 14px;
    text-align: center;
}

/* Floating Tools */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 20px;
}

.float-whatsapp {
    background: #25d366;
    color: #fff;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.float-top {
    background: #151b26;
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    opacity: 0;
    visibility: hidden;
}

.float-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HOMEPAGE ABOUT US & WHY CHOOSE US SECTIONS
   ========================================================================== */
.about-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 52px;
    align-items: center;
}

.about-lead {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.65;
    margin-bottom: 16px;
}

.about-text-p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 28px 0 32px;
}

.about-highlight-card {
    background: rgba(22, 28, 38, 0.65);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-smooth);
}

.about-highlight-card:hover {
    border-color: var(--border-glass);
    background: rgba(30, 39, 53, 0.85);
    transform: translateY(-2px);
}

.about-highlight-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(250, 178, 7, 0.12);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.about-highlight-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.about-highlight-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* About Visual Composition */
.about-visual-wrap {
    position: relative;
}

.about-visual-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-elevated);
    aspect-ratio: 4 / 3.4;
}

.about-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual-frame:hover img {
    transform: scale(1.05);
}

.about-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 13, 18, 0.1) 0%, rgba(10, 13, 18, 0.7) 100%);
    pointer-events: none;
}

.about-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(13, 17, 24, 0.94);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0b0f17;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--gold-glow);
    flex-shrink: 0;
}

.about-badge-val {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.about-badge-lbl {
    font-size: 12px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Why MD Parmar Cards Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.why-feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.why-feature-card:hover::before {
    opacity: 1;
}

.why-card-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: -1px;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.why-feature-card:hover .why-card-num {
    color: rgba(250, 178, 7, 0.25);
    transform: scale(1.08);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(250, 178, 7, 0.1);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}

.why-feature-card:hover .why-card-icon {
    background: var(--gold-primary);
    color: #0b0f17;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 20px rgba(250, 178, 7, 0.35);
}

.why-card-title {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.why-card-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    flex-grow: 1;
}

/* Vision & Mission Dual Cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.vm-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.vm-card:hover::before {
    opacity: 1;
    height: 4px;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.vm-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: rgba(250, 178, 7, 0.12);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.vm-card:hover .vm-icon {
    background: var(--gold-gradient);
    color: #0b0f17;
    box-shadow: 0 6px 22px rgba(250, 178, 7, 0.4);
    transform: scale(1.06);
}

.vm-badge-lbl {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.vm-title {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.vm-desc {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 26px;
    flex-grow: 1;
}

.vm-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.vm-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.vm-tag i {
    color: var(--gold-primary);
    font-size: 11px;
}

.vm-card:hover .vm-tag {
    background: rgba(250, 178, 7, 0.08);
    border-color: rgba(250, 178, 7, 0.25);
    color: var(--text-secondary);
}

/* ==========================================================================
   STRENGTH, TEAMS, FINANCIAL CALIBER & ACCREDITATIONS
   ========================================================================== */
.strength-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.strength-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.strength-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.strength-card:hover::before {
    opacity: 1;
}

.strength-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.strength-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    background: rgba(250, 178, 7, 0.1);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition-smooth);
}

.strength-card:hover .strength-icon {
    background: var(--gold-primary);
    color: #0b0f17;
    transform: scale(1.08);
}

.strength-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(250, 178, 7, 0.08);
    border: 1px solid rgba(250, 178, 7, 0.2);
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.strength-card-title {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.strength-card-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.strength-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.strength-point-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.strength-point-item i {
    color: var(--gold-primary);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* MEP Consultants Grid */
.mep-section-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.mep-section-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

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

.mep-item-card {
    background: rgba(13, 17, 24, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
}

.mep-item-card:hover {
    border-color: var(--border-glass);
    background: rgba(22, 28, 38, 0.9);
    transform: translateY(-3px);
}

.mep-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(250, 178, 7, 0.12);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.mep-item-title {
    font-family: var(--font-accent);
    font-size: 15.5px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.mep-item-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Execution Capacity Banner */
.capacity-ribbon {
    background: linear-gradient(135deg, rgba(22, 28, 38, 0.95) 0%, rgba(13, 17, 24, 0.98) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    margin: 40px 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.capacity-text h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.capacity-text p {
    font-size: 15.5px;
    color: var(--text-secondary);
}

.capacity-badge-box {
    text-align: right;
    flex-shrink: 0;
}

.capacity-amount {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.2;
}

.capacity-sub {
    font-size: 12.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Financial & Sector Breakdown Dual Section */
.financial-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.caliber-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.caliber-box-title {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.caliber-box-title i {
    color: var(--gold-primary);
}

.caliber-box-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 26px;
}

/* Turnover Bar Rows */
.turnover-bars-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.turnover-bar-item {
    background: rgba(10, 13, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
}

.turnover-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14.5px;
}

.turnover-year {
    font-weight: 600;
    color: #ffffff;
}

.turnover-val {
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--gold-primary);
}

.turnover-progress-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.turnover-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(250, 178, 7, 0.4);
    transition: width 1s ease-in-out;
}

/* Sector Breakdown Meters */
.sector-meters-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sector-meter-item {
    background: rgba(10, 13, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
}

.sector-meter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14.5px;
}

.sector-meter-title {
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sector-meter-title i {
    color: var(--gold-primary);
    font-size: 13px;
}

.sector-meter-pct {
    font-family: var(--font-accent);
    font-weight: 700;
    color: #ffffff;
}

.sector-progress-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.sector-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #fab207 0%, #eab308 100%);
}

/* Accreditations & Certifications Cards */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.cert-card:hover {
    border-color: var(--border-glass);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.cert-logo-box {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 10px;
    transition: var(--transition-smooth);
}

.cert-card:hover .cert-logo-box {
    background: #ffffff;
    border-color: var(--gold-primary);
    box-shadow: 0 8px 24px rgba(250, 178, 7, 0.3);
}

.cert-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-badge-iso {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed var(--gold-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.cert-card:hover .cert-badge-iso {
    color: #0b0f17;
}

.cert-badge-iso span:first-child {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.cert-badge-iso span:last-child {
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
}

.cert-title {
    font-family: var(--font-accent);
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.cert-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .strength-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mep-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .financial-split-grid {
        grid-template-columns: 1fr;
    }
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .capacity-ribbon {
        flex-direction: column;
        text-align: center;
    }
    .capacity-badge-box {
        text-align: center;
    }
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .about-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-floating-badge {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 680px) {
    .vm-card {
        padding: 28px 22px;
    }
    .vm-title {
        font-size: 20px;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-highlights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .about-floating-badge {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 16px;
    }
    .why-feature-card {
        padding: 26px 22px;
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .header-nav {
        height: 74px;
    }
    .nav-links, .nav-actions .btn-primary {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .machine-card, .machine-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

@media (max-width: 992px) {
    .top-divider-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
    }
    .top-bar-wrapper {
        justify-content: center;
        gap: 8px;
    }
    .top-contacts {
        justify-content: center;
        gap: 10px;
    }
    .top-contact-item {
        font-size: 11.5px;
    }
    .top-badge {
        font-size: 10.5px;
        padding: 2px 10px;
    }
    .top-bar .top-social {
        display: none;
    }
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .cta-wrapper {
        text-align: center;
        justify-content: center;
    }
    .page-subheader {
        padding: 60px 0 45px;
    }
    .content-section {
        padding: 60px 0;
    }
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
}
