/* =============================================
   FORSA Design 1 — Immersive Industry
   Light base + animated oil/pipeline elements
   Same palette as Design 2
   ============================================= */

:root {
    --white: #ffffff;
    --off-white: #f4f6fa;
    --gray-50: #edf1f7;
    --gray-100: #dce3ed;
    --gray-200: #c0cad8;
    --gray-300: #a0aec0;
    --gray-400: #718096;
    --gray-500: #4a5568;
    --gray-600: #2d3748;
    --gray-700: #1a202c;
    --gray-800: #0f141a;
    --primary: #0054A4;
    --primary-dark: #002F6C;
    --primary-light: #198FCB;
    --accent: #009DD9;
    --accent-light: #5BC4F1;
    --accent-dark: #0078B8;
    --navy: #0A1628;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--gray-700);
    line-height: 1.2
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 100px 0;
    position: relative
}

.overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px
}

.overline.light {
    color: var(--accent-light)
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.gradient-text-light {
    background: linear-gradient(135deg, var(--accent-light), #5BC4F1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 12px
}

.section-desc {
    color: var(--gray-400);
    font-size: 1rem
}

/* ========== Floating Oil Shapes ========== */
.floating-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden
}

.oil-drop {
    position: absolute;
    color: rgba(0, 157, 217, 0.04);
    animation: floatDrop linear infinite
}

.drop-1 {
    width: 60px;
    top: 10%;
    left: 5%;
    animation-duration: 18s
}

.drop-2 {
    width: 40px;
    top: 40%;
    right: 8%;
    animation-duration: 22s;
    animation-delay: -5s
}

.drop-3 {
    width: 50px;
    top: 70%;
    left: 15%;
    animation-duration: 25s;
    animation-delay: -10s
}

.gear-shape {
    position: absolute;
    color: rgba(0, 84, 164, 0.03);
    animation: rotateGear 30s linear infinite
}

.gear-1 {
    width: 120px;
    top: 20%;
    right: 3%
}

@keyframes floatDrop {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5
    }

    25% {
        opacity: 1
    }

    50% {
        transform: translateY(-80px) rotate(15deg)
    }

    75% {
        opacity: 0.6
    }

    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5
    }
}

@keyframes rotateGear {
    to {
        transform: rotate(360deg)
    }
}

/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition)
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09)
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

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

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

.nav-logo-text {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1.5px
}

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

.nav-link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-500);
    border-radius: 8px
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary)
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 8px
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 84, 164, 0.25)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition)
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* ========== Hero ========== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, rgba(8, 14, 22, 0.92) 0%, rgba(30, 42, 58, 0.78) 50%, rgba(10, 18, 32, 0.93) 100%), url('hero-bg-new.jpeg') center/cover no-repeat
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(0, 157, 217, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 30%, rgba(0, 84, 164, 0.06) 0%, transparent 50%);
    pointer-events: none
}

.hero-pipeline {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.pipe-line {
    opacity: 0.5
}

.pipe-dot {
    filter: blur(1px)
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 100px;
    width: 100%;
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px
}

.badge-live {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: livePulse 2s infinite
}

@keyframes livePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 157, 217, 0.4)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 157, 217, 0)
    }
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.12
}

.title-line {
    display: block
}

.title-accent {
    display: block;
    position: relative
}

.title-accent-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff
}

.title-drop {
    position: absolute;
    left: -20px;
    top: -10px;
    width: 60px;
    height: 80px;
    opacity: 0.15;
    animation: dropFloat 5s ease-in-out infinite
}

@keyframes dropFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.hero-desc {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 84, 164, 0.2)
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 84, 164, 0.3)
}

.btn-primary:hover i {
    transform: translateX(4px)
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4)
}

.btn-glass:hover {
    border-color: #5BC4F1;
    color: #5BC4F1;
    background: rgba(255, 255, 255, 0.15)
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem
}

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

/* Hero Ring / Orbit */
.hero-ring-container {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto
}

.hero-ring {
    position: absolute;
    inset: 0
}

.ring-svg {
    width: 100%;
    height: 100%
}

.ring-progress {
    animation: ringRotate 12s linear infinite;
    transform-origin: center
}

@keyframes ringRotate {
    to {
        transform: rotate(360deg)
    }
}

.hero-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px
}

.hero-logo-center img {
    width: auto;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 6px 32px rgba(255, 255, 255, 0.18)) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.55))
}

.orbit-item {
    position: absolute
}

.orbit-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    animation: orbitFloat 4s ease-in-out infinite;
    white-space: nowrap
}

.orbit-card i {
    font-size: 1rem;
    color: var(--accent)
}

.orbit-card strong {
    font-size: 0.85rem;
    color: var(--gray-700);
    display: block
}

.orbit-card small {
    font-size: 0.7rem;
    color: var(--gray-400)
}

.orbit-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s
}

.orbit-2 {
    top: 55%;
    right: -10%;
    animation-delay: 1s
}

.orbit-3 {
    bottom: 5%;
    left: 5%;
    animation-delay: 2s
}

.orbit-1 .orbit-card {
    animation-duration: 4s
}

.orbit-2 .orbit-card {
    animation-duration: 5s
}

.orbit-3 .orbit-card {
    animation-duration: 4.5s
}

@keyframes orbitFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* Wave Dividers */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3
}

.wave-divider svg {
    width: 100%;
    height: auto;
    display: block
}

.wave-inverted {
    bottom: 0
}

/* ========== About ========== */
.about-section {
    background: var(--white);
    padding-bottom: 120px
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: var(--gray-50);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100)
}

.about-img {
    width: 55%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08))
}

.frame-accent {
    position: absolute;
    top: -8px;
    left: -8px;
    right: 60%;
    bottom: 60%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    pointer-events: none
}

.about-connector {
    position: absolute;
    top: 20%;
    right: -40px;
    width: 80px;
    height: 120px;
    overflow: visible
}

.connector-anim {
    animation: dashScroll 2s linear infinite
}

@keyframes dashScroll {
    to {
        stroke-dashoffset: -24
    }
}

.about-years-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 18px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg)
}

.years-num {
    font-family: var(--font-primary);
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
    line-height: 1
}

.years-label {
    font-size: 0.72rem;
    opacity: 0.8;
    display: block;
    margin-top: 2px
}

.about-visual {
    position: relative
}

.about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px
}

.about-text p {
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--gray-400)
}

.about-text p strong {
    color: var(--gray-700)
}

.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: var(--transition)
}

.about-feat:hover {
    border-color: var(--accent);
    transform: translateX(4px)
}

.feat-icon {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 2px
}

.about-feat h4 {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 2px
}

.about-feat p {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 0
}

/* ========== Services ========== */
.services-section {
    background: var(--off-white)
}

.services-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.svc-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: var(--transition);
    overflow: hidden
}

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

.svc-card.featured {
    border-color: rgba(0, 157, 217, 0.25)
}

.svc-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.svc-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 20px
}

.svc-bg-shape {
    position: absolute;
    inset: -5px;
    width: 70px;
    height: 70px;
    animation: rotateShape 20s linear infinite
}

@keyframes rotateShape {
    to {
        transform: rotate(360deg)
    }
}

.svc-icon-wrap i {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 60px
}

.svc-card:hover .svc-icon-wrap i {
    color: var(--accent)
}

.svc-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px
}

.svc-card>p {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.6
}

.svc-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.svc-tags span {
    padding: 4px 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--gray-400);
    font-weight: 500
}

.svc-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: var(--transition)
}

.svc-card:hover .svc-hover-line {
    width: 100%
}

/* ========== Video Section ========== */
.video-section {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.4
}

.oil-rig-svg {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: auto
}

.pump-anim {
    animation: pumpMove 2s ease-in-out infinite
}

@keyframes pumpMove {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.video-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.video-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 14px
}

.video-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    font-size: 1rem
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 157, 217, 0.2)
}

.video-embed.vertical {
    padding-bottom: 0;
    aspect-ratio: 9/16;
    max-width: 320px;
    margin: 0 auto
}

.video-embed iframe,
.video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 35, 64, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 157, 217, 0.9);
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: playPulse 2.5s infinite
}

.play-btn:hover {
    background: var(--accent);
    transform: scale(1.1)
}

@keyframes playPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 157, 217, 0.4)
    }

    50% {
        box-shadow: 0 0 0 20px rgba(0, 157, 217, 0)
    }
}

/* ========== Stats Ring Cards ========== */
.stats-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--gray-100)
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.stat-ring-card {
    text-align: center
}

.stat-ring-svg {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 12px
}

.stat-ring-svg svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.stat-progress {
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1)
}

.stat-ring-val {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-700)
}

.stat-ring-val span {
    font-size: 1.5rem
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500
}

/* ========== Sectors Marquee ========== */
.sectors-section {
    background: var(--off-white);
    padding-bottom: 60px
}

.marquee-wrapper {
    overflow: hidden;
    padding: 30px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-top: 30px
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content
}

@keyframes marqueeScroll {
    to {
        transform: translateX(-50%)
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gray-600);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: var(--transition)
}

.marquee-item i {
    font-size: 1.1rem;
    color: var(--accent)
}

.marquee-item:hover {
    border-color: var(--accent);
    color: var(--primary);
    transform: scale(1.05)
}

/* ========== CTA ========== */
.cta-section {
    padding: 40px 0 80px;
    background: var(--off-white)
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg)
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 157, 217, 0.1);
    pointer-events: none
}

.cta-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    color: var(--white)
}

.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    position: relative;
    z-index: 1
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--primary);
    position: relative;
    z-index: 1
}

.cta-card .btn-primary:hover {
    background: var(--accent-light);
    color: var(--primary-dark)
}

/* ========== Contact ========== */
.contact-section {
    background: var(--white)
}

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

.contact-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px
}

.contact-info>p {
    color: var(--gray-400);
    margin-bottom: 28px
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0
}

.contact-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-700)
}

.contact-item span {
    font-size: 0.82rem;
    color: var(--gray-400)
}

.social-row {
    display: flex;
    gap: 10px
}

.social-row a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition)
}

.social-row a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px)
}

/* Form */
.contact-form {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px
}

.contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--gray-700)
}

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

.fg {
    margin-bottom: 14px
}

.fg label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    color: var(--gray-700);
    font-family: var(--font-secondary);
    font-size: 0.88rem;
    transition: var(--transition);
    outline: none
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--gray-300)
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 84, 164, 0.08)
}

.fg select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path d="M1 1l5 5 5-5" stroke="%23a0aec0" stroke-width="2" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center
}

.fg textarea {
    resize: vertical;
    min-height: 90px
}

/* Footer */
.footer {
    background: #0f141a;
    padding: 50px 0 0
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(0, 157, 217, 0.25), transparent) 1
}

.ft-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    max-width: 260px
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease
}

.footer-col a:hover {
    color: var(--accent)
}

.footer-bottom {
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    text-align: center
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35)
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 34px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #FFF;
}

/* Team Collage */
.collage-wrapper {
    position: relative;
    width: 100%;
}

.collage-arrow {
    display: none; /* Hidden on desktop */
}

.collage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.collage-grid img {
    height: 180px;
    flex-grow: 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}
.collage-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .collage-wrapper {
        display: flex;
        align-items: center;
    }
    
    .collage-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        position: absolute;
        z-index: 10;
        cursor: pointer;
        box-shadow: var(--shadow-md);
    }
    .collage-arrow.prev-arrow { left: -10px; }
    .collage-arrow.next-arrow { right: -10px; }
    
    .collage-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding-bottom: 10px; /* space for scrollbar */
        /* Hide scrollbar */
        scrollbar-width: none; 
    }
    .collage-grid::-webkit-scrollbar {
        display: none;
    }
    
    .collage-grid img {
        flex: 0 0 85%;
        max-width: 85%;
        height: 250px;
        scroll-snap-align: center;
        border-radius: 16px;
    }
    .collage-grid img:hover {
        transform: none; /* Disable hover scale on mobile to prevent clipping */
    }
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1)
}

[data-animate="fade-right"] {
    transform: translateX(-40px)
}

[data-animate="fade-left"] {
    transform: translateX(40px)
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0)
}

/* Responsive */
@media(max-width:1024px) {
    .services-carousel {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 28px 28px;
        gap: 4px;
        transition: var(--transition);
        border-left: 1px solid var(--gray-100)
    }

    .nav-links.open {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 100px
    }

    .hero-ring-container {
        display: none
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .services-carousel {
        grid-template-columns: 1fr
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .oil-rig-svg {
        display: none
    }
}