/* ===== RESET & BASE ===== */

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

:root {
    --dark: #0A192F;
    --dark2: #102A43;
    --gold: #F85508;
    --gold-lt: #E2C06A;
    --white: #FFFFFF;
    --cream: #F5EDD8;
    --grey: #B0BEC5;
    --grey-lt: #F4F6F8;
    --grey-md: #8A9BA8;
    --text: #1C2B2D;
    --text-lt: #4A5E62;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(28, 43, 45, 0.10);
    --shadow-lg: 0 12px 48px rgba(28, 43, 45, 0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-h: 72px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

.section {
    padding: 96px 0;
}

.dark-section {
    background: var(--dark);
    color: var(--white);
}

.dark-section2 {
    background: var(--dark);
    color: var(--white);
        /* margin-top: 64px; */

}

/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

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

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION HEADER ===== */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header.light .section-title,
.section-header.light .section-sub {
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.section-sub {
    margin-top: 16px;
    color: var(--text-lt);
    font-size: 1.05rem;
    max-width: 560px;
    margin-inline: auto;
}

/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: var(--dark2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.06em;
}

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

.nav-links a {
    font-family: var(--font-head);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

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

.nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--gold-lt);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 110deg, rgba(45, 67, 98, 0.92) 45%, rgba(13, 15, 23, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: var(--nav-h);
    padding-bottom: 80px;
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.18);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    /* color: var(--white); */
    color: black;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.hero-title-accent {
    color: var(--gold);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--grey);
    letter-spacing: 0.06em;
    margin-bottom: 28px;
    font-style: italic;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.hero-pills span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    z-index: 1;
    animation: scrollBounce 2s infinite;
    transition: color var(--transition);
}

.hero-scroll:hover {
    color: var(--gold);
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===== ABOUT ===== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}

.about-text p {
    color: var(--text-lt);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-usp {
    margin: 24px 0;
    padding: 18px 24px;
    background: var(--grey-lt);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid rgba(201, 168, 76, 0.35);
    color: var(--text);
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: var(--shadow);
}

.badge svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--grey-lt);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1.5px solid rgba(28, 43, 45, 0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card.gold {
    background: var(--gold);
}

.stat-card.gold .stat-number,
.stat-card.gold .stat-label {
    color: var(--dark);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-number span {
    font-size: 1.6rem;
    color: var(--gold);
}

.stat-card.gold .stat-number span {
    color: var(--dark);
}

.stat-label {
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--text-lt);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== VISION MISSION ===== */

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

.vms-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: background var(--transition), transform var(--transition);
}

.vms-card:hover {
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-4px);
}

.vms-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vms-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
}

.vms-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vms-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== SERVICES ===== */

.services-columns {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    margin-bottom: 64px;
}

.services-col-title {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-lt);
    padding: 12px 16px;
    background: var(--grey-lt);
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

.service-list li:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--dark);
}

.service-list li svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.srv-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--grey-lt);
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    transition: all var(--transition);
}

.srv-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.srv-card2 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--grey-lt);
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    transition: all var(--transition);
    margin-top: 1rem;
}

.srv-card2:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.srv-icon {
    width: 42px;
    height: 42px;
    background: var(--dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.srv-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.srv-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.srv-card p {
    font-size: 0.82rem;
    color: var(--text-lt);
    line-height: 1.5;
}

/* Software */

.software-section {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 48px 48px 40px;
    color: var(--white);
        margin-bottom: 64px;

}

.software-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 28px;
}

.sw-group-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.sw-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sw-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 2px;
}

.sw-item span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.software-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    line-height: 1.7;
}

.software-note2 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    padding-top: 20px;
    line-height: 1.7;
    margin-bottom: 32px;

}

.software-note3 {
     display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 12px;
}

/* ===== SECTORS ===== */

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

.sector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.sector-card:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
}

.sector-card svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.sector-card span {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* ===== PROJECTS ===== */

.projects {
    padding-bottom: 0;
}

.projects>.container {
    margin-bottom: 0;
}

.project-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.project-row.reverse {
    direction: rtl;
}

.project-row.reverse>* {
    direction: ltr;
}

.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-row:hover .project-img img {
    transform: scale(1.04);
}

.project-img-placeholder {
    background: linear-gradient(135deg, #1C2B2D 0%, #2d4a4e 50%, #1a3a3e 100%);
}

.project-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.25);
}

.project-placeholder-inner svg {
    width: 72px;
    height: 72px;
    opacity: 0.3;
}

.project-placeholder-inner span {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.project-render-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.project-img-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.project-type {
    background: rgba(28, 43, 45, 0.75);
    backdrop-filter: blur(6px);
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.project-info {
    padding: 56px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--grey-lt);
}

.project-row:nth-child(even) .project-info {
    background: var(--white);
}

.project-meta {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.project-info h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.25;
}

.project-spec {
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--text-lt);
    margin-bottom: 20px;
    font-weight: 500;
}

.project-info p {
    color: var(--text-lt);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    background: var(--white);
    border: 1.5px solid rgba(28, 43, 45, 0.12);
    color: var(--text);
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
}

.project-row:nth-child(even) .project-tags span {
    background: var(--grey-lt);
}

/* ===== TESTIMONIALS ===== */

.testimonial-carousel {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 80px;
    text-align: center;
}

.testimonial-quote {
    font-size: 6rem;
    line-height: 0.6;
    color: var(--gold);
    font-family: Georgia, serif;
    margin-bottom: 32px;
    opacity: 0.7;
}

.testimonial-slide>p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    max-width: 800px;
    margin: 0 auto 36px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.testimonial-author span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.testimonial-company {
    color: var(--gold) !important;
    font-weight: 600;
    font-family: var(--font-head);
}

.testimonial-project {
    font-size: 0.78rem !important;
    margin-top: 4px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.tctl {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.tctl:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.tctl svg {
    width: 18px;
    height: 18px;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ===== TEAM ===== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto;
}

.team-card {
    background: var(--grey-lt);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    border: 1.5px solid rgba(28, 43, 45, 0.07);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.team-role {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.team-qual {
    font-size: 0.82rem;
    color: var(--text-lt);
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.65;
    text-align: left;
    margin-bottom: 18px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.team-tags span {
    font-size: 0.75rem;
    background: rgba(200, 160, 60, 0.1);
    color: var(--dark);
    border: 1px solid rgba(200, 160, 60, 0.3);
    border-radius: 20px;
    padding: 3px 10px;
}

/* ===== CLIENTS ===== */

.client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 40px;
}

.client-logos img {
    width: 100%;
    height: 56px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.65;
    transition: all var(--transition);
}

.client-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.client-names {
    text-align: center;
    color: var(--text-lt);
    font-size: 0.88rem;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    background: var(--grey-lt);
    border-radius: var(--radius);
}

/* ===== CONTACT ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

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

.light-title {
    color: var(--white) !important;
}

.contact-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 6px;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.contact-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

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

.contact-memberships {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-memberships span {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 100px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-lt);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(28, 43, 45, 0.15);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    resize: vertical;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey-md);
}

/* ===== VENDOR DRIVE UPLOAD NOTE ===== */

.drive-upload-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px dashed rgba(201, 168, 76, 0.4);
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--text-lt);
}

.drive-upload-note svg {
    flex-shrink: 0;
    color: var(--gold);
}

/* ===== CONTACT ACTION ROW ===== */

.contact-action-label {
    margin-bottom: 12px;
}

.contact-action-label p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.contact-action-row {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 28px;
}

.contact-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    background: rgba(201, 168, 76, 0.1);
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.contact-action-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ===== VENDOR MODAL ===== */

.vendor-modal-box {
    max-width: 680px !important;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 40px 36px !important;
}

.vendor-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.vendor-modal-header .modal-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.vendor-modal-header h2 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.vendor-modal-header p {
    font-size: 0.88rem;
    color: var(--text-lt);
    margin: 0;
}

.vendor-section-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    margin: 20px 0 16px;
}

.file-input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px dashed rgba(28, 43, 45, 0.25);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text);
    cursor: pointer;
    background: var(--grey-lt);
    transition: border-color var(--transition);
}

.file-input:hover {
    border-color: var(--gold);
}

.file-hint {
    display: block;
    font-size: 0.74rem;
    color: var(--grey-md);
    margin-top: 4px;
    font-family: var(--font-head);
}

/* ===== FOOTER ===== */

.footer {
    background: var(--dark2);
    padding: 48px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

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

.footer-logo {
    height: 44px;
    width: auto;
    opacity: 0.9;
}

.footer-name {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: black;
    letter-spacing: 0.06em;
}

.footer-tagline {
    font-size: 0.78rem;
    color: var(--gold);
    font-style: italic;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.footer-links a {
    font-family: var(--font-head);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

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

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
}

.footer-copy span {
    font-family: var(--font-head);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.25);
}

/* ===== DOWNLOAD BUTTON ===== */

.btn-download {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== REQUIRED MARK ===== */

.req {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: middle;
    font-size: 0;
}

/* ===== FIELD VALIDATION ===== */

.form-group input.field-invalid,
.form-group textarea.field-invalid {
    border-color: #e53935;
}

.field-tip {
    display: block;
    font-size: 0.76rem;
    color: #e53935;
    font-family: var(--font-head);
    margin-top: 4px;
}

/* ===== MODAL ===== */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 32, 33, 0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px 40px;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--grey-lt);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.modal-close:hover {
    background: #e0e0e0;
}

.modal-close svg {
    width: 16px;
    height: 16px;
    color: var(--text);
}

.modal-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
}

.modal-box h2 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal-box>p {
    font-size: 0.9rem;
    color: var(--text-lt);
    margin-bottom: 28px;
    line-height: 1.6;
}

.modal-box .form-group {
    margin-bottom: 16px;
}

.modal-box .form-group label span {
    color: var(--gold);
}

/* ===== SCROLL REVEAL ===== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-stats {
        max-width: 480px;
    }
    .vms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-cards {
        grid-template-columns: 1fr 1fr;
    }
    .software-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .project-row,
    .project-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        min-height: auto;
    }
    .project-img {
        height: 340px;
    }
    .project-info {
        padding: 40px 36px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 48px;
    }
    .section {
        padding: 64px 0;
    }
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--dark2);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .testimonial-slide {
        padding: 0 20px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .software-grid {
        grid-template-columns: 1fr;
    }
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-cards {
        grid-template-columns: 1fr;
    }
    .software-section {
        padding: 32px 24px;
    }
    .contact-form {
        padding: 32px 24px;
    }
    .project-info {
        padding: 32px 24px;
    }
    .project-img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-pills {
        display: none;
    }
    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}