/* ============================================
   JAZ Engineering — Main Stylesheet
   Color Palette:
   --navy:    #0d1b2a
   --blue:    #1a73e8
   --red:     #e84c1e
   --white:   #ffffff
   --gray:    #f5f7fa
============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Open Sans', sans-serif;
    color: #2d3748;
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #0d1b2a;
}
a { color: #1a73e8; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #e84c1e; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === CSS VARIABLES === */
:root {
    --navy: #0d1b2a;
    --blue: #1a73e8;
    --red: #e84c1e;
    --white: #ffffff;
    --gray: #f5f7fa;
    --gray-dark: #e2e8f0;
    --text: #2d3748;
    --text-light: #718096;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-fluid { width: 100%; padding: 0 1.5rem; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-primary:hover {
    background: #1557b0;
    border-color: #1557b0;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,115,232,0.35);
}
.btn-danger {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-danger:hover {
    background: #c73d16;
    border-color: #c73d16;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,76,30,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}
.btn-outline-blue {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline-blue:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* === SECTION STYLES === */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-label {
    display: inline-block;
    background: rgba(26,115,232,0.1);
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-label.red-label {
    background: rgba(232,76,30,0.1);
    color: var(--red);
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 1rem;
}
.section-title span { color: var(--blue); }
.section-title .accent-red { color: var(--red); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem auto 0;
    width: 120px;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--blue);
}
.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    display: block;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    padding: 0.75rem 0;
}
.navbar.scrolled {
    background: rgba(13, 27, 42, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 0.5rem 0;
}
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.navbar-brand { text-decoration: none; }
.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.brand-logo-img {
    height: 85px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.navbar-brand:hover .brand-logo-img {
    transform: scale(1.06);
    filter: drop-shadow(0 4px 16px rgba(255,120,50,0.5));
}
.brand-icon { display: none; }
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    line-height: 1;
}
.brand-jaz {
    color: #1a73e8;
    font-weight: 900;
    font-size: 1.75rem;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(26,115,232,0.5);
}
.brand-engineering {
    color: #e84c1e;
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(232,76,30,0.4);
}
.brand-tagline {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.navbar-menu li a {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.nav-cta a.btn {
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2f4a 50%, #0d1b2a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('https://via.placeholder.com/1920x1080/0d1b2a/1a73e8?text=JAZ+Engineering') center/cover no-repeat;
    opacity: 0.08;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,115,232,0.15), rgba(232,76,30,0.1));
    animation: float 6s ease-in-out infinite;
}
.hero-shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-shape-2 { width: 250px; height: 250px; bottom: 50px; left: -80px; animation-delay: 2s; }
.hero-shape-3 { width: 150px; height: 150px; top: 40%; right: 15%; animation-delay: 4s; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
.hero-content { position: relative; z-index: 2; padding: 7rem 0 4rem; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,76,30,0.15);
    border: 1px solid rgba(232,76,30,0.3);
    color: #ff7b52;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-badge i { color: var(--red); }
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #1a73e8, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title .accent { color: var(--red); }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat-number span { color: var(--red); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }
.hero-visual { position: relative; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; overflow: visible; animation: none; }
.hero-card-clone { display: none; }
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.hero-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(26,115,232,0.4);
    transform: translateY(-2px);
}
.hero-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}
.hero-card-icon.blue { background: rgba(26,115,232,0.2); color: #64b5f6; }
.hero-card-icon.red { background: rgba(232,76,30,0.2); color: #ff7b52; }
.hero-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}
.hero-card-desc { font-size: 0.68rem; color: rgba(255,255,255,0.55); line-height: 1.4; display: none; }

/* === SERVICES SECTION === */
.services-section { padding: 6rem 0; background: var(--gray); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26,115,232,0.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(26,115,232,0.1), rgba(26,115,232,0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--blue);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--blue), #1557b0);
    color: var(--white);
    transform: scale(1.05);
}
.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.25rem; }
.service-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.service-link:hover { color: var(--red); gap: 0.7rem; }

/* === WHY CHOOSE US === */
.why-section { padding: 6rem 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.why-image img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
.why-badge-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.why-badge-icon { font-size: 2rem; color: var(--red); }
.why-badge-text { font-family: 'Montserrat', sans-serif; }
.why-badge-number { font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1; }
.why-badge-label { font-size: 0.78rem; color: var(--text-light); }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.why-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(26,115,232,0.1), rgba(232,76,30,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--blue);
    flex-shrink: 0;
    transition: var(--transition);
}
.why-feature:hover .why-feature-icon {
    background: linear-gradient(135deg, var(--blue), #1557b0);
    color: var(--white);
}
.why-feature-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.why-feature-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* === PROJECTS SECTION === */
.projects-section { padding: 6rem 0; background: var(--gray); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.75rem; }
.project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.08); }
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.85), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay-btn {
    background: var(--white);
    color: var(--navy);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    text-decoration: none;
}
.project-overlay-btn:hover { background: var(--blue); color: var(--white); }
.project-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}
.project-category-badge.red { background: var(--red); }
.project-category-badge.green { background: #22c55e; }
.project-info { padding: 1.5rem; }
.project-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.project-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.project-meta-item { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.project-meta-item i { color: var(--blue); font-size: 0.75rem; }

/* === PARTNERS SECTION === */
.partners-section {
    padding: 4rem 0 3rem;
    background: #f5f7fa;
    overflow: hidden;
}
.partners-track-wrapper {
    position: relative;
    overflow: hidden;
    margin: 2rem -1rem 0;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partners-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollPartners 30s linear infinite;
}
.partners-track:hover {
    animation-play-state: paused;
}
@keyframes scrollPartners {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollHeroCards {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 2rem;
    min-width: 200px;
    height: 110px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid #e8ecf0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    cursor: default;
    flex-shrink: 0;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
    filter: none;
}
.partner-logo-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.partner-logo-img-wrap img {
    max-width: 160px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}
.partner-logo-img-wrap svg {
    max-width: 160px;
    max-height: 75px;
    width: 100%;
    height: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}
.partner-card:hover .partner-logo-img-wrap img,
.partner-card:hover .partner-logo-img-wrap svg {
    filter: grayscale(0%);
}
/* === CTA BANNER === */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,76,30,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === CONTACT TEASER === */
.contact-teaser { padding: 6rem 0; background: var(--white); }
.contact-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--gray);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}
.contact-info-card:hover { border-color: var(--blue); background: rgba(26,115,232,0.05); transform: translateX(6px); }
.contact-info-card:hover { color: inherit; }
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-icon.blue { background: rgba(26,115,232,0.15); color: var(--blue); }
.contact-icon.red { background: rgba(232,76,30,0.15); color: var(--red); }
.contact-icon.green { background: rgba(34,197,94,0.15); color: #22c55e; }
.contact-info-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 0.2rem; }
.contact-info-value { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

/* === CONTACT FORM === */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-dark);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    padding: 0.875rem 1.1rem;
    border: 1.5px solid var(--gray-dark);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}
.form-control::placeholder { color: #adb5bd; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: #16a34a;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.form-error-msg {
    background: rgba(232,76,30,0.1);
    border: 1px solid rgba(232,76,30,0.3);
    color: var(--red);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === BLOG CARDS === */
.blog-section { padding: 6rem 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.75rem; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-dark);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; }
.blog-card-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 0.75rem;
}
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.25rem; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-card-date { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.blog-card-link { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 0.3rem; }
.blog-card-link:hover { color: var(--red); }

/* === PAGE HERO === */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 0.75rem; }
.page-hero-subtitle { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 550px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.breadcrumb-current { color: var(--white); font-size: 0.85rem; font-weight: 600; }

/* === ABOUT PAGE === */
.about-section { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
.about-stats-bar { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; padding: 1.5rem; background: var(--gray); border-radius: var(--radius-sm); }
.about-stat-item { text-align: center; flex: 1; min-width: 80px; }
.about-stat-number { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.about-stat-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }
.mission-vision { padding: 6rem 0; background: var(--gray); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--blue);
    transition: var(--transition);
}
.mv-card.red-border { border-top-color: var(--red); }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.mv-icon.blue { color: var(--blue); }
.mv-icon.red { color: var(--red); }
.mv-title { font-size: 1.3rem; color: var(--navy); margin-bottom: 1rem; }
.team-section { padding: 6rem 0; background: var(--white); }
.team-card {
    max-width: 380px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.team-card-img { height: 300px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 2rem; }
.team-card-name { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.3rem; }
.team-card-role { color: var(--blue); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.team-card-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.5rem; }
.team-social { display: flex; justify-content: center; gap: 0.75rem; }
.team-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition);
}
.team-social a:hover { background: var(--blue); color: var(--white); }
.certifications { padding: 5rem 0; background: var(--gray); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.cert-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cert-icon { font-size: 2.25rem; color: var(--blue); margin-bottom: 1rem; }
.cert-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.cert-desc { font-size: 0.82rem; color: var(--text-light); }

/* === SERVICES DETAIL PAGE === */
.services-detail { padding: 5rem 0; }
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border: 1px solid var(--gray-dark);
    transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.service-detail-inner { display: grid; grid-template-columns: 1fr 1fr; }
.service-detail-card:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail-card:nth-child(even) .service-detail-inner > * { direction: ltr; }
.service-detail-img { height: 380px; overflow: hidden; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.04); }
.service-detail-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.service-detail-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--blue), #1557b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.service-detail-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; }
.service-detail-desc { color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }
.service-benefits { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.service-benefit { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text); }
.service-benefit i { color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.service-apps { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-app-tag {
    background: var(--gray);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--gray-dark);
}

/* === PROJECTS PAGE FILTER === */
.projects-page { padding: 5rem 0; background: var(--gray); }
.filter-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.filter-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: 2px solid var(--gray-dark);
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* === LIGHTBOX === */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox-overlay.active { display: flex; }
.lightbox-content { max-width: 900px; width: 100%; position: relative; }
.lightbox-img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--red); transform: scale(1.2); }
.lightbox-caption { text-align: center; color: rgba(255,255,255,0.8); margin-top: 1rem; font-size: 0.95rem; }

/* === BLOG SINGLE === */
.blog-single { padding: 5rem 0; }
.blog-single-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.blog-single-content { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.blog-single-hero-img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 2rem; }
.blog-single-title { font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; line-height: 1.35; }
.blog-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-dark); }
.blog-meta-item { font-size: 0.83rem; color: var(--text-light); display: flex; align-items: center; gap: 0.4rem; }
.blog-meta-item i { color: var(--blue); }
.blog-body { color: var(--text); line-height: 1.9; }
.blog-body h2 { font-size: 1.4rem; color: var(--navy); margin: 2rem 0 1rem; }
.blog-body h3 { font-size: 1.15rem; color: var(--navy); margin: 1.5rem 0 0.75rem; }
.blog-body p { margin-bottom: 1.25rem; }
.blog-body ul, .blog-body ol { padding-left: 1.75rem; margin-bottom: 1.25rem; }
.blog-body li { margin-bottom: 0.5rem; }
.blog-body blockquote {
    border-left: 4px solid var(--blue);
    padding: 1rem 1.5rem;
    background: rgba(26,115,232,0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text);
}
.blog-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-widget { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.sidebar-widget-title { font-size: 1.05rem; color: var(--navy); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--blue); }
.sidebar-post { display: flex; gap: 0.875rem; margin-bottom: 1.1rem; align-items: flex-start; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post-img { width: 70px; height: 60px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.sidebar-post-title { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 0.25rem; }
.sidebar-post-title a { color: var(--navy); text-decoration: none; }
.sidebar-post-title a:hover { color: var(--blue); }
.sidebar-post-date { font-size: 0.75rem; color: var(--text-light); }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sidebar-tag {
    background: var(--gray);
    border: 1px solid var(--gray-dark);
    color: var(--text);
    font-size: 0.78rem;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}
.sidebar-tag:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* === CONTACT PAGE === */
.contact-page { padding: 5rem 0; }
.contact-page-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; }
.contact-page-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-page-info-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid transparent;
}
.contact-page-info-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.contact-page-info-card .contact-icon { flex-shrink: 0; }
.map-section { padding: 0 0 5rem; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-wrapper iframe { width: 100%; height: 400px; border: none; display: block; }

/* === FOOTER === */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin: 1.25rem 0; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--red);
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}
.footer-links a i { font-size: 0.65rem; color: var(--blue); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { display: flex; gap: 0.875rem; align-items: flex-start; }
.footer-contact-list li i { color: var(--blue); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-list li span,
.footer-contact-list li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-contact-list li a { text-decoration: none; transition: var(--transition); }
.footer-contact-list li a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 0.25rem; }
.footer-bottom p:last-child { margin-bottom: 0; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float:hover { background: #1db954; color: var(--white); transform: scale(1.1); }
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.4rem 0.875rem;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--navy);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.py-5 { padding: 3rem 0; }
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-blue { background: rgba(26,115,232,0.1); color: var(--blue); }
.badge-red { background: rgba(232,76,30,0.1); color: var(--red); }
.badge-green { background: rgba(34,197,94,0.1); color: #16a34a; }
.no-results { text-align: center; padding: 4rem 2rem; color: var(--text-light); }
.no-results i { font-size: 3rem; color: var(--gray-dark); margin-bottom: 1rem; display: block; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: block; margin-top: 1.5rem; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
    .hero-cards { display: flex; flex-direction: row; flex-wrap: nowrap; overflow: visible; gap: 0.5rem; width: max-content; animation: scrollHeroCards 18s linear infinite; }
    .hero-card { min-width: 140px; flex-shrink: 0; }
    .hero-card-clone { display: flex; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .service-detail-inner { grid-template-columns: 1fr; }
    .service-detail-card:nth-child(even) .service-detail-inner { direction: ltr; }
    .blog-single-grid { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
    .contact-teaser-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13,27,42,0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .navbar-menu.open { display: flex; }
    .navbar-menu li a { padding: 0.7rem 1rem; border-radius: 8px; }
    .navbar-toggle { display: flex; }
    .nav-cta { width: 100%; }
    .nav-cta a { width: 100%; justify-content: center; }
    .brand-logo-img { height: 55px; }
    .hero { min-height: auto; padding-top: 80px; padding-bottom: 3rem; align-items: flex-start; display: block; }
    .hero-content { padding: 2rem 0 1rem; }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
    .hero-stat { text-align: left; }
    .hero-stat-number { font-size: 1.4rem; }
    .hero-stat-label { font-size: 0.55rem; letter-spacing: 0; white-space: nowrap; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-buttons { justify-content: center; }
    .service-detail-img { height: 250px; }
    .why-feature { flex-direction: column; gap: 0.75rem; }
    .contact-page-grid { gap: 2rem; }
    .hero-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .btn-lg { padding: 0.875rem 1.75rem; font-size: 0.95rem; }
    .section-title { font-size: 1.6rem; }
    .hero-title { font-size: 1.9rem; }
    .filter-tabs { gap: 0.5rem; }
    .filter-tab { padding: 0.5rem 1rem; font-size: 0.78rem; }
    .brand-logo-img { height: 46px; }
    .hero { padding-top: 75px; }
    .hero-stat-number { font-size: 1.2rem; }
    .hero-stat-label { font-size: 0.5rem; }
}
