/* =========================================================
   DIVERSE BRANDING
   MAIN WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --navy: #123B63;
    --navy-dark: #0B2945;
    --black: #080808;
    --grey-dark: #3f4650;
    --grey: #6b7280;
    --grey-light: #f3f4f6;
    --grey-border: #e5e7eb;
    --white: #ffffff;

    --container: 1200px;

    --shadow-small: 0 5px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 12px 35px rgba(0, 0, 0, 0.10);

    --transition: 0.3s ease;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    line-height: 1.15;
    color: var(--navy);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.3rem;
}

p {
    color: var(--grey-dark);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--grey);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--grey-border);
}

.header-container {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: 280px;
    max-height: 100px;
    object-fit: contain;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation > a,
.nav-dropdown > a {
    position: relative;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--transition);
}

.main-navigation > a:not(.nav-cta)::after,
.nav-dropdown > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width var(--transition);
}

.main-navigation > a:not(.nav-cta):hover::after,
.nav-dropdown > a:hover::after {
    width: 100%;
}

.main-navigation > a:hover,
.nav-dropdown > a:hover {
    color: var(--grey-dark);
}


/* =========================================================
   DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    width: 230px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--grey-border);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 12px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    color: var(--navy);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.dropdown-menu a:hover {
    background: var(--grey-light);
    padding-left: 19px;
}


/* =========================================================
   NAVIGATION CTA
========================================================= */

.nav-cta {
    padding: 12px 20px;
    background: var(--black);
    color: var(--white) !important;
    border: 2px solid var(--black);
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--navy);
    border-color: var(--navy);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 1.8rem;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--grey-light);
}

.hero-container {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    margin-bottom: 25px;
    color: var(--navy);
}

.hero-text {
    max-width: 590px;
    margin-bottom: 35px;
    font-size: 1.15rem;
    color: var(--grey-dark);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.button-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.button-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.button-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.button-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.button-light {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.button-light:hover {
    background: transparent;
    color: var(--white);
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    background: var(--black);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 125px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.2;
}

.trust-item span {
    margin-top: 5px;
    color: #c7cbd1;
    font-size: 0.85rem;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 20px;
}

.section-heading p:last-child {
    font-size: 1.05rem;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--grey-border);
    box-shadow: var(--shadow-small);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-medium);
}

.service-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 12px;
}

.service-content p {
    margin-bottom: 20px;
}

.service-content a {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
}

.service-content a:hover {
    text-decoration: underline;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: var(--grey-light);
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.why-content > p:not(.eyebrow) {
    margin-top: 25px;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.why-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit {
    padding-left: 20px;
    border-left: 3px solid var(--black);
}

.benefit h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit p {
    font-size: 0.92rem;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    position: relative;
    padding: 35px 25px;
    border: 1px solid var(--grey-border);
    background: var(--white);
}

.process-step span {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--grey);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.92rem;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-section {
    background: var(--grey-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--black);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

.portfolio-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        transparent 55%
    );
}

.portfolio-item span {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

.center-button {
    margin-top: 40px;
    text-align: center;
}


/* =========================================================
   CLIENT LOGOS
========================================================= */

.clients-section {
    background: var(--white);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    gap: 25px;
}

.client-logos img {
    width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all var(--transition);
}

.client-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    background: var(--navy);
    padding: 90px 0;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-container .eyebrow {
    color: #aeb5c0;
}

.cta-container h2 {
    max-width: 700px;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-container p {
    max-width: 650px;
    color: #cbd0d8;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-top: 75px;
    padding-bottom: 65px;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    width: 280px;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-about p {
    color: #aeb5c0;
    font-size: 0.92rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1rem;
}

.footer-column a {
    color: #aeb5c0;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .container {
    padding: 22px 0;
}

.footer-bottom p {
    color: #8d949e;
    font-size: 0.8rem;
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.whatsapp-button {
    position: fixed;
    z-index: 2000;
    right: 25px;
    bottom: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 20px;

    background: #111;
    color: #fff;

    font-size: 0.85rem;
    font-weight: 700;

    border: 2px solid #fff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    transition: all var(--transition);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    background: #222;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .main-navigation {
        gap: 18px;
    }

    .hero-container {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 768px) {

    .header-container {
        min-height: 75px;
    }

    .logo img {
        width: 175px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-navigation {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image img {
        min-height: 350px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .section {
        padding: 75px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-image {
        order: -1;
    }

    .why-image img {
        min-height: 350px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-button {
        right: 15px;
        bottom: 15px;
        padding: 12px 16px;
        font-size: 0.78rem;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        min-height: 105px;
    }
}

/* =========================
   REQUEST A QUOTE SECTION
========================= */

#quote {
    width: 100%;
    padding: 90px 20px;
    margin: 0;
}

#quote .container {
    max-width: 900px;
    margin: 0 auto;
}

#quote .section-heading {
    text-align: center;
    margin-bottom: 45px;
}

#quote .section-heading h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

#quote .section-heading p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}

#quote .quote-form {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

#quote .form-row {
    display: flex;
    gap: 25px;
    width: 100%;
}

#quote .form-group {
    width: 100%;
    margin-bottom: 25px;
}

#quote .form-row .form-group {
    flex: 1;
}

#quote label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

#quote input,
#quote select,
#quote textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

#quote textarea {
    min-height: 160px;
    resize: vertical;
}

#quote .button {
    display: inline-block;
    padding: 15px 32px;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 700px) {

    #quote {
        padding: 60px 20px;
    }

    #quote .section-heading h2 {
        font-size: 32px;
    }

    #quote .form-row {
        flex-direction: column;
        gap: 0;
    }

}

/* =========================
   QUOTE SUCCESS MESSAGE
========================= */

#quote-success {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    background: #f4f7fb;
    border: 1px solid #d8e0ea;
}

#quote-success h3 {
    margin: 0 0 10px;
    font-size: 28px;
}

#quote-success p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

/* =========================
   FULL GALLERY
========================= */

.gallery-section {
    width: 100%;
    padding: 90px 20px;
}

.gallery-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-section .section-heading h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.gallery-section .section-heading p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-section .section-heading h2 {
        font-size: 32px;
    }

}

/* =========================
   HEADER LOGO SIZE
========================= */

.site-header .logo img {
    width: 280px;
    height: auto;
    display: block;
}

@media (max-width: 700px) {

    .site-header .logo img {
        width: 210px;
    }

}
/* =========================
   SERVICE PAGES
========================= */

.service-page-hero {
    padding: 100px 20px;
    text-align: center;
}

.service-page-hero .container {
    max-width: 900px;
    margin: 0 auto;
}

.service-page-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 15px auto 25px;
    max-width: 850px;
}

.service-page-hero .hero-description {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 19px;
    line-height: 1.7;
}

.service-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1000px;
}

.service-page-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.service-page-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-page-content ul {
    padding-left: 25px;
}

.service-page-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-cta {
    text-align: center;
}

.service-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

@media (max-width: 700px) {

    .service-page-hero {
        padding: 70px 20px;
    }

    .service-page-hero h1 {
        font-size: 36px;
    }

    .service-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-cta h2 {
        font-size: 30px;
    }

}

/* =========================
   CORPORATE APPAREL PAGE
========================= */

.corporate-apparel-page {
    background: #f4f4f4;
}

.industrial-workwear-page {
    background: #f4f4f4;
}

.promotional-gifting-page {
    background: #f4f4f4;
}

/* Corporate Apparel page watermark */
.corporate-apparel-page {
    position: relative;
    background-color: #eeeeee;
}

.corporate-apparel-page::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 650px;
    height: 650px;
    background-image: url("../images/Golf%20Shirt%20Order.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.corporate-apparel-page > * {
    position: relative;
    z-index: 1;
}

/* Anti-spam honeypot field */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}