﻿/* =========================================
   ULTRA-LUXURY VISUAL SYSTEM
========================================= */
:root {
    --sanad-navy: #051024;
    --sanad-navy-light: #0B1B3D;
    --sanad-blue: #2B82F6;
    --sanad-cyan: #00C2CB;
    --bg-light: #F7F9FC;
    --bg-white: #FFFFFF;
    --header-height: 90px;
    --radius-lg: 24px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--sanad-navy);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
}

.py-luxury {
    padding: clamp(5rem, 8vw, 8rem) 0;
}

/* Typography */
.h-mega {
    font-size: clamp(2.5rem, 6vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.h-section {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.text-accent {
    color: var(--sanad-blue);
}

.text-cyan {
    color: var(--sanad-cyan);
}

.section-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sanad-cyan);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

    .section-label::before {
        content: '';
        display: block;
        width: 30px;
        height: 3px;
        background: var(--sanad-cyan);
        border-radius: 2px;
    }

/* Background Patterns */
.bg-pattern-hex {
    background-color: var(--bg-white);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='69.2820323027551' viewBox='0 0 40 69.2820323027551' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 17.3205081L20 5.77350269L0 17.3205081L0 40.4145188L20 51.9615242L40 40.4145188L40 17.3205081ZM20 28.8675135L10 23.0940108L10 11.5470054L20 5.77350269L30 11.5470054L30 23.0940108L20 28.8675135Z' fill='rgba(11, 27, 61, 0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.bg-pattern-dot {
    background-color: var(--bg-light);
    background-image: radial-gradient(rgba(11, 27, 61, 0.06) 2px, transparent 2px);
    background-size: 30px 30px;
}

.bg-pattern-grid-dark {
    background-color: var(--sanad-navy);
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.bg-pattern-blueprint {
    background-color: var(--sanad-navy-light);
    background-image: linear-gradient(rgba(0, 194, 203, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 194, 203, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Buttons */
.btn-premium {
    background: var(--sanad-blue);
    color: var(--bg-white);
    padding: clamp(1rem, 2vw, 1.2rem) clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border: none;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 95% 100%, 0 100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

    .btn-premium::after {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255,255,255,0.2);
        clip-path: polygon(0 0, 100% 0, 100% 70%, 95% 100%, 0 100%);
        transition: 0.4s;
    }

    .btn-premium:hover {
        background: var(--sanad-navy);
        color: var(--bg-white);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(43, 130, 246, 0.2);
    }

        .btn-premium:hover::after {
            border-color: transparent;
        }

.btn-outline-cyan {
    background: transparent;
    color: var(--sanad-cyan);
    border: 2px solid var(--sanad-cyan);
    padding: clamp(1rem, 2vw, 1.2rem) clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

    .btn-outline-cyan:hover {
        background: var(--sanad-cyan);
        color: var(--sanad-navy);
        transform: translateY(-3px);
    }

/* =========================================
   SOLID STICKY HEADER
========================================= */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(5, 16, 36, 0.05);
}

.nav-link-custom {
    color: var(--sanad-navy);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin: 0 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

    .nav-link-custom:hover {
        color: var(--sanad-blue);
    }

.header-logo {
    height: clamp(40px, 4vw, 50px);
    filter: none;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .menu-btn span {
        width: 30px;
        height: 3px;
        background: var(--sanad-navy);
        transition: 0.3s;
        border-radius: 2px;
    }

@media (max-width: 992px) {
    .menu-btn {
        display: flex;
    }

    .desktop-nav {
        display: none !important;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 16, 36, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    transform: translateY(-20px);
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.mobile-header {
    padding: 1.5rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

    .close-btn:hover {
        color: var(--sanad-cyan);
        transform: rotate(90deg);
    }

.mobile-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 5vw;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: white;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    transform: translateX(-20px);
    opacity: 0;
}

.mobile-overlay.active .mobile-nav-link {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-link:hover {
    color: var(--sanad-cyan);
    padding-left: 10px;
}

.mobile-footer {
    padding: 2rem 5vw;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .mobile-footer span {
        color: var(--sanad-cyan);
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-footer p {
        color: rgba(255,255,255,0.6);
        margin: 0;
        font-size: 0.9rem;
    }

/* =========================================
   STICKY MARQUEE
========================================= */
.marquee-wrapper {
    position: sticky;
    top: var(--header-height);
    z-index: 990;
    background: var(--sanad-navy);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(5, 16, 36, 0.1);
}

.marquee-track {
    display: inline-flex;
    width: max-content;
    white-space: nowrap;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    font-size: .85rem;
    font-weight: 800;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    padding: 0 2rem;
    letter-spacing: 2px;
}

    .marquee-item span {
        color: var(--sanad-blue);
        margin: 0 15px;
    }

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    height: calc(100vh - var(--header-height));
    width: 100vw;
    background: var(--sanad-navy);
    position: relative;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 16, 36, 0.95) 0%, rgba(5, 16, 36, 0.3) 100%);
    z-index: 2;
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

/* =========================================
   GSAP ANIMATION CLASSES
========================================= */
.gsap-stagger-parent {
}

.gsap-stagger-item {
    opacity: 0;
    transform: translateY(50px);
}

.gsap-clip-wrap {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(5, 16, 36, 0.1);
}

.gsap-clip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gsap-fade-up {
    opacity: 0;
    transform: translateY(40px);
}

/* =========================================
   CORPORATE OVERVIEW
========================================= */
.corporate-section {
    position: relative;
    overflow: hidden;
}

.corp-main-img {
    height: 600px;
}

.floating-badge {
    position: absolute;
    bottom: 3rem;
    right: -2rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(5, 16, 36, 0.1);
    border-left: 4px solid var(--sanad-blue);
    z-index: 10;
    max-width: 250px;
}

    .floating-badge h4 {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--sanad-navy);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .floating-badge p {
        font-size: 0.85rem;
        font-weight: 700;
        color: #64748B;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }

@media (max-width: 992px) {
    .floating-badge {
        right: 2rem;
        bottom: -2rem;
    }
}

/* =========================================
   LEADERSHIP VISION
========================================= */
.leadership-section {
    background: var(--sanad-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    font-size: 8rem;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: -2rem;
    left: 10%;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

/* =========================================
   CLEANROOM STANDARDS
========================================= */
.cleanroom-img {
    height: 500px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checklist-icon {
    width: 24px;
    height: 24px;
    background: var(--sanad-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 5px;
}

/* =========================================
   MACHINERY WINDOW
========================================= */
.machinery-window {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
    box-shadow: 0 30px 60px rgba(5, 16, 36, 0.15);
}

    .machinery-window img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

.m-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,16,36,0.95) 0%, transparent 100%);
    z-index: 2;
}

.m-content {
    position: relative;
    z-index: 3;
    padding: clamp(2rem, 5vw, 5rem);
    color: white;
    max-width: 700px;
}

/* =========================================
   BENTO BOX ECOSYSTEM
========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(300px, 380px));
    gap: 1.5rem;
}

.bento-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(5, 16, 36, 0.05);
    transition: 0.4s;
}

    .bento-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(5, 16, 36, 0.12);
    }

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.bento-card:hover .bento-img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,16,36,0.95) 0%, rgba(5,16,36,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2rem, 4vw, 3rem);
    color: white;
}

.card-main {
    grid-column: span 8;
    grid-row: span 2;
}

.card-side-top {
    grid-column: span 4;
    grid-row: span 1;
}

.card-side-bot {
    grid-column: span 4;
    grid-row: span 1;
    background: var(--sanad-navy);
    color: white;
    padding: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .bento-card {
        min-height: 400px;
    }
}

/* =========================================
   GLOBAL REACH & METRICS
========================================= */
.reach-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(5,16,36,0.03);
    transition: 0.5s;
}

    .reach-card:hover {
        transform: translateY(-10px);
        border-color: var(--sanad-cyan);
        box-shadow: 0 30px 60px rgba(5,16,36,0.08);
    }

.cert-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .cert-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
        opacity: 0;
        transition: 0.5s;
    }

    .cert-card:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(0, 194, 203, 0.5);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

        .cert-card:hover::before {
            opacity: 1;
        }

.cert-icon-wrap {
    height: 90px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-svg {
    width: 80px;
    height: auto;
    fill: var(--bg-white);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    transition: 0.4s;
}

.cert-card:hover .cert-svg {
    transform: scale(1.1);
    fill: var(--sanad-cyan);
}

.metric-num {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-card {
    background: var(--bg-white);
    padding: 2rem;
    border-top: 4px solid var(--sanad-blue);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .timeline-card::after {
        content: attr(data-step);
        position: absolute;
        right: -10px;
        bottom: -20px;
        font-size: 8rem;
        font-weight: 900;
        color: rgba(11, 27, 61, 0.03);
        line-height: 1;
        pointer-events: none;
        transition: 0.3s;
    }

    .timeline-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

        .timeline-card:hover::after {
            color: rgba(43, 130, 246, 0.05);
            transform: scale(1.1);
        }

.timeline-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sanad-navy);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.timeline-desc {
    color: #64748B;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* =========================================
   CTA BANNER & FOOTER
========================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--sanad-blue) 0%, var(--sanad-cyan) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(3rem, 6vw, 5rem);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(43, 130, 246, 0.2);
}

    .cta-banner::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    }

.cta-content {
    position: relative;
    z-index: 2;
}

.mega-footer {
    background: var(--sanad-navy-light);
    color: white;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    height: 50px;
    background: white;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: var(--sanad-cyan);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: 0.3s;
    font-size: 0.95rem;
}

    .footer-link:hover {
        color: white;
        transform: translateX(5px);
    }

.newsletter-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
    margin-bottom: 1rem;
}

    .newsletter-input:focus {
        border-color: var(--sanad-cyan);
        background: rgba(255,255,255,0.1);
    }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    font-weight: bold;
}

    .social-icon:hover {
        background: var(--sanad-blue);
        border-color: var(--sanad-blue);
        transform: translateY(-3px);
        color: white;
    }


/* =========================================
   PRODUCT CAROUSEL (SWIPER)
========================================= */
.product-swiper {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 4rem; /* Space for pagination dots */
    overflow: visible; /* Allows hover shadows to not be cut off */
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(5, 16, 36, 0.05);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(5, 16, 36, 0.12);
        border-color: var(--sanad-cyan);
    }

.product-img-wrap {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--bg-light);
}

    .product-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-info h4 {
    color: var(--sanad-navy);
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* Pagination Styling */
.product-swiper .swiper-pagination-bullet {
    background: var(--sanad-navy);
    opacity: 0.2;
    width: 10px;
    height: 10px;
    transition: 0.3s;
}

.product-swiper .swiper-pagination-bullet-active {
    background: var(--sanad-blue);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}




/* =========================================
   INNER PAGES (HERO & LAYOUT)
========================================= */
.inner-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
}

.inner-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 16, 36, 0.8) 0%, rgba(5, 16, 36, 0.98) 100%);
    z-index: 2;
}

.breadcrumb-custom {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

    .breadcrumb-custom a {
        color: var(--bg-white);
        text-decoration: none;
        transition: 0.3s;
    }

        .breadcrumb-custom a:hover {
            color: var(--sanad-cyan);
        }

    .breadcrumb-custom span {
        color: rgba(255, 255, 255, 0.3);
        margin: 0 12px;
    }

/* Corporate Story Layout */
.story-block {
    border-left: 4px solid var(--sanad-blue);
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.value-card-pro {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(5,16,36,0.04);
    height: 100%;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

    .value-card-pro:hover {
        transform: translateY(-8px);
        border-color: var(--sanad-cyan);
        box-shadow: 0 20px 50px rgba(5,16,36,0.08);
    }

.value-icon-pro {
    font-size: 2.5rem;
    color: var(--sanad-blue);
    margin-bottom: 1.5rem;
}


/* =========================================
   CONTACT & PROCUREMENT PAGE
========================================= */
.contact-info-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(5,16,36,0.04);
    height: 100%;
    transition: 0.4s;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(5,16,36,0.08);
        border-color: var(--sanad-cyan);
    }

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(43, 130, 246, 0.1);
    color: var(--sanad-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.form-control-custom {
    background: #F7F9FC;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--sanad-navy);
    width: 100%;
    transition: 0.3s;
}

    .form-control-custom:focus {
        outline: none;
        border-color: var(--sanad-blue);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(43, 130, 246, 0.1);
    }

.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

    .contact-map-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }