/* ============================================================
   TAJ GLOBAL
   Corporate Website
   Navy + Gold Brand System
   ============================================================ */

:root {
    --navy: #102f52;
    --navy-dark: #081d34;
    --navy-deep: #061626;
    --navy-light: #194a7a;

    --gold: #d5b24c;
    --gold-dark: #b8922d;
    --gold-light: #ead58b;
    --gold-soft: #f8f1da;

    --white: #ffffff;
    --off-white: #fafaf8;
    --warm-bg: #f7f6f2;

    --text: #17202b;
    --text-soft: #56616e;
    --border: #e4e6e8;

    --success: #20a866;

    --shadow-sm:
        0 8px 30px rgba(8, 29, 52, 0.08);

    --shadow-md:
        0 20px 60px rgba(8, 29, 52, 0.12);

    --shadow-lg:
        0 30px 90px rgba(8, 29, 52, 0.18);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --container: 1240px;

    --transition:
        0.3s cubic-bezier(.2,.7,.2,1);
}


/* ============================================================
   RESET
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.65;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;

    max-width: 100%;
}

a {
    color: inherit;

    text-decoration: none;
}

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

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


/* ============================================================
   CONTAINER
   ============================================================ */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* ============================================================
   GLOBAL SECTIONS
   ============================================================ */

.section {
    position: relative;

    padding:
        110px 0;
}

.section-label {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 18px;

    color: var(--gold-dark);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}

.section-label::before {
    width: 30px;

    height: 2px;

    content: "";

    background: var(--gold);
}

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

.section-heading {
    max-width: 750px;

    margin-bottom: 52px;
}

.section-heading.center {
    margin-right: auto;

    margin-left: auto;

    text-align: center;
}

.section-heading.center .section-label {
    justify-content: center;
}

.section-heading h2,
.about-content h2,
.software-content h2,
.contact-heading h2,
.solutions-heading h2 {
    margin-bottom: 20px;

    color: var(--navy);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            40px,
            4.5vw,
            64px
        );

    font-weight: 700;

    line-height: 0.98;

    letter-spacing: -1.5px;
}

.section-heading h2 span,
.about-content h2 span,
.software-content h2 span,
.contact-heading h2 span {
    color: var(--gold-dark);
}

.section-heading p,
.about-content p,
.software-content p,
.contact-heading p {
    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.85;
}


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

.btn {
    display: inline-flex;

    min-height: 48px;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        12px 23px;

    border:
        1px solid transparent;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 750;

    line-height: 1;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--navy-dark);

    background:
        linear-gradient(
            135deg,
            #e4c866,
            var(--gold)
        );

    border-color: var(--gold);

    box-shadow:
        0 10px 30px rgba(213, 178, 76, 0.24);
}

.btn-primary:hover {
    background:
        linear-gradient(
            135deg,
            #edd983,
            #cfa53c
        );

    box-shadow:
        0 14px 35px rgba(213, 178, 76, 0.32);
}

.btn-large {
    min-height: 56px;

    padding:
        16px 28px;

    font-size: 15px;
}

.btn-outline-light {
    color: var(--white);

    background:
        rgba(255, 255, 255, 0.05);

    border-color:
        rgba(255, 255, 255, 0.35);

    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background:
        rgba(255, 255, 255, 0.11);

    border-color: var(--gold);
}

.btn-dark {
    color: var(--white);

    background: var(--navy);

    border-color: var(--navy);
}

.btn-dark:hover {
    background: var(--navy-dark);
}


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

.site-header {
    position: fixed;

    z-index: 1000;

    top: 0;

    right: 0;

    left: 0;

    background:
        rgba(255, 255, 255, 0.96);

    border-bottom:
        1px solid rgba(16, 47, 82, 0.08);

    box-shadow:
        0 3px 20px rgba(8, 29, 52, 0.04);

    backdrop-filter:
        blur(16px);

    transition:
        box-shadow var(--transition),
        background var(--transition);
}

.site-header.scrolled {
    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 12px 40px rgba(8, 29, 52, 0.09);
}

.header-container {
    display: flex;

    min-height: 88px;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}

.brand-logo {
    width: 184px;

    max-height: 72px;

    object-fit: contain;

    object-position: left center;
}

.desktop-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 32px;
}

.desktop-nav a {
    position: relative;

    padding:
        31px 0;

    color: #263442;

    font-size: 14px;

    font-weight: 650;
}

.desktop-nav a::after {
    position: absolute;

    bottom: 22px;

    left: 50%;

    width: 0;

    height: 2px;

    content: "";

    background: var(--gold);

    transform:
        translateX(-50%);

    transition:
        width var(--transition);
}

.desktop-nav a:hover {
    color: var(--navy);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;

    align-items: center;

    gap: 12px;
}

.header-quote {
    min-width: 120px;
}

.mobile-menu-button {
    display: none;

    width: 46px;

    height: 46px;

    align-items: center;

    justify-content: center;

    color: var(--navy);

    background: var(--off-white);

    border:
        1px solid var(--border);

    border-radius: 8px;

    font-size: 20px;
}

.mobile-menu {
    display: none;
}


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

.hero {
    position: relative;

    min-height: 850px;

    padding:
        175px 0 100px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(25, 74, 122, 0.55),
            transparent 37%
        ),
        linear-gradient(
            125deg,
            var(--navy-deep),
            var(--navy) 55%,
            #164872
        );

    overflow: hidden;
}

.hero::before {
    position: absolute;

    top: -220px;

    right: -180px;

    width: 600px;

    height: 600px;

    content: "";

    border:
        1px solid rgba(213, 178, 76, 0.22);

    border-radius: 50%;
}

.hero::after {
    position: absolute;

    right: 100px;

    bottom: -350px;

    width: 650px;

    height: 650px;

    content: "";

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.4;
}

.hero-glow-one {
    top: 120px;

    right: 15%;

    width: 250px;

    height: 250px;

    background: var(--gold);
}

.hero-glow-two {
    bottom: 20px;

    left: -70px;

    width: 260px;

    height: 260px;

    background: #1667a8;
}

.hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.03fr)
        minmax(0, 0.97fr);

    align-items: center;

    gap: 70px;
}

.eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.6px;
}

.eyebrow-line {
    width: 40px;

    height: 2px;

    background: var(--gold);
}

.hero h1 {
    max-width: 730px;

    margin-bottom: 25px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            55px,
            6vw,
            87px
        );

    font-weight: 700;

    line-height: 0.91;

    letter-spacing: -2.2px;
}

.hero h1 span {
    display: block;

    color: var(--gold-light);
}

.hero-description {
    max-width: 650px;

    margin-bottom: 34px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 18px;

    line-height: 1.75;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 38px;
}

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap:
        14px 24px;

    color:
        rgba(255, 255, 255, 0.74);

    font-size: 13px;

    font-weight: 600;
}

.hero-trust div {
    display: flex;

    align-items: center;

    gap: 7px;
}

.hero-trust i {
    color: var(--gold);
}


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

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;

    max-width: 580px;

    margin-left: auto;

    padding: 10px;
}

.hero-image-wrap::before {
    position: absolute;

    z-index: -1;

    top: -24px;

    right: -24px;

    width: 86%;

    height: 86%;

    content: "";

    border:
        1px solid rgba(213, 178, 76, 0.52);

    border-radius:
        48% 52% 46% 54% /
        48% 44% 56% 52%;
}

.hero-image {
    width: 100%;

    height: 590px;

    object-fit: cover;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius:
        46% 54% 45% 55% /
        43% 45% 55% 57%;

    box-shadow: var(--shadow-lg);
}

.hero-image-overlay {
    position: absolute;

    inset: 10px;

    border-radius:
        46% 54% 45% 55% /
        43% 45% 55% 57%;

    background:
        linear-gradient(
            180deg,
            transparent 30%,
            rgba(5, 20, 35, 0.56)
        );

    pointer-events: none;
}

.hero-ring {
    position: absolute;

    border:
        1px solid rgba(213, 178, 76, 0.4);

    border-radius: 50%;
}

.hero-ring-one {
    top: -18px;

    left: -35px;

    width: 130px;

    height: 130px;
}

.hero-ring-two {
    right: -25px;

    bottom: 35px;

    width: 85px;

    height: 85px;
}

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 245px;

    padding:
        16px 18px;

    color: var(--navy);

    background:
        rgba(255, 255, 255, 0.96);

    border:
        1px solid rgba(213, 178, 76, 0.28);

    border-radius: 14px;

    box-shadow: var(--shadow-md);

    backdrop-filter: blur(12px);
}

.floating-card-top {
    top: 60px;

    left: -60px;
}

.floating-card-bottom {
    right: -20px;

    bottom: 55px;
}

.floating-icon {
    display: grid;

    width: 47px;

    height: 47px;

    flex-shrink: 0;

    place-items: center;

    color: var(--navy);

    background: var(--gold-soft);

    border-radius: 50%;

    font-size: 19px;
}

.floating-card small {
    display: block;

    margin-bottom: 3px;

    color: #77818b;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}

.floating-card strong {
    display: block;

    font-size: 13px;
}


/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
    position: relative;

    z-index: 5;

    background: var(--white);

    border-bottom:
        1px solid var(--border);

    box-shadow: var(--shadow-sm);
}

.trust-items {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    min-height: 96px;
}

.trust-items span {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 20px 13px;

    color: #43505e;

    border-right:
        1px solid var(--border);

    font-size: 12px;

    font-weight: 700;

    text-align: center;
}

.trust-items span:last-child {
    border-right: 0;
}

.trust-items i {
    color: var(--gold-dark);

    font-size: 17px;
}


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

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

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 90px;
}

.section-image {
    position: relative;

    padding:
        0 0 35px 35px;
}

.section-image::before {
    position: absolute;

    top: 30px;

    left: 0;

    width: 75%;

    height: 87%;

    content: "";

    background: var(--gold-soft);

    border-radius:
        22px;

    transform:
        rotate(-3deg);
}

.section-image img {
    position: relative;

    z-index: 2;

    width: 100%;

    height: 570px;

    object-fit: cover;

    border-radius:
        24px;

    box-shadow: var(--shadow-md);
}

.image-accent-card {
    position: absolute;

    z-index: 3;

    right: -30px;

    bottom: 0;

    display: flex;

    min-width: 270px;

    align-items: center;

    gap: 15px;

    padding:
        20px 22px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );

    border:
        1px solid rgba(213, 178, 76, 0.4);

    border-radius: 14px;

    box-shadow: var(--shadow-md);
}

.accent-symbol {
    display: grid;

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    place-items: center;

    color: var(--gold);

    border:
        1px solid rgba(213, 178, 76, 0.5);

    border-radius: 50%;
}

.image-accent-card strong,
.image-accent-card span {
    display: block;
}

.image-accent-card strong {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 24px;

    line-height: 1;
}

.image-accent-card span {
    margin-top: 4px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 11px;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.about-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin:
        32px 0;
}

.about-feature {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 700;
}

.about-feature i {
    display: grid;

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    place-items: center;

    color: var(--navy);

    background: var(--gold-soft);

    border-radius: 50%;

    font-size: 10px;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 800;
}

.text-link i {
    color: var(--gold-dark);

    transition:
        transform var(--transition);
}

.text-link:hover i {
    transform: translateX(4px);
}


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

.services-section {
    background: var(--warm-bg);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.service-card {
    position: relative;

    background: var(--white);

    border:
        1px solid rgba(16, 47, 82, 0.08);

    border-radius: var(--radius);

    box-shadow:
        0 10px 35px rgba(8, 29, 52, 0.055);

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

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

    border-color:
        rgba(213, 178, 76, 0.52);

    box-shadow: var(--shadow-md);
}

.service-image {
    position: relative;

    height: 210px;

    overflow: hidden;
}

.service-image::after {
    position: absolute;

    inset: 0;

    content: "";

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(8, 29, 52, 0.42)
        );
}

.service-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-card-body {
    position: relative;

    padding:
        32px 28px 30px;
}

.service-icon {
    position: absolute;

    top: -30px;

    display: grid;

    width: 60px;

    height: 60px;

    place-items: center;

    color: var(--navy);

    background:
        linear-gradient(
            135deg,
            #f3dd85,
            var(--gold)
        );

    border:
        5px solid var(--white);

    border-radius: 50%;

    box-shadow:
        0 8px 20px rgba(16, 47, 82, 0.12);

    font-size: 19px;
}

.service-card h3 {
    margin:
        10px 0 11px;

    color: var(--navy);

    font-size: 20px;

    line-height: 1.3;
}

.service-card p {
    margin-bottom: 20px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.75;
}

.service-card li {
    position: relative;

    margin-top: 8px;

    padding-left: 20px;

    color: #465361;

    font-size: 13px;
}

.service-card li::before {
    position: absolute;

    top: 9px;

    left: 1px;

    width: 6px;

    height: 6px;

    content: "";

    background: var(--gold);

    border-radius: 50%;
}


/* ============================================================
   SOLUTIONS DARK SECTION
   ============================================================ */

.solutions-section {
    position: relative;

    padding:
        120px 0;

    color: var(--white);

    background:
        linear-gradient(
            130deg,
            var(--navy-deep),
            var(--navy)
        );

    overflow: hidden;
}

.solutions-section::before {
    position: absolute;

    top: -220px;

    right: -130px;

    width: 540px;

    height: 540px;

    content: "";

    border:
        1px solid rgba(213, 178, 76, 0.20);

    border-radius: 50%;
}

.solutions-pattern {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black,
            transparent
        );
}

.solutions-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    align-items: center;

    gap: 100px;
}

.solutions-heading h2 {
    color: var(--white);
}

.solutions-heading h2 span {
    display: block;

    color: var(--gold-light);
}

.solutions-heading p {
    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.7);

    font-size: 17px;

    line-height: 1.8;
}

.solution-groups {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.solution-group {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    padding:
        28px 24px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 15px;

    backdrop-filter:
        blur(8px);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.solution-group:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.08);

    border-color:
        rgba(213, 178, 76, 0.46);
}

.solution-group-icon {
    display: grid;

    width: 47px;

    height: 47px;

    flex-shrink: 0;

    place-items: center;

    color: var(--gold-light);

    background:
        rgba(213, 178, 76, 0.10);

    border:
        1px solid rgba(213, 178, 76, 0.28);

    border-radius: 50%;
}

.solution-group h3 {
    margin-bottom: 7px;

    font-size: 17px;
}

.solution-group p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.60);

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   SOFTWARE FEATURE
   ============================================================ */

.software-feature {
    background: var(--white);
}

.software-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    align-items: center;

    gap: 90px;
}

.software-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin:
        28px 0 32px;
}

.software-tags span {
    padding:
        9px 14px;

    color: var(--navy);

    background: var(--gold-soft);

    border:
        1px solid rgba(213, 178, 76, 0.3);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;
}

.software-image-card {
    position: relative;

    padding: 25px;
}

.software-image-card::before {
    position: absolute;

    inset:
        55px 0 0 50px;

    content: "";

    background:
        linear-gradient(
            135deg,
            var(--gold-soft),
            #f5f1e5
        );

    border-radius: 25px;
}

.software-image-card img {
    position: relative;

    z-index: 2;

    width: 100%;

    height: 480px;

    object-fit: cover;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow-md);
}

.software-stat {
    position: absolute;

    z-index: 4;

    display: flex;

    min-width: 210px;

    align-items: center;

    gap: 12px;

    padding:
        14px 17px;

    background:
        rgba(255, 255, 255, 0.97);

    border:
        1px solid rgba(16, 47, 82, 0.1);

    border-radius: 12px;

    box-shadow: var(--shadow-sm);
}

.software-stat i {
    display: grid;

    width: 42px;

    height: 42px;

    place-items: center;

    color: var(--navy);

    background: var(--gold-soft);

    border-radius: 50%;
}

.software-stat strong,
.software-stat span {
    display: block;
}

.software-stat strong {
    color: var(--navy);

    font-size: 14px;
}

.software-stat span {
    color: var(--text-soft);

    font-size: 11px;
}

.stat-one {
    top: 4px;

    right: -10px;
}

.stat-two {
    bottom: 3px;

    left: -7px;
}


/* ============================================================
   WHY TAJ GLOBAL
   ============================================================ */

.why-section {
    background: var(--warm-bg);
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.why-card {
    position: relative;

    min-height: 285px;

    padding:
        32px 26px;

    background: var(--white);

    border:
        1px solid rgba(16, 47, 82, 0.08);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.why-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(213, 178, 76, 0.42);

    box-shadow: var(--shadow-md);
}

.why-number {
    position: absolute;

    top: 13px;

    right: 17px;

    color:
        rgba(16, 47, 82, 0.06);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 72px;

    font-weight: 700;

    line-height: 1;
}

.why-card > i {
    display: grid;

    width: 52px;

    height: 52px;

    margin-bottom: 24px;

    place-items: center;

    color: var(--navy);

    background: var(--gold-soft);

    border-radius: 50%;

    font-size: 19px;
}

.why-card h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 18px;
}

.why-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================================
   INDUSTRIES
   ============================================================ */

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

.industries-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.industry {
    display: flex;

    min-height: 125px;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 13px;

    color: var(--navy);

    background: var(--off-white);

    border:
        1px solid var(--border);

    border-radius: 13px;

    font-size: 13px;

    font-weight: 700;

    text-align: center;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.industry i {
    color: var(--gold-dark);

    font-size: 25px;
}

.industry:hover {
    transform: translateY(-5px);

    color: var(--white);

    background: var(--navy);

    border-color: var(--navy);
}

.industry:hover i {
    color: var(--gold);
}


/* ============================================================
   CTA
   ============================================================ */

.cta-section {
    position: relative;

    padding:
        75px 0;

    color: var(--white);

    background:
        linear-gradient(
            120deg,
            var(--navy),
            #174d7a
        );

    overflow: hidden;
}

.cta-section::before {
    position: absolute;

    top: -180px;

    right: 3%;

    width: 370px;

    height: 370px;

    content: "";

    border:
        1px solid rgba(213, 178, 76, 0.30);

    border-radius: 50%;
}

.cta-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    align-items: center;

    gap: 50px;
}

.cta-small {
    display: block;

    margin-bottom: 9px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.4px;
}

.cta-section h2 {
    margin-bottom: 9px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            40px,
            4vw,
            56px
        );

    line-height: 1;
}

.cta-section p {
    max-width: 680px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 15px;
}

.cta-actions {
    display: flex;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 10px;
}


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

.contact-section {
    background: var(--warm-bg);
}

.contact-heading {
    max-width: 700px;

    margin-bottom: 50px;
}

.contact-layout {
    display: grid;

    grid-template-columns:
        0.92fr
        1.08fr;

    align-items: start;

    gap: 45px;
}

.location-card {
    position: relative;

    display: flex;

    min-height: 145px;

    align-items: center;

    gap: 20px;

    margin-bottom: 15px;

    padding:
        28px 25px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;

    box-shadow: var(--shadow-sm);
}

.primary-location {
    border-color:
        rgba(213, 178, 76, 0.45);
}

.location-badge {
    position: absolute;

    top: 13px;

    right: 15px;

    padding:
        5px 9px;

    color: var(--navy);

    background: var(--gold-soft);

    border-radius: 30px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.location-badge.secondary {
    color: #596574;

    background: #f1f2f3;
}

.location-icon {
    display: grid;

    width: 58px;

    height: 58px;

    flex-shrink: 0;

    place-items: center;

    color: var(--navy);

    background:
        linear-gradient(
            135deg,
            #f3dd86,
            var(--gold)
        );

    border-radius: 50%;

    font-size: 20px;
}

.location-card h3 {
    margin:
        14px 0 3px;

    color: var(--navy);

    font-size: 18px;
}

.location-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 13px;
}

.direct-contact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 20px;
}

.direct-contact-card {
    display: flex;

    min-height: 100px;

    align-items: center;

    gap: 13px;

    padding:
        18px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 12px;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.direct-contact-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(213, 178, 76, 0.55);

    box-shadow: var(--shadow-sm);
}

.email-card {
    grid-column:
        1 / -1;
}

.direct-contact-icon {
    display: grid;

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    place-items: center;

    color: var(--navy);

    background: var(--gold-soft);

    border-radius: 50%;
}

.direct-contact-icon.whatsapp {
    color: #168f55;

    background: #e8f8ef;
}

.direct-contact-card small,
.direct-contact-card strong,
.direct-contact-card span {
    display: block;
}

.direct-contact-card small {
    margin-bottom: 3px;

    color: #7c8792;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;
}

.direct-contact-card strong {
    color: var(--navy);

    font-size: 12px;

    overflow-wrap: anywhere;
}

.hours-note {
    margin-top: 3px;

    color: var(--text-soft);

    font-size: 10px;
}


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

.contact-card {
    padding:
        38px;

    background: var(--white);

    border:
        1px solid rgba(16, 47, 82, 0.10);

    border-top:
        4px solid var(--gold);

    border-radius:
        18px;

    box-shadow: var(--shadow-md);
}

.contact-card-small {
    display: block;

    margin-bottom: 7px;

    color: var(--gold-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.contact-card h3 {
    margin-bottom: 7px;

    color: var(--navy);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 36px;

    line-height: 1.1;
}

.contact-card > p {
    margin-bottom: 27px;

    color: var(--text-soft);

    font-size: 13px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}

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

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #344352;

    font-size: 11px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding:
        13px 14px;

    color: var(--text);

    background: #fbfbfa;

    border:
        1px solid #dfe2e5;

    border-radius: 8px;

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);

    border-color: var(--gold);

    box-shadow:
        0 0 0 4px rgba(213, 178, 76, 0.12);
}

.form-submit {
    width: 100%;

    margin-top: 4px;
}


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

.site-footer {
    position: relative;

    padding:
        75px 0 0;

    color: var(--white);

    background: var(--navy-deep);
}

.site-footer::before {
    position: absolute;

    top: 0;

    right: 0;

    left: 0;

    height: 3px;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.35fr;

    gap: 60px;

    padding-bottom: 55px;
}

.footer-logo {
    width: 220px;

    max-height: 120px;

    margin-bottom: 20px;

    object-fit: contain;

    object-position: left center;

    background: var(--white);

    border-radius: 8px;

    padding: 5px;
}

.footer-brand p {
    max-width: 360px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 13px;

    line-height: 1.8;
}

.footer-tagline {
    margin-top: 20px;

    color: var(--gold);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 16px;

    letter-spacing: 2px;
}

.footer-column {
    display: flex;

    align-items: flex-start;

    flex-direction: column;

    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: 13px;

    letter-spacing: .7px;
}

.footer-column a,
.footer-column span {
    color:
        rgba(255, 255, 255, 0.57);

    font-size: 12px;

    line-height: 1.6;

    transition:
        color var(--transition);
}

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

.footer-bottom {
    display: flex;

    min-height: 68px;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255, 255, 255, 0.40);

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    font-size: 11px;
}

.footer-bottom div {
    display: flex;

    gap: 20px;
}

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


/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.floating-whatsapp {
    position: fixed;

    z-index: 900;

    right: 22px;

    bottom: 22px;

    display: flex;

    min-height: 52px;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        0 18px;

    color: var(--white);

    background: #20aa63;

    border:
        3px solid var(--white);

    border-radius: 50px;

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.20);

    font-size: 13px;

    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition);
}

.floating-whatsapp i {
    font-size: 22px;
}

.floating-whatsapp:hover {
    transform:
        translateY(-4px);

    background: #188d50;
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .65s ease,
        transform .65s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* ============================================================
   RESPONSIVE - LARGE TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 20px;
    }

    .desktop-nav a {
        font-size: 13px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-image {
        height: 520px;
    }

    .floating-card-top {
        left: -25px;
    }

    .about-grid,
    .software-grid {
        gap: 55px;
    }

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

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

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

    .footer-column:last-child {
        grid-column:
            2 / -1;
    }
}


/* ============================================================
   RESPONSIVE - TABLET / MOBILE NAV
   ============================================================ */

@media (max-width: 900px) {

    .container {
        width:
            min(
                calc(100% - 36px),
                var(--container)
            );
    }

    .section {
        padding:
            85px 0;
    }

    .desktop-nav,
    .header-quote {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .header-container {
        min-height: 78px;
    }

    .brand-logo {
        width: 160px;

        max-height: 62px;
    }

    .mobile-menu {
        position: absolute;

        top: 78px;

        right: 0;

        left: 0;

        display: flex;

        padding:
            18px;

        flex-direction: column;

        gap: 3px;

        background: var(--white);

        border-top:
            1px solid var(--border);

        box-shadow: var(--shadow-md);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .mobile-menu.open {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    .mobile-menu > a:not(.btn) {
        padding:
            13px 8px;

        color: var(--navy);

        border-bottom:
            1px solid #eeeeec;

        font-size: 14px;

        font-weight: 650;
    }

    .mobile-menu .btn {
        margin-top: 11px;
    }

    .hero {
        min-height: auto;

        padding:
            140px 0 80px;
    }

    .hero-grid {
        grid-template-columns:
            1fr;

        gap: 70px;
    }

    .hero-content {
        max-width: 700px;

        text-align: center;

        margin-inline: auto;
    }

    .eyebrow,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-description {
        margin-right: auto;

        margin-left: auto;
    }

    .hero-image-wrap {
        max-width: 550px;

        margin:
            0 auto;
    }

    .trust-items {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .trust-items span:nth-child(3) {
        border-right: 0;
    }

    .trust-items span:nth-child(-n+3) {
        border-bottom:
            1px solid var(--border);
    }

    .about-grid,
    .software-grid,
    .solutions-grid,
    .contact-layout,
    .cta-container {
        grid-template-columns:
            1fr;
    }

    .about-grid {
        gap: 65px;
    }

    .about-visual {
        max-width: 650px;

        margin-inline: auto;
    }

    .section-image img {
        height: 500px;
    }

    .solutions-grid {
        gap: 55px;
    }

    .software-grid {
        gap: 55px;
    }

    .software-content {
        order: 1;
    }

    .software-visual {
        order: 2;
    }

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

    .cta-actions {
        justify-content: flex-start;
    }

    .contact-layout {
        gap: 40px;
    }
}


/* ============================================================
   RESPONSIVE - PHONE
   ============================================================ */

@media (max-width: 650px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .section {
        padding:
            70px 0;
    }

    .header-container {
        min-height: 72px;
    }

    .brand-logo {
        width: 145px;

        max-height: 55px;
    }

    .mobile-menu {
        top: 72px;
    }

    .hero {
        padding:
            120px 0 65px;
    }

    .hero h1 {
        font-size:
            clamp(
                48px,
                14vw,
                64px
            );

        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        align-items: center;

        flex-direction: column;

        gap: 8px;
    }

    .hero-image {
        height: 420px;
    }

    .floating-card {
        min-width: 210px;

        padding:
            12px 13px;
    }

    .floating-card-top {
        top: 35px;

        left: -7px;
    }

    .floating-card-bottom {
        right: -7px;

        bottom: 30px;
    }

    .floating-icon {
        width: 39px;

        height: 39px;
    }

    .floating-card strong {
        font-size: 11px;
    }

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

    .trust-items span {
        border-bottom:
            1px solid var(--border);
    }

    .trust-items span:nth-child(odd) {
        border-right:
            1px solid var(--border);
    }

    .trust-items span:nth-child(even) {
        border-right: 0;
    }

    .section-heading h2,
    .about-content h2,
    .software-content h2,
    .contact-heading h2,
    .solutions-heading h2 {
        font-size:
            clamp(
                38px,
                11vw,
                49px
            );
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading p,
    .about-content p,
    .software-content p,
    .contact-heading p {
        font-size: 15px;
    }

    .section-image {
        padding:
            0 0 30px 14px;
    }

    .section-image img {
        height: 390px;
    }

    .image-accent-card {
        right: -5px;

        min-width: 225px;

        padding:
            15px;
    }

    .about-features {
        grid-template-columns:
            1fr;
    }

    .services-grid,
    .solution-groups,
    .why-grid,
    .industries-grid {
        grid-template-columns:
            1fr;
    }

    .service-image {
        height: 220px;
    }

    .solutions-section {
        padding:
            85px 0;
    }

    .software-image-card {
        padding:
            10px;
    }

    .software-image-card img {
        height: 360px;
    }

    .software-stat {
        min-width: 175px;

        padding:
            11px;
    }

    .stat-one {
        top: -15px;

        right: -3px;
    }

    .stat-two {
        bottom: -15px;

        left: -2px;
    }

    .cta-section {
        padding:
            60px 0;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .direct-contact-grid,
    .form-row {
        grid-template-columns:
            1fr;
    }

    .email-card {
        grid-column: auto;
    }

    .contact-card {
        padding:
            28px 20px;
    }

    .location-card {
        padding:
            26px 18px;
    }

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

        gap: 34px;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-logo {
        width: 190px;
    }

    .footer-bottom {
        min-height: 100px;

        align-items: flex-start;

        justify-content: center;

        flex-direction: column;

        padding:
            20px 0;
    }

    .floating-whatsapp {
        right: 14px;

        bottom: 14px;

        width: 55px;

        height: 55px;

        padding: 0;

        border-radius: 50%;
    }

    .floating-whatsapp span {
        display: none;
    }
}


/* ============================================================
   VERY SMALL PHONE
   ============================================================ */

@media (max-width: 390px) {

    .brand-logo {
        width: 130px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-image {
        height: 360px;
    }

    .floating-card {
        min-width: 185px;
    }

    .floating-card small {
        font-size: 9px;
    }

    .floating-card strong {
        font-size: 10px;
    }
}


/* ============================================================
   ACCESSIBILITY / MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}
