/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #00b8d4;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --border-color: #dee2e6;
    --white: #ffffff;
    --footer-bg: #1a1a1a;
    --footer-text: #b0b0b0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: radial-gradient(circle at 8% 20%, rgba(255, 95, 184, 0.22), rgba(255, 95, 184, 0) 45%),
                radial-gradient(circle at 92% 28%, rgba(0, 225, 255, 0.2), rgba(0, 225, 255, 0) 46%),
                var(--white);
}

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

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 10px;
    transition: color 0.3s ease;
    display: block;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▾';
    margin-left: 5px;
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 'string';
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu .nav-link {
    padding: 0.6rem 1rem;
    border-radius: 4px;
}

.dropdown-menu .nav-link:hover {
    background-color: var(--light-gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particles.js Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

#particles-page {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Neon Lines Animation */
.neon-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.neon-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(0, 184, 212, 0.8), 
        rgba(52, 152, 219, 0.6),
        transparent);
    box-shadow: 0 0 10px rgba(0, 184, 212, 0.8),
                0 0 20px rgba(0, 184, 212, 0.6),
                0 0 30px rgba(0, 184, 212, 0.4);
    animation: neonMove 8s linear infinite;
}

.neon-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.neon-line:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.neon-line:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
    animation-duration: 8s;
}

@keyframes neonMove {
    0% {
        transform: translateY(-100%) scaleY(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%) scaleY(1.5);
        opacity: 0;
    }
}

/* Floating Icon Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    color: rgba(0, 184, 212, 0.4);
    filter: drop-shadow(0 0 10px rgba(0, 184, 212, 0.6));
    animation: floatIcon 6s ease-in-out infinite;
}

.float-icon svg {
    width: 100%;
    height: 100%;
}

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

.icon-2 {
    top: 70%;
    left: 85%;
    animation-delay: 1.5s;
}

.icon-3 {
    top: 25%;
    right: 15%;
    animation-delay: 3s;
}

.icon-4 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(15, 12, 41, 0.3) 0%, 
        rgba(36, 36, 62, 0.7) 50%,
        rgba(15, 12, 41, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 640px;
    padding: 0 20px;
    text-align: left;
    color: var(--white);
    animation: fadeInUp 1.2s ease-out;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-media {
    position: relative;
}

.hero-media-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

.hero-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-media-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 27, 45, 0) 0%, rgba(15, 27, 45, 0.85) 100%);
}

.hero-media-badges {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    z-index: 2;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.hero-chip img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

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

.hero-title {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.35rem;
    font-size: 1.05rem;
}

.hero-stats {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    color: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 0.6rem;
    align-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

.stat-card strong {
    display: block;
    font-size: 1.6rem;
    margin: 0.2rem 0;
}

.stat-card small {
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

.stat-icon {
    grid-row: span 3;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 184, 212, 0.3);
}

.btn-primary:hover {
    background-color: #0097b8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 184, 212, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

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

.about-visual {
    position: relative;
    z-index: 1;
}

.experience-float {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    justify-content: center;
    width: 220px;
    max-width: 80%;
    z-index: 3;
}

.experience-float .experience-badge {
    position: relative;
    margin: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.14));
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 1rem 1.4rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .experience-float {
        bottom: 12px;
        right: 50%;
        transform: translateX(50%);
        width: 200px;
    }
}

.about-photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    margin-bottom: 1.5rem;
}

.about-photo img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%);
}

/* Visual Background Effects */
.visual-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: -1;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid rgba(0, 184, 212, 0.4);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
}

.pulse-ring-delay {
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s ease, opacity 0.8s ease;
    will-change: transform, opacity;
}

.animate-on-scroll.animate-up { transform: translateY(30px); }
.animate-on-scroll.animate-left { transform: translateX(-40px); }
.animate-on-scroll.animate-right { transform: translateX(40px); }
.animate-on-scroll.animate-fade { transform: translateY(10px); }
.animate-on-scroll.animate-scale { transform: scale(0.96); }
.animate-on-scroll.animate-zoom { transform: scale(0.9); }

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.experience-badge {
    background: linear-gradient(135deg, var(--accent-color), #0097b8);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 184, 212, 0.3),
                0 0 40px rgba(0, 184, 212, 0.2);
    margin-bottom: 2rem;
    max-width: 250px;
    position: relative;
    overflow: hidden;
    animation: badgeFloat 3s ease-in-out infinite;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.experience-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.about-graphics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.graphic-item {
    text-align: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: var(--light-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 184, 212, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.graphic-item:hover .icon-box::before {
    width: 100%;
    height: 100%;
}

    .hero-banner {
        height: auto;
        min-height: 500px;
        padding: 4rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .about-graphics {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }

    .icon-box svg {
        width: 30px;
        height: 30px;
    }

    .graphic-item span {
        font-size: 0.8rem;
    }

    .experience-badge {
        max-width: 100%;
    }

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

.icon-box svg {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
}

.graphic-item:hover .icon-box {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 184, 212, 0.4),
                0 0 30px rgba(0, 184, 212, 0.2);
}

.graphic-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.about-content {
    padding: 1rem 0;
}

.section-label {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
}

.about-callouts {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.callout-chip {
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,184,212,0.12), rgba(52,152,219,0.12));
    border: 1px solid rgba(0, 184, 212, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.callout-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 184, 212, 0.15);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-text strong {
    font-size: 1.05rem;
    color: var(--primary-color);
}

.feature-text span {
    font-size: 0.95rem;
    color: #666;
}

/* Shared Section Blocks */
.section-block {
    padding: 4.5rem 0;
    position: relative;
    z-index: 2;
}


.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

.card-grid.three-col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid.four-col {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.section-label {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 0.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    background: var(--light-gray);
    color: var(--primary-color);
}

.pill-blue { background: rgba(52, 152, 219, 0.15); color: #1b6fa8; }
.pill-green { background: rgba(40, 199, 111, 0.15); color: #1c8c4f; }
.pill-purple { background: rgba(155, 89, 182, 0.15); color: #6f2e99; }

.chip {
    display: inline-block;
    padding: 0.35rem 0.6rem;
    border-radius: 10px;
    background: var(--light-gray);
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.tag-chip {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--light-gray);
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
}

.neo-card {
    background: linear-gradient(145deg, #ffffff, #f2f6ff);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.neo-card h3 {
    margin: 0.8rem 0;
    color: var(--primary-color);
}

.card-thumb {
    width: 100%;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 1rem;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.neo-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.card-tags {
    margin: 0.75rem 0 1rem;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-link:hover { background: var(--medium-gray); }

/* Glass Cards for Services */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 184, 212, 0.15);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 184, 212, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.glass-card.accent {
    border: 1px solid rgba(0, 184, 212, 0.25);
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(240,248,255,0.85));
}

.service-visual {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin: 1rem 0 1.5rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.16);
    border: 1px solid rgba(255,255,255,0.1);
}

.service-visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: stretch;
}

.service-highlight {
    background: radial-gradient(circle at 20% 20%, rgba(0,184,212,0.18), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(127,90,240,0.14), transparent 40%),
                #0f1b2d;
    color: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
    position: relative;
    overflow: hidden;
}

.service-highlight .badge {
    display: inline-flex;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(0,184,212,0.2);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-highlight h3 {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
}

.service-highlight p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.service-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-metrics .metric {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 0.9rem;
    text-align: center;
}

.service-metrics strong {
    display: block;
    font-size: 1.4rem;
    color: var(--white);
}

.service-metrics span {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.tag-row {
    margin: 0.75rem 0 1rem;
}

.cta-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(255, 95, 184, 0.16), transparent 45%),
                radial-gradient(circle at 80% 10%, rgba(0, 225, 255, 0.16), transparent 50%),
                linear-gradient(135deg, #0f1b2d, #132947 45%, #1e3a5f);
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/background/cta-bg.jpg') center/cover no-repeat;
    opacity: 0.32;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at 20% 60%, rgba(255, 95, 184, 0.22), transparent 45%),
                radial-gradient(circle at 90% 30%, rgba(111, 66, 193, 0.2), transparent 40%);
    filter: blur(20px);
    opacity: 0.8;
    pointer-events: none;
}

.cta-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 2rem;
    align-items: center;
    z-index: 1;
}

.cta-text {
    background: rgba(12, 22, 38, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.9rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cta-highlights {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.25rem;
}

.cta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-chip img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cta-quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.25rem;
}

.cta-fact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.cta-fact img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cta-fact strong {
    color: var(--white);
    font-size: 1rem;
    display: block;
}

.cta-fact span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cta-trust {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.trust-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-item .dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 184, 212, 0.18);
    border: 1px solid rgba(0, 184, 212, 0.3);
    box-shadow: 0 0 12px rgba(0, 184, 212, 0.35);
    margin-top: 0.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trust-item strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.trust-item small {
    color: rgba(255, 255, 255, 0.85);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.cta-media {
    position: relative;
}

.cta-media-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.cta-media-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 27, 45, 0) 0%, rgba(15, 27, 45, 0.8) 100%);
}

.cta-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-media-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.cta-overlay-card {
    position: absolute;
    top: 14px;
    right: 14px;
    width: min(240px, 70%);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    color: var(--white);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    z-index: 1;
}

.cta-overlay-card .overlay-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cta-overlay-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.overlay-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.overlay-tags span {
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    background: rgba(0, 184, 212, 0.2);
    border: 1px solid rgba(0, 184, 212, 0.3);
    font-size: 0.85rem;
    color: var(--white);
}

.cta-media-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cta-media-badge strong {
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.cta-media-badge span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.enquiry-highlights {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.enquiry-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 1.25rem;
}

.enquiry-steps .step {
    background: rgba(0, 184, 212, 0.08);
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.enquiry-steps .step span {
    display: inline-block;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.15rem;
}

.enquiry-steps .step strong {
    display: block;
    color: var(--primary-color);
}

.enquiry-steps .step small {
    color: #555;
}

.enquiry-steps .step.active {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.18), rgba(52, 152, 219, 0.18));
    border-color: rgba(0, 184, 212, 0.35);
    box-shadow: 0 14px 30px rgba(0, 184, 212, 0.12);
}

.enquiry-steps .step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}

.enquiry-form {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.enquiry-visual {
    margin-top: 1.2rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border: 1px solid var(--border-color);
}

.enquiry-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.contact-section {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.contact-copy .section-title {
    margin-bottom: 1rem;
}

.contact-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.contact-cards {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(52, 152, 219, 0.08));
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card .card-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-card strong {
    display: block;
    margin: 0.3rem 0;
    color: var(--primary-color);
}

.contact-card small {
    color: #555;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* About Page */
.page-hero {
    position: relative;
    padding: 6rem 0 4.5rem;
    background: linear-gradient(135deg, #0b1224, #102040 40%, #0a1a33);
    overflow: hidden;
    color: var(--white);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 184, 212, 0.2), transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.18), transparent 40%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    z-index: 1;
}

.page-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.page-hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.page-hero .hero-overlay {
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.hero-chip-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.page-badge {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}
.page-badge div{
    display:flex;
    flex-direction:column;
}
.badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.page-hero-visual {
    position: relative;
}

.page-hero-visual::before,
.page-hero-visual::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.7;
}

.page-hero-visual::before {
    width: 180px;
    height: 180px;
    background: rgba(0, 184, 212, 0.35);
    top: -40px;
    right: 20px;
}

.page-hero-visual::after {
    width: 140px;
    height: 140px;
    background: rgba(124, 58, 237, 0.28);
    bottom: -30px;
    left: -20px;
}

.hero-visual-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.hero-visual-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 100%);
}

.hero-visual-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: var(--white);
    backdrop-filter: blur(6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.hero-visual-badge .badge-icon {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Careers */
.career-hero {
    background: linear-gradient(135deg, #0b1c36 0%, #0e2e55 45%, #081625 100%);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.1rem;
    margin-top: 1.5rem;
}

.job-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.job-top {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.job-card h3 {
    margin: 0.2rem 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.job-card p {
    color: #555;
}

.job-meta {
    display: flex;
    gap: 1rem;
    color: #30374a;
    font-weight: 600;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.job-tags .tag-chip {
    margin: 0;
}

.job-actions {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.job-detail-section {
    background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
}

.job-summary,
.job-form {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.job-summary h3 {
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.job-list li {
    position: relative;
    padding-left: 1.35rem;
    color: #30374a;
    line-height: 1.6;
}

.job-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.job-meta-block {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.job-form {
    max-width: none;
    margin: 0;
}

.job-form .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.job-form .form-field label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.job-form .form-field input,
.job-form .form-field textarea {
    margin-bottom: 0;
}

.job-form .form-actions {
    margin-top: 0.85rem;
}

.job-form .btn-secondary {
    background: var(--light-gray);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.job-form .btn-secondary:hover {
    background: #e6ebf2;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.9rem;
    margin: 1rem 0 1.5rem;
}

.info-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.highlight-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,184,212,0.16), rgba(52,152,219,0.16));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.about-page-visual .frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
    border: 1px solid var(--border-color);
}

.about-page-visual .inset {
    width: 70%;
    margin-top: 1rem;
    margin-left: auto;
    transform: translateY(-12%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.about-page-visual img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-stat-card {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
}

.stat-chip {
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.14), rgba(52, 152, 219, 0.14));
    border: 1px solid rgba(0, 184, 212, 0.25);
    font-weight: 600;
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    color: var(--primary-color);
}

.vision-mission-section {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.vm-card {
    padding: 1.4rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
    background: #ffffff;
}

.vm-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.16), rgba(124, 58, 237, 0.16));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.team-section .section-text {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.values-section {
    background: linear-gradient(135deg, #0f172a, #1d2b4f);
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.value-card {
    padding: 1.2rem 1.3rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.value-card h3 {
    color: var(--white);
    margin-bottom: 0.4rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.team-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.1rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    position: relative;
}

.team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.2), rgba(52, 152, 219, 0.2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
}

.team-role {
    display: block;
    color: #555;
    margin: 0.15rem 0 0.35rem;
}

.team-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 184, 212, 0.12);
    border: 1px solid rgba(0, 184, 212, 0.25);
    font-weight: 700;
    color: var(--primary-color);
}

.team-card p {
    margin: 0;
    color: #444;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, #0b1224, #102040 40%, #0a1a33);
}

.contact-page-section {
    padding: 3.5rem 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-cards {
    margin-top: 50px;
    display: grid;
    gap: 0.75rem;
}

.contact-form {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.contact-form .form-field input,
.contact-form .form-field textarea {
    width: 100%;
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
}

.contact-form .form-field label {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

/* OEM Facility Styles */
.oem-hero {
    background: linear-gradient(135deg, #0b1224 0%, #0f1d34 60%, #0a1220 100%);
}

.oem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    perspective: 1000px;
}

.oem-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1.5px solid rgba(0, 184, 212, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 184, 212, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    position: relative;
}

.oem-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.1) 0%, transparent 50%, rgba(124, 58, 237, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 16px;
}

.oem-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 50px rgba(0, 184, 212, 0.35), 0 0 30px rgba(0, 184, 212, 0.15);
    border-color: rgba(0, 184, 212, 0.5);
}

.oem-card:hover::after {
    opacity: 1;
}

.oem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 184, 212, 0.08), transparent 65%);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.45s ease;
}

.oem-card:hover::before {
    background: radial-gradient(circle at top right, rgba(0, 184, 212, 0.15), transparent 55%);
}

.oem-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.1), rgba(124, 58, 237, 0.05));
}

.oem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95);
}

.oem-card:hover .oem-image img {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.05);
}

.oem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
    z-index: 3;
    backdrop-filter: blur(2px);
}

.oem-card:hover .oem-overlay {
    opacity: 1;
    backdrop-filter: blur(4px);
}

.oem-cta {
    color: #00d4ff;
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 2px 12px rgba(0, 184, 212, 0.4);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.oem-card:hover .oem-cta {
    gap: 0.8rem;
}

.oem-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.oem-content h3 {
    margin: 0.3rem 0 0;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.oem-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.oem-features {
    list-style: none;
    padding: 0.8rem 0 0;
    margin: 0.3rem 0 0;
    display: grid;
    gap: 0.5rem;
    border-top: 1px solid rgba(0, 184, 212, 0.2);
}

.oem-features li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.oem-card:hover .oem-features li {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
}

.oem-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.oem-card:hover .oem-features li::before {
    transform: translateX(4px);
}

.oem-categories-section {
    background: linear-gradient(180deg, #0a1428 0%, #111d2e 50%, #0d1622 100%);
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
}

.oem-categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 40%, rgba(0, 184, 212, 0.12), transparent 55%),
        radial-gradient(circle at 90% 60%, rgba(124, 58, 237, 0.1), transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(0, 184, 212, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: bgGlow 8s ease-in-out infinite;
}

@keyframes bgGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 1.1;
    }
}

.oem-categories-section .section-header {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.oem-categories-section .section-label {
    color: #00d4ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.15), rgba(0, 184, 212, 0.05));
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 184, 212, 0.3);
}

.oem-categories-section .section-title {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin: 1.2rem 0 1.2rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(0, 184, 212, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oem-categories-section .section-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.oem-grid {
    position: relative;
    z-index: 1;
}

.oem-capabilities {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.oem-capabilities-section {
    background: linear-gradient(180deg, #0d1b2a 0%, #132135 50%, #0a1420 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.oem-capabilities-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 184, 212, 0.12), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.oem-capabilities-section .section-header {
    position: relative;
    z-index: 1;
}

.oem-capabilities-section .section-label {
    color: #00d4ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
}

.oem-capabilities-section .section-title {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0.8rem 0 1rem;
    letter-spacing: -0.5px;
}

.oem-capabilities-section .section-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.capability-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(0, 184, 212, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 184, 212, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}
}

.capability-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(0, 184, 212, 0.3);
    box-shadow: 0 16px 48px rgba(0, 184, 212, 0.2), inset 0 0 30px rgba(0, 184, 212, 0.1);
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 184, 212, 0.3));
    position: relative;
    z-index: 1;
}

.capability-card:hover .capability-icon {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 6px 12px rgba(0, 184, 212, 0.5));
}

.capability-card h3 {
    margin: 0.5rem 0 0.8rem;
    color: var(--white);
    background: linear-gradient(135deg, #00d4ff, #0097b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.capability-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.oem-process {
    background: linear-gradient(135deg, #0b1c36 0%, #1a2e4f 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.oem-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 184, 212, 0.08), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.oem-process .section-header {
    position: relative;
    z-index: 1;
}

.oem-process .section-label {
    color: #00d4ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
}

.oem-process .section-title {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0.8rem 0 1rem;
    letter-spacing: -0.5px;
}

.oem-process .section-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.process-progress-container {
    margin: 2rem 0;
}

.progress-bar-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #0097b8, var(--accent-color));
    width: 100%;
    border-radius: 999px;
    animation: slideProgress 2s ease-in-out infinite;
}

@keyframes slideProgress {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
}

.progress-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Enhanced Timeline */
.process-timeline-enhanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.process-timeline-enhanced::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color) 0%, #0097b8 50%, var(--accent-color) 100%);
    border-radius: 999px;
    z-index: 0;
}

.process-step-enhanced {
    position: relative;
    padding-left: 100px;
    display: flex;
    gap: 1rem;
}

.step-connector {
    position: absolute;
    left: 28px;
    top: 60px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #0097b8);
    box-shadow: 0 0 0 4px rgba(0, 184, 212, 0.3), 0 0 20px rgba(0, 184, 212, 0.4);
    z-index: 2;
}

.step-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    flex: 1;
    transition: all 0.3s ease;
}

.process-step-enhanced:hover .step-content {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 184, 212, 0.15);
    transform: translateX(8px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number-large {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), #0097b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    line-height: 1;
}

.step-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 184, 212, 0.3));
}

.step-content h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
}

.step-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0.8rem 0 1rem;
    font-size: 0.95rem;
}

.step-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color) 0%, #0097b8 50%, var(--accent-color) 100%);
    border-radius: 999px;
}

.process-step-enhanced {
    position: relative;
    padding-left: 100px;
    display: flex;
    gap: 1rem;
}

.step-connector {
    position: absolute;
    left: 28px;
    top: 60px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #0097b8);
    box-shadow: 0 0 0 4px rgba(0, 184, 212, 0.2);
}

.step-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    flex: 1;
    transition: all 0.3s ease;
}

.process-step-enhanced:hover .step-content {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(8px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.step-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), #0097b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
}

.step-icon {
    font-size: 2rem;
}

.step-content h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.25rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0.6rem 0 0.8rem;
}

.step-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.meta-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-badge.duration {
    background: rgba(0, 184, 212, 0.2);
    border-color: rgba(0, 184, 212, 0.3);
    color: #00d4ff;
}

.meta-badge.phase {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
    color: #d8b4ff;
}

.step-deliverables {
    background: rgba(0, 184, 212, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.step-deliverables strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.step-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.step-deliverables li {
    position: relative;
    padding-left: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Timeline Summary */
.timeline-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.summary-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 184, 212, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 184, 212, 0.15);
}

.summary-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 4px 8px rgba(0, 184, 212, 0.3));
}

.summary-card h4 {
    margin: 0 0 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
}

.summary-value {
    margin: 0.6rem 0 0.4rem;
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(6px);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #0097b8);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin: 0.5rem 0;
    color: var(--white);
}

.process-step p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.oem-download-section {
    background: linear-gradient(180deg, #0f1e31 0%, #122942 50%, #0a1520 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.oem-download-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 40%, rgba(0, 184, 212, 0.1), transparent 50%),
        radial-gradient(circle at 85% 60%, rgba(124, 58, 237, 0.08), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.oem-download-section .section-label {
    color: #00d4ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.oem-download-section .section-title {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0.8rem 0 1rem;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.oem-download-section .section-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.download-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 184, 212, 0.15), inset 0 0 30px rgba(0, 184, 212, 0.05);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.download-card:hover {
    box-shadow: 0 20px 50px rgba(0, 184, 212, 0.25), inset 0 0 40px rgba(0, 184, 212, 0.08);
    border-color: rgba(0, 184, 212, 0.4);
    transform: translateY(-4px);
}

.download-content {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.download-content .section-label {
    color: #00d4ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
}

.download-content .section-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin: 0.8rem 0 1rem;
    letter-spacing: -0.5px;
}

.download-content .section-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.download-content {
    padding: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.download-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: 0.8rem;
}

.download-features li {
    position: relative;
    padding-left: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.download-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
    font-size: 1.2rem;
}

.download-features strong {
    color: var(--white);
    font-weight: 700;
}

.download-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.download-visual {
    position: relative;
    height: 100%;
    min-height: 320px;
}

.download-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* OEM Detail Page */
.oem-detail-hero {
    background: linear-gradient(135deg, #1a2b47 0%, #2a3f5f 50%, #1a2736 100%);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.8rem;
    transition: color 0.25s ease;
}

.breadcrumb-link:hover {
    color: var(--white);
}

.oem-detail-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1.5rem;
    align-items: start;
}

.oem-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.spec-card,
.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.spec-card h3,
.pricing-card h3 {
    margin: 0 0 1rem;
    color: var(--primary-color);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: grid;
    gap: 0.6rem;
}

.spec-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: #30374a;
    font-size: 0.95rem;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-block {
    width: 100%;
    margin-bottom: 0.7rem;
}

.pricing-tier {
    position: relative;
    background: linear-gradient(135deg, #f8faff, #ffffff);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-tier.highlight {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(52, 152, 219, 0.08));
    border-color: var(--accent-color);
}

.tier-qty {
    font-weight: 600;
    color: var(--primary-color);
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.tier-price small {
    font-size: 0.85rem;
    color: #555;
}

.tier-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-note {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.5rem;
    font-style: italic;
}

.oem-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-section {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: linear-gradient(135deg, #f9fbff, #ffffff);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-item h4 {
    margin: 0.3rem 0;
    color: var(--primary-color);
}

.feature-item p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.custom-option {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #f9fbff;
}

.custom-option h4 {
    margin: 0 0 0.7rem;
    color: var(--primary-color);
}

.custom-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.custom-option li {
    position: relative;
    padding-left: 1.2rem;
    color: #30374a;
    font-size: 0.9rem;
}

.custom-option li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.tech-table {
    margin-top: 1rem;
    overflow-x: auto;
}

.tech-table table {
    width: 100%;
    border-collapse: collapse;
}

.tech-table th,
.tech-table td {
    padding: 0.85rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.tech-table th {
    background: linear-gradient(135deg, #f8faff, #ffffff);
    color: var(--primary-color);
    font-weight: 700;
}

.tech-table td {
    color: #30374a;
}

.tech-table tr:last-child td {
    border-bottom: none;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.usecase-card {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: linear-gradient(135deg, #f9fbff, #ffffff);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.usecase-card h4 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
}

.usecase-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.timeline-table {
    margin-top: 1rem;
}

.timeline-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.timeline-row:last-child {
    border-bottom: none;
}

.timeline-stage {
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-duration {
    font-weight: 600;
    color: var(--accent-color);
}

.timeline-desc {
    color: #555;
    font-size: 0.9rem;
}

.oem-inquiry {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.inquiry-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.inquiry-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.oem-inquiry-form {
    max-width: 800px;
    margin: 0 auto;
}

.oem-inquiry-form .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oem-inquiry-form .form-field label {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.oem-inquiry-form .form-field input,
.oem-inquiry-form .form-field textarea,
.oem-inquiry-form .form-field select {
    width: 100%;
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .download-card {
        grid-template-columns: 1fr;
    }
    .download-visual {
        min-height: 200px;
    }
    .oem-detail-grid {
        grid-template-columns: 1fr;
    }
    .timeline-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

.map-section {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    padding: 0;
}

.map-embed iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.map-embed {
    width: 100%;
    display: block;
}

.location-section {
    padding-bottom: 2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.location-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}

.location-card h3 {
    margin: 0.3rem 0;
    color: var(--primary-color);
}

.location-card p {
    margin: 0 0 0.35rem;
    color: #555;
}

.loc-line {
    display: block;
    color: #444;
    font-weight: 600;
}

@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

.team-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-social {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    font-weight: 700;
}

.team-card:hover .team-social {
    opacity: 1;
}

@media (max-width: 900px) {
    .page-hero-inner,
    .about-page-grid {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding: 4.5rem 0 3.5rem;
    }
    .page-hero-visual {
        margin-top: 1.2rem;
    }
    .job-detail-grid {
        grid-template-columns: 1fr;
    }
}

.contact-media-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0,0,0,0.14);
    border: 1px solid var(--border-color);
}

.contact-media-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.portfolio-card .pill {
    margin-bottom: 0.35rem;
}

/* Clients */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.logo-pill {
    background: linear-gradient(135deg, #ffffff, #f4f7fb);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-pill img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
}

/* Testimonials */
.testimonial-card {
    position: relative;
    background: linear-gradient(160deg, #0f1b2d, #182b45);
    color: var(--white);
    border-radius: 18px;
    padding: 1.6rem;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 1.8rem;
}

.testimonial-slider .swiper-wrapper {
    display: flex;
}

.testimonial-slider .swiper-slide {
    height: auto;
}

.testimonial-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.testimonial-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.25s ease;
}

.testimonial-nav:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-slider .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
    transition: all 0.2s ease;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(0, 184, 212, 0.6);
}

.testimonial-card .quote-mark {
    font-size: 3rem;
    color: rgba(0, 184, 212, 0.4);
    position: absolute;
    top: -10px;
    left: 10px;
}

.testimonial-card p {
    margin: 1.4rem 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 184, 212, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.testimonial-meta span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

/* Portfolio */
.portfolio-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

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

.portfolio-image {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.portfolio-body {
    padding: 1.3rem;
}

.portfolio-body h3 {
    margin: 0.6rem 0;
}

/* Main Content */
main {
    min-height: calc(100vh - 400px);
}


h1, h2, h3, h4, h5, h6 {
   
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Footer Styles */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    background-color: var(--accent-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.9rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

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

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-grid.three-col,
    .card-grid.four-col {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

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

    .hero-subtitle {
        font-size: 1.4rem;
    }

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

    .service-grid,
    .cta-grid,
    .enquiry-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-actions {
        justify-content: flex-start;
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 0.5rem 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-header {
        align-items: flex-start;
    }

    .hero-banner {
        height: auto;
        min-height: 500px;
        padding: 4rem 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .card-grid.three-col,
    .card-grid.four-col {
        grid-template-columns: 1fr;
    }

    .testimonial-track .testimonial-card {
        flex-basis: 100%;
    }

    .cta-text {
        padding: 1.2rem;
    }

    .service-metrics {
        grid-template-columns: 1fr;
    }
}

/* Form Styles */
form {
    max-width: 600px;
    margin: 2rem 0;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button,
.btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    width: auto;
}

button:hover,
.btn:hover {
    background-color: #0097b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 212, 0.3);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, #1a2f5a 0%, #2d3e5f 50%, #1a2332 100%);
}

.services-list-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
    padding: 4.5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1.5px solid rgba(0, 184, 212, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(8px);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 184, 212, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 184, 212, 0.08), transparent 65%);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.45s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 50px rgba(0, 184, 212, 0.35);
    border-color: rgba(0, 184, 212, 0.5);
}

.service-card:hover::before {
    background: radial-gradient(circle at top right, rgba(0, 184, 212, 0.15), transparent 55%);
}

.service-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 184, 212, 0.3));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 184, 212, 0.5));
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-content h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0.3rem 0;
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.service-features {
    list-style: none;
    padding: 0.8rem 0;
    margin: 0.5rem 0 0;
    display: grid;
    gap: 0.4rem;
    border-top: 1px solid rgba(0, 184, 212, 0.2);
}

.service-features li {
    position: relative;
    padding-left: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 184, 212, 0.1);
    margin-top: auto;
}

.service-duration {
    color: #00d4ff;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-cta {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-cta {
    color: #00d4ff;
}

/* Service Benefits Section */
.service-benefits-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #eef2f8 100%);
    padding: 4.5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 184, 212, 0.15);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 184, 212, 0.3);
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.12), rgba(124, 58, 237, 0.08));
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 184, 212, 0.2));
}

.benefit-item h4 {
    color: #00d4ff;
    font-size: 1.15rem;
    margin: 0.5rem 0;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Process Section */
.service-process-section {
    background: linear-gradient(180deg, #0a1428 0%, #111d2e 50%, #0d1622 100%);
    padding: 4.5rem 0;
}

/* Product Listing Page */
.product-hero {
    background: radial-gradient(circle at 10% 15%, rgba(0, 184, 212, 0.2), transparent 38%),
        radial-gradient(circle at 90% 20%, rgba(124, 58, 237, 0.2), transparent 42%),
        linear-gradient(135deg, #0b1224 0%, #0f1d34 60%, #0a1220 100%);
    color: #f4fbff;
}

.product-hero .page-hero-subtitle {
    max-width: 680px;
}

.product-hero .page-hero-badges .page-badge {
    border-color: rgba(0, 184, 212, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.product-filter-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
    padding: 2.4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.filters-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.filter-group {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 184, 212, 0.04));
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.filter-label {
    display: block;
    color: #8eeaff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.4px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #eaf7ff;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.chip:hover,
.chip.active {
    border-color: rgba(0, 184, 212, 0.7);
    background: rgba(0, 184, 212, 0.15);
    box-shadow: 0 10px 26px rgba(0, 184, 212, 0.25);
}

.products-list-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 60%, #f7f9fc 100%);
    padding: 4rem 0 3.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.8rem;
}

.product-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 184, 212, 0.05));
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 10%, rgba(0, 184, 212, 0.08), transparent 55%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(0, 184, 212, 0.4);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(0, 184, 212, 0.2);
}

.product-card:hover::after {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 184, 212, 0.85);
    color: #021824;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-content h3 {
    color: #f3fbff;
    font-size: 1.2rem;
}

.product-desc {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.product-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.meta-pill {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #eaf7ff;
    font-size: 0.9rem;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.4rem;
}

.price {
    color: #8eeaff;
    font-size: 1.5rem;
    font-weight: 700;
}

.subtext {
    color: rgba(255, 255, 255, 0.7);
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
}

.btn-outline.btn-sm {
    border: 1px solid rgba(0, 184, 212, 0.4);
    background: transparent;
    color: #8eeaff;
}

.product-benefits-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #eef2f8 100%);
    padding: 4rem 0;
}

.product-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-benefits-grid .benefit-item {
    text-align: left;
    align-items: flex-start;
}

.product-cta-section {
    background: linear-gradient(180deg, #0a1420 0%, #0b1a2a 100%);
    padding: 3.5rem 0 4.2rem;
}

.product-cta-section .cta-card {
    border-color: rgba(0, 184, 212, 0.3);
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.12), rgba(124, 58, 237, 0.08));
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}

/* Enquiry Page */
.enquiry-hero {
    background: radial-gradient(circle at 12% 18%, rgba(0, 184, 212, 0.22), transparent 40%),
        radial-gradient(circle at 85% 12%, rgba(124, 58, 237, 0.18), transparent 42%),
        linear-gradient(135deg, #0b1224 0%, #0f1d34 55%, #0a1220 100%);
}

.enquiry-form-section {
    background: linear-gradient(180deg, #0a1420 0%, #0c1a2b 100%);
    padding: 4.2rem 0;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
    align-items: start;
}

.enquiry-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 184, 212, 0.06));
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.info-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin: 1rem 0 1.3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: center;
}

.enquiry-form {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(0, 184, 212, 0.3);
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.enquiry-form .form-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.enquiry-form .form-actions {
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .enquiry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-actions {
        width: 100%;
    }

    .product-actions .btn-sm {
        width: 100%;
        justify-content: center;
    }
}

/* Product & Detail Pages */
.page-hero.product-detail-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(0, 184, 212, 0.15), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.12), transparent 40%),
        linear-gradient(135deg, #0d1b2a 0%, #0a1420 100%);
}

.page-hero-visual {
    position: relative;
}

.hero-visual-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 184, 212, 0.2);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(0, 184, 212, 0.2);
}

.hero-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.hero-visual-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 14, 29, 0.75);
    border: 1px solid rgba(0, 184, 212, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    backdrop-filter: blur(6px);
}

.hero-visual-badge .badge-icon {
    font-size: 1.4rem;
}

.product-summary-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
    padding: 4rem 0;
}

.product-summary {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.summary-visual img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(0, 184, 212, 0.2);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
}

.summary-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 184, 212, 0.04));
    border: 1px solid rgba(0, 184, 212, 0.18);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00d4ff;
}

.price-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    color: #e8f6ff;
    letter-spacing: 0.2px;
}

.pill-blue { background: rgba(0, 184, 212, 0.14); border-color: rgba(0, 184, 212, 0.45); color: #000; }
.pill-purple { background: rgba(124, 58, 237, 0.14); border-color: rgba(124, 58, 237, 0.35); color: #000; }
.pill-green { background: rgba(34, 197, 94, 0.14); border-color: rgba(34, 197, 94, 0.35); color: #000; }

.summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.6rem 0 1rem;
}

.summary-desc {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.purchase-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 1.4rem 0;
}

.btn-outline {
    border: 1px solid rgba(0, 184, 212, 0.4);
    background: transparent;
    color: #8eeaff;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.bullet-list li {
    position: relative;
    padding-left: 1.4rem;
    color: rgba(255, 255, 255, 0.82);
}

.bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00d4ff;
}

.product-features-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #eef2f8 100%);
}

.features-grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 184, 212, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.35rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.product-specs-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #eef2f8 100%);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.spec-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
}

.spec-card span {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.spec-card strong {
    color: #e8f6ff;
    font-size: 1.05rem;
}

.product-compat-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #eef2f8 100%);
}

.compat-card {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 184, 212, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.compat-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-start;
    align-self: center;
}

.product-pricing-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.pricing-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 184, 212, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.pricing-card.featured {
    border-color: rgba(0, 184, 212, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32), 0 0 32px rgba(0, 184, 212, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    padding: 0.35rem 0.7rem;
    background: rgba(0, 184, 212, 0.85);
    color: #02222d;
    font-weight: 700;
    border-radius: 10px;
    font-size: 0.8rem;
}

.tier-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8eeaff;
}

.range {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.3rem;
}

.tier-note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.product-box-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.box-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 184, 212, 0.04));
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.product-faq-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #eef2f8 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.faq-item h4 {
    margin-bottom: 0.4rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.75);
}

.product-inquiry-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
}

.inquiry-form-container {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 184, 212, 0.25);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.inquiry-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
}

.form-note {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .product-summary {
        grid-template-columns: 1fr;
    }

    .compat-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .purchase-actions {
        width: 100%;
    }

    .purchase-actions .btn,
    .purchase-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.flow-step {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.1), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 184, 212, 0.4);
    box-shadow: 0 12px 24px rgba(0, 184, 212, 0.15);
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.flow-step h4 {
    color: #00d4ff;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.flow-step p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0;
}

.flow-arrow {
    color: #00d4ff;
    font-size: 1.5rem;
    text-align: center;
    display: none;
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(180deg, #0d1b2a 0%, #132135 50%, #0a1420 100%);
    padding: 4rem 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.1), rgba(124, 58, 237, 0.05));
    border: 1.5px solid rgba(0, 184, 212, 0.2);
    border-radius: 20px;
    padding: 3rem;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
}

/* Service Detail Page */
.service-detail-hero {
    background: linear-gradient(135deg, #1a2f5a 0%, #2d3e5f 50%, #1a2332 100%);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.breadcrumb-nav a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #00a8cc;
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Service Overview */
.service-overview-section {
    background: linear-gradient(180deg, #0a1428 0%, #111d2e 50%, #0d1622 100%);
    padding: 4rem 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.overview-main h2 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.overview-main p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-main h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.detail-list li {
    position: relative;
    padding-left: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.detail-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
    font-size: 1.1rem;
}

.overview-sidebar {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.1), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 184, 212, 0.4);
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.15), rgba(124, 58, 237, 0.08));
}

.info-card h4 {
    color: #00d4ff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.5rem;
}

.info-value {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.info-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0;
}

/* Service Features */
.service-features-section {
    background: linear-gradient(180deg, #0d1b2a 0%, #132135 50%, #0a1420 100%);
    padding: 4rem 0;
}

.features-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 184, 212, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 184, 212, 0.3);
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.12), rgba(124, 58, 237, 0.08));
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 184, 212, 0.2));
}

.feature-card h4 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Packages */
.service-packages-section {
    background: linear-gradient(180deg, #0a1428 0%, #111d2e 50%, #0d1622 100%);
    padding: 4rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(124, 58, 237, 0.05));
    border: 1.5px solid rgba(0, 184, 212, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border-color: rgba(0, 184, 212, 0.4);
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.12), rgba(124, 58, 237, 0.08));
    transform: scale(1.02);
}

.package-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: rgba(0, 184, 212, 0.4);
    box-shadow: 0 20px 40px rgba(0, 184, 212, 0.2);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-header h3 {
    color: #00d4ff;
    font-size: 1.4rem;
    margin: 0.5rem 0;
}

.package-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin: 0;
}

.package-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 184, 212, 0.2);
}

.price {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    gap: 0.6rem;
}

.package-features li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.package-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
}

/* Service Timeline */
.service-timeline-section {
    background: linear-gradient(180deg, #0d1b2a 0%, #132135 50%, #0a1420 100%);
    padding: 4rem 0;
}

.service-timeline {
    position: relative;
    margin-top: 2rem;
}

.service-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 184, 212, 0.4), rgba(0, 184, 212, 0.1));
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    position: relative;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    border: 3px solid #0a1428;
    border-radius: 50%;
    position: relative;
    top: 8px;
    left: 20px;
    box-shadow: 0 0 20px rgba(0, 184, 212, 0.4);
}

.timeline-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 184, 212, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(0, 184, 212, 0.3);
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.12), rgba(124, 58, 237, 0.08));
    transform: translateX(10px);
}

.timeline-content h4 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* FAQ Section */
.service-faq-section {
    background: linear-gradient(180deg, #0a1428 0%, #111d2e 50%, #0d1622 100%);
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 184, 212, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 184, 212, 0.3);
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.12), rgba(124, 58, 237, 0.08));
}

.faq-item h4 {
    color: #00d4ff;
    font-size: 1.05rem;
    margin: 0 0 0.8rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Inquiry Form */
.service-inquiry-section {
    background: linear-gradient(180deg, #0d1b2a 0%, #132135 50%, #0a1420 100%);
    padding: 4rem 0;
}

.inquiry-form-container {
    max-width: 700px;
    margin: 2rem auto;
}

.inquiry-form {
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #00d4ff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 8px;
    color: var(--white);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 184, 212, 0.5);
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.12), rgba(124, 58, 237, 0.08));
    box-shadow: 0 0 20px rgba(0, 184, 212, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
    }

    .features-grid-2col {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .flow-arrow {
        display: block;
        margin: 0.5rem 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-visual {
        height: 250px;
    }
}
