/* ============================================
   Safety Security — Premium Manpower Hiring
   Stylesheet
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette */
    --primary: #111111;
    --secondary: #222222;
    --accent-gold: #d4af37;
    --hover-gold: #b8860b;
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --border: #eaeaea;
    --text: #555555;
    --text-dark: #1a1a1a;
    /* Typography */
    --font-head: "Poppins", sans-serif;
    --font-body: "Inter", sans-serif;
    /* Spacing (8px system) */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 2.5rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-10: 5rem;
    --space-12: 6rem;
    --space-16: 8rem;
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
    --shadow-gold-lg: 0 20px 50px rgba(212, 175, 55, 0.35);
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.4s var(--ease);
    --transition-slow: 0.7s var(--ease-out);
    /* Layout */
    --container: 1200px;
    --container-narrow: 820px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
/*    background: linear-gradient( rgba(0,0,0,.65), rgba(0,0,0,.65) ), url("https://images.unsplash.com/photo-1582139329536-e7284fece509") center/cover no-repeat;
*/
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem;
}

::selection {
    background: var(--accent-gold);
    color: var(--primary);
}

/* ---------- Container & Section ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-16) 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-10);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: var(--space-2);
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-2);
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 0.6rem 1.3rem;
    font-size: 0.85rem;
}

.btn-md {
    padding: 0.75rem 1.6rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2.4rem;
    font-size: 1rem;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}

    .btn-gold:hover {
        background: var(--hover-gold);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold-lg);
    }

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

    .btn-outline-gold:hover {
        background: var(--accent-gold);
        color: var(--primary);
        transform: translateY(-3px);
    }

.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .btn-glass:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--white);
        transform: translateY(-3px);
    }

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

    .btn-dark:hover {
        background: var(--secondary);
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-dark:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-3px);
    }

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

    .btn-whatsapp:hover {
        background: #1da851;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    }

/* Ripple effect */
.ripple {
    position: relative;
    overflow: hidden;
}

    .ripple .ripple-circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transform: scale(0);
        animation: ripple-anim 0.6s ease-out;
        pointer-events: none;
    }

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ---------- Loader ---------- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

    .loader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-inner {
    text-align: center;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
    mix-blend-mode: screen;
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-gold), var(--hover-gold));
    z-index: 9998;
    transition: width 0.1s;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition);
}

    .navbar.scrolled {
        background: rgba(17, 17, 17, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0.8rem 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    transition: opacity var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--white);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-gold), var(--hover-gold));
    color: var(--primary);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    box-shadow: var(--shadow-gold);
    transition: transform var(--transition);
}

.nav-logo:hover .logo-mark {
    transform: rotate(-8deg) scale(1.05);
}

.logo-text .gold {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--transition);
}

    .nav-link::after {
        content: "";
        position: absolute;
        bottom: 4px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-gold);
        transition: width var(--transition);
        transform: translateX(-50%);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--white);
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-actions-mobile {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 1001;
}

    .nav-toggle span {
        width: 100%;
        height: 2.5px;
        background: var(--white);
        border-radius: 2px;
        transition: all var(--transition);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.pexels.com/photos/35562107/pexels-photo-35562107.png?auto=compress&cs=tinysrgb&h=900&w=1600");
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(17, 17, 17, 0.75) 0%, rgba(17, 17, 17, 0.65) 50%, rgba(17, 17, 17, 0.85) 100% );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient( ellipse at 30% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 50% );
    animation: gradientMove 10s ease-in-out infinite alternate;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
        opacity: 0.6;
    }

    100% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-light {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: lightPulse 6s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.15);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-4);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto var(--space-3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto var(--space-6);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(16px);
    }
}

.scroll-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- About ---------- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .about-image img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        transition: transform 0.8s var(--ease-out);
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

.about-image-badge {
    position: absolute;
    bottom: var(--space-3);
    left: var(--space-3);
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.badge-number {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.2rem;
}

.about-content h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: var(--space-2);
}

.about-content > p {
    font-size: 1.05rem;
    margin-bottom: var(--space-3);
    line-height: 1.7;
}

.about-list {
    margin-bottom: var(--space-4);
}

    .about-list li {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        font-size: 1rem;
        color: var(--text-dark);
        font-weight: 500;
    }

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: relative;
}

    .check-icon::after {
        content: "";
        position: absolute;
        left: 8px;
        top: 5px;
        width: 6px;
        height: 11px;
        border: solid var(--primary);
        border-width: 0 2.5px 2.5px 0;
        transform: rotate(45deg);
    }

/* ---------- Services ---------- */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-3);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-gold), var(--hover-gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    transition: transform var(--transition);
}

    .service-icon svg {
        width: 32px;
        height: 32px;
        color: var(--accent-gold);
    }

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--accent-gold), var(--hover-gold));
}

    .service-card:hover .service-icon svg {
        color: var(--primary);
    }

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

/* ---------- Why Choose Us ---------- */
.why-us {
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

    .why-us .section-title,
    .why-us .section-desc {
        color: var(--white);
    }

    .why-us .section-desc {
        color: rgba(255, 255, 255, 0.7);
    }

.why-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-3);
    position: relative;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: all var(--transition);
}

/*    .why-card:hover {
        transform: translateY(-8px);
        border-color: rgba(212, 175, 55, 0.4);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    }*/

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-gold), var(--hover-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}

    .why-icon svg {
        width: 30px;
        height: 30px;
        color: var(--primary);
    }

.why-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
}

.why-stat-number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.why-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

/* ---------- How It Works ---------- */
.how-it-works {
    background: var(--light-bg);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
    padding-top: var(--space-4);
}

.timeline-line {
    position: absolute;
    top: calc(var(--space-4) + 30px);
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--hover-gold), var(--accent-gold));
    border-radius: 2px;
    opacity: 0.3;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.timeline-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 auto var(--space-3);
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}

.timeline-step.reveal-visible .timeline-num {
    background: linear-gradient(135deg, var(--accent-gold), var(--hover-gold));
    color: var(--primary);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.timeline-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

    .timeline-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .timeline-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
    }

    .timeline-card p {
        font-size: 0.9rem;
        color: var(--text);
        line-height: 1.6;
    }

/* ---------- Industries ---------- */
.industries {
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-3);
}

.industry-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

    .industry-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s var(--ease-out);
    }

    .industry-card:hover img {
        transform: scale(1.1);
    }

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 17, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-3);
    transition: background var(--transition);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.9) 100%);
}

.industry-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-left: 0;
    transition: padding-left var(--transition);
}

.industry-card:hover .industry-overlay h3 {
    padding-left: 14px;
}

.industry-overlay h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition);
}

.industry-card:hover .industry-overlay h3::before {
    width: 10px;
}

/* ---------- Gallery ---------- */
.gallery {
    background: var(--light-bg);
}

.masonry {
    columns: 3;
    column-gap: var(--space-3);
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: var(--space-3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

    .masonry-item:hover {
        box-shadow: var(--shadow-lg);
    }

    .masonry-item img {
        width: 100%;
        transition: transform 0.6s var(--ease-out);
    }

    .masonry-item:hover img {
        transform: scale(1.08);
    }

    .masonry-item figcaption {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        padding: var(--space-3);
        background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 17, 0.8) 100%);
        color: var(--white);
        font-family: var(--font-head);
        font-weight: 600;
        font-size: 1rem;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .masonry-item:hover figcaption {
        opacity: 1;
        transform: translateY(0);
    }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    opacity: 0;
    transition: opacity 0.3s;
}

    .lightbox.open {
        display: flex;
        opacity: 1;
    }

.lightbox-img {
    max-width: 80%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 1.5rem;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 2rem;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--accent-gold);
    color: var(--primary);
    border-color: var(--accent-gold);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

    .testimonials .section-title,
    .testimonials .section-desc {
        color: var(--white);
    }

    .testimonials .section-desc {
        color: rgba(255, 255, 255, 0.7);
    }

.testimonial-slider {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 1rem;
}

    .testimonial-card > div:first-child,
    .testimonial-card > p,
    .testimonial-card > .testimonial-author {
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        padding: var(--space-4);
    }

    .testimonial-card > p {
        background: rgba(255, 255, 255, 0.06);
        border: none;
        border-radius: 0;
        padding: var(--space-3) var(--space-4);
        font-size: 1.1rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
        font-style: italic;
    }

    .testimonial-card > div:first-child {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-bottom: none;
        padding-bottom: var(--space-2);
    }

.testimonial-stars {
    font-size: 1.3rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
}

.testimonial-card > .testimonial-author {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: var(--space-3) var(--space-4);
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.author-name {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-4);
}

    .testimonial-dots button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        transition: all var(--transition);
    }

        .testimonial-dots button.active {
            background: var(--accent-gold);
            width: 30px;
            border-radius: var(--radius-full);
        }

/* ---------- FAQ ---------- */
.faqs {
    background: var(--light-bg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

    .faq-item.active {
        box-shadow: var(--shadow-md);
        border-color: rgba(212, 175, 55, 0.4);
    }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    text-align: left;
    transition: color var(--transition);
}

.faq-item.active .faq-question {
    color: var(--accent-gold);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    position: relative;
    transition: background var(--transition), transform var(--transition);
}

    .faq-icon::before,
    .faq-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background: var(--accent-gold);
        border-radius: 2px;
        transition: transform var(--transition);
    }

    .faq-icon::before {
        width: 12px;
        height: 2.5px;
        transform: translate(-50%, -50%);
    }

    .faq-icon::after {
        width: 2.5px;
        height: 12px;
        transform: translate(-50%, -50%);
    }

.faq-item.active .faq-icon {
    background: var(--accent-gold);
    transform: rotate(180deg);
}

    .faq-item.active .faq-icon::before,
    .faq-item.active .faq-icon::after {
        background: var(--primary);
    }

    .faq-item.active .faq-icon::after {
        transform: translate(-50%, -50%) scaleY(0);
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

    .faq-answer p {
        padding: 0 var(--space-4) var(--space-3);
        color: var(--text);
        font-size: 0.95rem;
        line-height: 1.7;
    }

/* ---------- Contact ---------- */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-4);
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-2);
}

.contact-desc {
    font-size: 1rem;
    margin-bottom: var(--space-3);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

    .contact-details li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

.contact-ic {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-ic svg {
        width: 22px;
        height: 22px;
        color: var(--accent-gold);
    }

.detail-label {
    font-size: 0.8rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.contact-details a,
.contact-details span {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    transition: color var(--transition);
}

    .contact-details a:hover {
        color: var(--accent-gold);
    }

.contact-map-placeholder {
    position: relative;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-pin {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    animation: mapPinBounce 2s ease-in-out infinite;
}

    .map-pin svg {
        width: 26px;
        height: 26px;
        color: var(--primary);
    }

@keyframes mapPinBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.map-label {
    position: absolute;
    bottom: var(--space-2);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    z-index: 2;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .form-group label {
        font-family: var(--font-head);
        font-weight: 500;
        font-size: 0.85rem;
        color: var(--text-dark);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem 1rem;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        background: var(--white);
        color: var(--text-dark);
        transition: border-color var(--transition), box-shadow var(--transition);
        font-size: 0.95rem;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

.form-feedback {
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 1.2rem;
}

    .form-feedback.success {
        color: #2a9d4f;
    }

    .form-feedback.error {
        color: #d62828;
    }

.form-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-12) 0 var(--space-4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.footer-brand p {
    margin: var(--space-2) 0;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-brand .nav-logo {
    color: var(--white);
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
}

    .footer-socials a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition);
    }

        .footer-socials a svg {
            width: 18px;
            height: 18px;
            color: var(--white);
        }

        .footer-socials a:hover {
            background: var(--accent-gold);
            transform: translateY(-4px);
        }

            .footer-socials a:hover svg {
                color: var(--primary);
            }

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-2);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .footer-col ul a,
    .footer-col ul li {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        transition: color var(--transition);
    }

        .footer-col ul a:hover {
            color: var(--accent-gold);
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .footer-bottom p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
    }

.footer-credit {
    color: rgba(212, 175, 55, 0.7) !important;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--accent-gold);
        color: var(--primary);
        transform: translateY(-4px);
    }

    .back-to-top svg {
        width: 22px;
        height: 22px;
    }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 900;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

    .float-whatsapp svg {
        width: 30px;
        height: 30px;
        color: var(--white);
    }

    .float-whatsapp:hover {
        transform: scale(1.1);
    }

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

    .reveal.reveal-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-col:nth-child(4),
    .footer-col:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        gap: 0.5rem;
        transition: right 0.4s var(--ease);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

        .nav-menu.open {
            right: 0;
        }

    .nav-link {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .nav-actions {
        display: none;
    }

    .nav-actions-mobile {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .about-image img {
        height: 360px;
    }

    .timeline {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }

    .timeline-line {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .masonry {
        columns: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .section {
        padding: var(--space-12) 0;
    }

    .hero-content {
        padding: 7rem 1.2rem 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

        .hero-buttons .btn {
            width: 100%;
            max-width: 280px;
        }

    .hero-stats {
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .masonry {
        columns: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        bottom: 1.2rem;
        right: 1.2rem;
    }

    .float-whatsapp {
        bottom: 1.2rem;
        left: 1.2rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 0.8rem;
    }

    .lightbox-next {
        right: 0.8rem;
    }

    .lightbox-close {
        top: 1.2rem;
        right: 1.2rem;
    }

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 400px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
/* ================= LOGO ================= */


.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}



.logo-image img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}



/*.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
}
*/


/*    .logo-text .gold {
        color: #d4af37;
    }*/
/* ================= FOOTER LOGO ================= */


.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}



.footer-logo-mark {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}



    .footer-logo-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }



.footer-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
}



    .footer-logo-text .gold {
        color: #D4AF37;
    }
.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #ddd;
    line-height: 1.6;
}


    .footer-col ul li i {
        color: #D4AF37;
        margin-top: 5px;
        min-width: 18px;
    }


    .footer-col ul li a {
        color: #ddd;
        text-decoration: none;
        transition: .3s;
    }


        .footer-col ul li a:hover {
            color: #D4AF37;
        }