@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =================================*********
   DESIGN SYSTEM VARIABLES
   ================================********* */
:root {
    /* Colors */
    --color-primary: #0F172A;       /* Slate 900 (Professional & Deep) */
    --color-primary-light: #1E293B; /* Slate 800 */
    --color-accent: #0284C7;        /* Sky 600 (High-Tech Anodized Blue) */
    --color-accent-hover: #0369A1;  /* Sky 700 */
    --color-accent-glow: rgba(2, 132, 199, 0.15);
    --color-secondary: #475569;     /* Slate 600 (Steel gray) */
    --color-text-dark: #0F172A;
    --color-text-muted: #64748B;
    --color-bg-light: #F8FAFC;      /* Slate 50 */
    --color-bg-alt: #F1F5F9;        /* Slate 100 */
    --color-border: #E2E8F0;        /* Slate 200 */
    --color-white: #FFFFFF;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.85));
    --gradient-accent: linear-gradient(135deg, #0284C7, #0EA5E9);
    --gradient-card-hover: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(2, 132, 199, 0.03) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.1);
    --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-inset: inset 0 2px 4px 0 rgba(0,0,0,0.06);

    /* Typography & Sizing */
    --font-primary: 'Outfit', sans-serif;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* =================================*********
   GLOBAL STYLES & RESET
   ================================********* */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    font-size: 1rem;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

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

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

/* =================================*********
   PREMIUM BUTTONS & INTERACTIVE ELEMENTS
   ================================********* */
.btn {
    padding: 14px 28px;
    background: var(--gradient-accent);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(2, 132, 199, 0.2);
    box-shadow: 0 4px 14px var(--color-accent-glow);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
    filter: brightness(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-accent);
    border: 1px solid var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--color-bg-light);
    color: var(--color-accent-hover);
}

/* =================================*********
   HEADER & NAVIGATION
   ================================********* */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    transition: var(--transition-smooth);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--color-accent);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--color-accent);
}

/* Active Nav Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-links a.active {
    color: var(--color-accent);
    font-weight: 600;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle Button (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: left center;
}

/* Hamburger active transformation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -1px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 1px);
}

/* =================================*********
   HERO BANNER
   ================================********* */
.hero {
    min-height: 95vh;
    padding-top: 120px;
    padding-bottom: 60px;
    background: var(--gradient-hero), url('../images/hero_background_1778921102252.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--color-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(2, 132, 199, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
    margin-left: 5%;
    z-index: 10;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 132, 199, 0.15);
    border: 1px solid rgba(2, 132, 199, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #38BDF8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--color-white);
}

.hero h1 span {
    background: linear-gradient(to right, #38BDF8, #0EA5E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #CBD5E1;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 5px;
}

.stat-item h3 span {
    color: var(--color-accent);
}

.stat-item p {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =================================*********
   SECTIONS & SECTON TITLES
   ================================********* */
.section {
    padding: 100px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* =================================*********
   TRUST / CERTIFICATION BADGES
   ================================********* */
.trust-row {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 30px 5%;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
}

.trust-badge-icon {
    width: 46px;
    height: 46px;
    background: rgba(2, 132, 199, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.trust-badge-icon svg {
    width: 22px;
    height: 22px;
}

.trust-badge-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}

.trust-badge-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* =================================*********
   WHO WE ARE SECTION
   ================================********* */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-bullets {
    list-style: none;
    margin-bottom: 30px;
}

.about-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary-light);
}

.about-bullets li svg {
    color: var(--color-accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.about-img-container {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.about-img-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(2, 132, 199, 0.08);
    bottom: -20px;
    right: -20px;
    border-radius: var(--border-radius-md);
    z-index: 1;
    border: 2px dashed rgba(2, 132, 199, 0.2);
}

/* =================================*********
   INDUSTRIES SECTION
   ================================********* */
.bg-alt {
    background-color: var(--color-bg-alt);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-primary);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--color-accent);
    background: var(--gradient-card-hover);
}

.industry-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.industry-card:hover .industry-icon-wrapper {
    background: var(--color-accent);
    color: var(--color-white);
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.industry-card:hover h3 {
    color: var(--color-accent);
}

.industry-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Detail page specific layout */
.industry-detail {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.industry-detail:nth-child(even) {
    grid-template-columns: 1.1fr 1fr;
}

.industry-detail img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    height: 380px;
}

.industry-detail-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.industry-detail-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.industry-detail-text ul {
    list-style: none;
}

.industry-detail-text li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.industry-detail-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* =================================*********
   PRODUCTS DISPLAY
   ================================********* */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(2, 132, 199, 0.25);
}

.product-img-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background: #F8FAFC;
    overflow: hidden;
}

.product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: var(--transition-smooth);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.product-specs {
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    margin-bottom: 20px;
}

.spec-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.spec-label {
    color: var(--color-text-muted);
}

.spec-value {
    font-weight: 600;
    color: var(--color-primary-light);
}

.product-card .btn {
    width: 100%;
    padding: 12px;
}

/* =================================*********
   ENGINEERING & MATERIALS EXPERTISE SECTION
   ================================********* */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.spec-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.spec-card h4 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.spec-card ul {
    list-style: none;
}

.spec-card li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.spec-card li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* =================================*********
   GLOBAL REACH MAP SECTION
   ================================********* */
.global-reach-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.map-container {
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.map-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.market-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.market-item:hover {
    border-color: var(--color-accent);
    transform: scale(1.02);
}

.market-flag {
    font-size: 1.5rem;
}

.market-name {
    font-weight: 600;
    color: var(--color-primary-light);
    font-size: 0.95rem;
}

/* =================================*********
   B2B FAQ SECTION
   ================================********* */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #FAFBFD;
}

.faq-answer-inner {
    padding: 0 30px 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* arbitrary high number */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* =================================*********
   B2B LEADS / RFQ SECTION
   ================================********* */
.cta-section {
    background: var(--gradient-hero);
    color: var(--color-white);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2,132,199,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    color: #CBD5E1;
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.rfq-form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.rfq-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.rfq-form input::placeholder,
.rfq-form textarea::placeholder {
    color: #94A3B8;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.rfq-form select option {
    background: var(--color-primary);
    color: var(--color-white);
}

.rfq-form button {
    border: none;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
}

/* =================================*********
   PAGE HEADER FOR SECONDARY PAGES
   ================================********* */
.page-header {
    background: var(--gradient-hero), url('../images/hero_background_1778921102252.png') center center/cover no-repeat;
    padding: 160px 5% 80px;
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -1px;
}

/* =================================*********
   CONTACT DETAILS PAGE SPECIALTIES
   ================================********* */
.contact-grid {
    display: grid;
    grid-template-columns: 1.10fr 0.90fr;
    gap: 60px;
}

.contact-info-block {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background: rgba(2, 132, 199, 0.08);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--color-text-muted);
}

.contact-text a:hover {
    color: var(--color-accent);
}

/* =================================*********
   FOOTER
   ================================********* */
footer {
    background: #090D16;
    color: #94A3B8;
    padding: 80px 5% 30px;
    border-top: 1px solid #1E293B;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 50px;
}

.footer-section h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-info-item svg {
    color: var(--color-accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1E293B;
    font-size: 0.85rem;
    color: #64748B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

/* =================================*********
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ================================********* */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    .about-grid,
    .global-reach-wrapper,
    .cta-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-container {
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 5%;
    }

    .about-img-container {
        max-width: calc(100% - 20px);
        margin: 0 auto;
    }

    .about-img-container::before {
        bottom: -10px;
        right: -10px;
    }

    nav {
        padding: 15px 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: var(--color-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: 0 15px 15px rgba(0,0,0,0.05);
        border-top: 1px solid var(--color-border);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.15rem;
    }

    .hero {
        min-height: 80vh;
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-tag {
        margin: 0 auto 24px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .industry-detail,
    .industry-detail:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .industry-detail img {
        height: 250px;
    }

    .cta-text {
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2.2rem;
    }

    .rfq-form-container {
        padding: 25px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .market-list {
        grid-template-columns: 1fr;
    }
}

/* =================================*********
   PRODUCT FILTERING & TABS
   ================================********* */
.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 22px;
    background: var(--color-white);
    color: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.filter-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: 0 4px 10px var(--color-accent-glow);
}

/* Hide product card animation */
.product-card.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.95);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-badge.api-badge {
    background: rgba(2, 132, 199, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

/* =================================*********
   DYNAMIC MODAL WINDOWS
   ================================********* */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: var(--color-white);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-border);
    position: relative;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close-btn:hover {
    background: #EF4444;
    color: var(--color-white);
    border-color: #EF4444;
}

.modal-body {
    padding: 40px;
}

.modal-product-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.modal-img-wrapper {
    background: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img-wrapper img {
    max-height: 250px;
    object-fit: contain;
}

.modal-title-desc h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.modal-title-desc .product-category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.modal-title-desc p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-section-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary-light);
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
    margin-bottom: 12px;
    margin-top: 20px;
}

.modal-spec-list {
    list-style: none;
}

.modal-spec-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--color-border);
}

.modal-spec-label {
    color: var(--color-text-muted);
    font-weight: 500;
}

.modal-spec-value {
    color: var(--color-text-dark);
    font-weight: 600;
}

.modal-bullets-list {
    list-style: none;
}

.modal-bullets-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.modal-bullets-list li::before {
    content: "✓";
    color: var(--color-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-footer-form {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    padding: 30px 40px;
}

.modal-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-align: center;
}

.modal-form-fields {
    display: flex;
    gap: 15px;
}

.modal-form-fields input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

.modal-form-fields input:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* =================================*********
   INTERACTIVE SEAL CONFIGURATOR WIZARD
   ================================********* */
.configurator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.configurator-header {
    background: var(--gradient-hero);
    color: var(--color-white);
    padding: 40px;
    text-align: center;
}

.configurator-header h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.configurator-header p {
    color: #CBD5E1;
    font-size: 0.95rem;
}

.configurator-progress {
    display: flex;
    justify-content: space-between;
    background: var(--color-bg-alt);
    padding: 20px 40px;
    border-bottom: 1px solid var(--color-border);
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    position: relative;
}

.step-num {
    width: 24px;
    height: 24px;
    background: var(--color-white);
    color: var(--color-text-muted);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.progress-step.active {
    color: var(--color-accent);
}

.progress-step.active .step-num {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.progress-step.completed {
    color: var(--color-primary-light);
}

.progress-step.completed .step-num {
    background: var(--color-primary-light);
    color: var(--color-white);
    border-color: var(--color-primary-light);
}

.configurator-body {
    padding: 40px;
    min-height: 380px;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.config-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.config-option-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
}

.config-option-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.config-option-card.selected {
    border-color: var(--color-accent);
    background: rgba(2, 132, 199, 0.03);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.option-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    transition: var(--transition-fast);
}

.config-option-card:hover .option-icon-wrapper,
.config-option-card.selected .option-icon-wrapper {
    background: var(--color-accent);
    color: var(--color-white);
}

.config-option-card h4 {
    font-size: 1rem;
    font-weight: 700;
}

.config-option-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.configurator-footer {
    padding: 20px 40px;
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
}

/* Recommended Seal Result */
.config-result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.config-result-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: left;
    width: 100%;
    align-items: center;
}

.config-result-img {
    background: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.config-result-img img {
    max-height: 180px;
    object-fit: contain;
}

.config-result-info h4 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.config-result-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.config-result-specs {
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =================================*********
   API PIPING PLANS & AUXILIARY CARDS
   ================================********* */
.aux-card {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.aux-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(2, 132, 199, 0.2);
}

.aux-img-wrapper {
    background: var(--color-bg-light);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--color-border);
}

.aux-img-wrapper img {
    max-height: 160px;
    object-fit: contain;
}

.aux-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aux-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.aux-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

/* =================================*********
   SEAL REFURBISHMENT STYLING
   ================================********* */
.refurb-box {
    background: linear-gradient(135deg, #0B192C 0%, #15253F 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    color: var(--color-white);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.refurb-text h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.refurb-text p {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.refurb-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.refurb-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.refurb-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(2, 132, 199, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.refurb-badge-text h4 {
    color: var(--color-white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.refurb-badge-text p {
    color: #64748B;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsive updates for products page */
@media (max-width: 768px) {
    .modal-product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .modal-body {
        padding: 25px;
    }
    .modal-form-fields {
        flex-direction: column;
    }
    .configurator-progress {
        padding: 15px 20px;
        gap: 10px;
    }
    .progress-step span {
        display: none;
    }
    .configurator-body {
        padding: 25px;
    }
    .config-result-card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
    .aux-card {
        grid-template-columns: 1fr;
    }
    .aux-img-wrapper {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    .refurb-box {
        grid-template-columns: 1fr;
        padding: 35px;
        gap: 30px;
    }
}

/* =================================*********
   ADDITIONAL CUSTOM STYLES FOR ABOUT & CONTACT
   ================================********* */

/* Overlapping Stats Row */
.stats-overlap {
    margin-top: -50px;
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5%;
}

.stats-overlap-card {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 35px 30px;
    gap: 20px;
    text-align: center;
}

.stats-overlap-item {
    border-right: 1px solid var(--color-border);
}

.stats-overlap-item:last-child {
    border-right: none;
}

.stats-overlap-item h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 5px;
    line-height: 1.1;
}

.stats-overlap-item p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline/Milestones */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--color-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--color-white);
    border: 4px solid var(--color-accent);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.left-timeline {
    left: 0;
    text-align: right;
}

.right-timeline {
    left: 50%;
}

.right-timeline::after {
    left: -8px;
}

.timeline-content {
    padding: 24px;
    background-color: var(--color-white);
    position: relative;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.timeline-year {
    font-weight: 800;
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: 5px;
    display: block;
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Core Values Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(2, 132, 199, 0.08);
    color: var(--color-accent);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(2, 132, 199, 0.2);
}

.team-img-wrapper {
    background: #E2E8F0;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    position: relative;
}

.team-img-wrapper svg {
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrapper svg {
    transform: scale(1.1);
    opacity: 0.5;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* B2B Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: rgba(2, 132, 199, 0.08);
    font-family: Georgia, serif;
    line-height: 0;
}

.testimonial-stars {
    color: #FBBF24;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-primary-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(2, 132, 199, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-meta h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-meta p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Trust Badges and Guarantees for Contact Us */
.contact-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.guarantee-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.guarantee-card:hover {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.guarantee-icon {
    color: var(--color-accent);
    margin-bottom: 10px;
}

.guarantee-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.guarantee-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Media Queries for new elements */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-overlap-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stats-overlap-item {
        border-right: none;
    }
    .stats-overlap-item:nth-child(2n) {
        border-left: none;
    }
    .timeline::after {
        left: 31px;
    }
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-container::after {
        left: 23px;
        right: auto;
    }
    .left-timeline {
        text-align: left;
    }
    .right-timeline {
        left: 0;
    }
    .values-grid,
    .testimonials-grid,
    .contact-guarantees {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-overlap-card {
        grid-template-columns: 1fr;
    }
    .stats-overlap-item {
        padding-bottom: 15px;
        border-bottom: 1px solid var(--color-border);
    }
    .stats-overlap-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================*********
   SERVICE CENTERS SECTION
   ================================********* */
.service-centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-accent);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-top-color: var(--color-primary);
    background: var(--gradient-card-hover);
}

@media (max-width: 768px) {
    .service-centers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


