/* =========================================
   FLOWLENCE - Based on Sway Theme Design
   Where Flow Meets Excellence
   ========================================= */

/* CSS Variables - Flowlence Brand Colors (Based on Sway Theme) */
:root {
    /* Primary Colors */
    --primary: #377EF9;
    --primary-dark: #2968d9;
    --primary-light: #60A5FA;

    /* Accent Colors (Bright Gold) */
    --accent: #FFB800;
    --accent-dark: #E5A600;
    --accent-light: #FFCC33;

    /* Secondary/Dark */
    --secondary: #1E266D;
    --secondary-light: #334155;

    /* Text Colors */
    --text-dark: #1e266d;
    --text-body: #445781;
    --text-light: #6b7c99;

    /* Background Colors */
    --bg-light: #f4f9fe;
    --bg-dark: #212240;
    --bg-darker: #1a1b35;
    --footer-text: #BDBEC8;
    --white: #ffffff;
    --border: #e5e9f2;

    /* Shadows */
    --shadow: rgba(30, 38, 109, 0.08);
    --shadow-lg: rgba(30, 38, 109, 0.15);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1320px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Visually hidden - for screen readers only */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   TOP BAR (Inside Hero - Transparent)
   ========================================= */
.topbar {
    background: transparent;
    padding: 8px 0;
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 30px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.topbar-item i {
    color: var(--primary);
    font-size: 12px;
}

.topbar-item:hover {
    color: var(--white);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-separator {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.4);
}

.topbar-social {
    display: flex;
    gap: 12px;
}

.topbar-social a {
    color: rgba(255, 255, 255, 0.8);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.topbar-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* =========================================
   HEADER (Transparent, inside Hero)
   ========================================= */
.header {
    background: transparent;
    padding: 20px 0;
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    position: fixed;
    top: 0;
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 30px var(--shadow-lg);
}

.header.scrolled .logo {
    color: var(--accent);
}

.header.scrolled .nav-item > a {
    color: var(--text-dark);
}

.header.scrolled .nav-item:hover > a {
    color: var(--primary);
}

.header.scrolled .btn-outline-header {
    color: var(--primary);
    border-color: var(--primary);
}

.header.scrolled .btn-outline-header:hover {
    background: var(--primary);
    color: var(--white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-item > a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}

.nav-item > a i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-item:hover > a {
    color: var(--white);
}

.nav-item:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 25px;
    color: var(--text-body);
    font-size: 14px;
}

.dropdown li a:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--secondary);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Header button - transparent with border, fills on hover from left to right */
.btn-outline-header {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-header:hover::before {
    width: 100%;
}

.btn-outline-header:hover {
    color: var(--secondary);
    border-color: var(--accent);
}

.header.scrolled .btn-outline-header {
    color: var(--accent);
    border-color: var(--accent);
}

.header.scrolled .btn-outline-header:hover {
    color: var(--secondary);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
    background: var(--secondary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.85) 100%);
    z-index: -1;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    max-width: 450px;
}

.hero-slogan {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

/* Netflix-Style Carousel */
.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 350px;
    overflow: visible;
}

.hero-slideshow .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Netflix carousel positions */
.hero-slideshow .slide.active {
    z-index: 4;
    left: 0;
    transform: scale(1);
    filter: brightness(1);
    opacity: 1;
}

.hero-slideshow .slide.next {
    z-index: 2;
    left: 0;
    transform: translateX(25%) scale(0.9);
    filter: brightness(0.5);
    opacity: 1;
}

.hero-slideshow .slide.prev {
    z-index: 2;
    left: 0;
    transform: translateX(-25%) scale(0.9);
    filter: brightness(0.5);
    opacity: 1;
}

.hero-slideshow .slide.hidden {
    z-index: 1;
    left: 0;
    transform: scale(0.8);
    opacity: 0;
}

.slideshow-nav {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slideshow-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

.slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slideshow-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-arrow.prev {
    left: -50px;
}

.slideshow-arrow.next {
    right: -50px;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
}

.hero-stat-number span {
    color: var(--accent);
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero stat text format (single line message) */
.hero-stat-text {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.hero-stat-text i {
    font-size: 20px;
    color: var(--accent);
}

.hero-stat-text span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Video Hero */
.hero-video {
    height: auto;
    min-height: 100vh;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-centered {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-text-full {
    max-width: 800px;
}

.hero-text-full .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-full .hero-buttons {
    justify-content: center;
}

/* =========================================
   GRAY TRANSITION BAR (Below Hero)
   ========================================= */
.hero-transition {
    background: var(--bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

/* Hide transition bar on mobile */
@media (max-width: 991px) {
    .hero-transition {
        display: none;
    }
}

.transition-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.transition-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-body);
    font-size: 13px;
    font-weight: 500;
}

.transition-item i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    color: var(--primary);
    font-size: 15px;
    box-shadow: 0 3px 10px var(--shadow);
}

.transition-item span {
    color: var(--secondary);
    font-weight: 600;
}

/* =========================================
   CLIENTS/PARTNERS SECTION
   ========================================= */
.clients {
    background: var(--bg-dark);
    padding: 40px 0;
    overflow: hidden;
}

.clients-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--footer-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.clients-track {
    overflow: hidden;
    width: 100%;
}

.clients-slide {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.clients-slide img {
    height: 35px;
    width: auto;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.clients-slide img:hover {
    opacity: 1;
}

.client-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--footer-text);
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.client-logo:hover {
    opacity: 1;
    color: var(--white);
}

/* =========================================
   SECTIONS COMMON
   ========================================= */
.section {
    padding: var(--section-padding) 0;
}

.bg-light {
    background: var(--bg-light);
}

.bg-dark {
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-tag.accent {
    color: var(--accent);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title span {
    color: var(--primary);
}

.section-title span.accent {
    color: var(--accent);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-body);
}

/* =========================================
   SERVICES/OFFERINGS SECTION
   ========================================= */
.services-section {
    padding-top: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.accent::before {
    background: var(--accent);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Diagonal Split Image Layout */
.service-image.diagonal-split {
    position: relative;
}

.service-image.diagonal-split img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image.diagonal-split .split-left {
    clip-path: polygon(0 0, calc(100% - 2px) 0, 0 calc(100% - 2px));
    z-index: 2;
}

.service-image.diagonal-split .split-right {
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* White diagonal line separator */
.service-image.diagonal-split::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, transparent calc(50% - 2px), white calc(50% - 2px), white calc(50% + 2px), transparent calc(50% + 2px));
    z-index: 3;
    pointer-events: none;
}

.service-card:hover .service-image.diagonal-split img {
    transform: scale(1.05);
}

.service-overlay {
    display: none;
}

.service-link {
    display: none;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 15px;
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more i {
    font-size: 12px;
    transition: var(--transition);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Service Card Icons */
.service-content .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(55, 126, 249, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-content .service-icon.accent {
    background: rgba(255, 184, 0, 0.15);
    color: var(--accent);
}

.service-card:hover .service-icon.accent {
    background: var(--accent);
    color: var(--secondary);
}

/* =========================================
   ABOUT/TRANSFORMATION SECTION
   ========================================= */
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.transformation-content .section-tag {
    display: block;
    text-align: left;
}

.transformation-content .section-title {
    text-align: left;
    font-size: 38px;
}

.transformation-content p {
    margin-bottom: 20px;
}

.transformation-content .btn {
    margin-top: 15px;
}

.transformation-image {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.transformation-image img {
    border-radius: 12px;
    box-shadow: 0 30px 60px var(--shadow-lg);
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Decorative dots pattern like Sway */
.decorative-dots {
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, var(--primary) 3px, transparent 3px);
    background-size: 14px 14px;
    opacity: 0;
    z-index: 1;
}

.decorative-dots.top-right {
    top: -40px;
    right: -40px;
}

.decorative-dots.bottom-left {
    bottom: -40px;
    left: -40px;
}

/* Only animate when parent has .visible class */
.animate-fade-left.visible .decorative-dots.top-right {
    animation: fadeInFromTop 0.8s ease-out 0.3s forwards;
}

.animate-fade-left.visible .decorative-dots.bottom-left {
    animation: fadeInFromBottom 0.8s ease-out 0.5s forwards;
}

@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

.decorative-dots.top-left {
    top: -40px;
    left: -40px;
}

.decorative-dots.bottom-right {
    bottom: -40px;
    right: -40px;
}

.decorative-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    animation: fadeInShape 0.8s ease-out 0.4s forwards;
}

@keyframes fadeInShape {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.decorative-shape.accent-bg {
    background: rgba(249, 115, 22, 0.15);
}

.decorative-shape.primary-bg {
    background: rgba(55, 126, 249, 0.15);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 20px 50px var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.floating-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
}

.floating-label {
    font-size: 14px;
    color: var(--text-body);
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-image img {
    border-radius: 12px;
    box-shadow: 0 30px 60px var(--shadow-lg);
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    margin-bottom: 8px;
}

/* =========================================
   FLOWLENCE IOT SECTION
   ========================================= */
.iot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Section Slideshow (IoT, Business Suite) */
.section-slideshow {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.section-slideshow .section-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.section-slideshow .section-slide.active {
    opacity: 1;
}

/* Card Slideshow (Education Cards) */
.card-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-slideshow .card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.card-slideshow .card-slide.active {
    opacity: 1;
}

.iot-image img {
    border-radius: 12px;
    box-shadow: 0 30px 60px var(--shadow-lg);
}

.iot-content .section-tag {
    display: block;
    text-align: left;
}

.iot-content .section-title {
    text-align: left;
    font-size: 36px;
    margin-bottom: 15px;
}

.iot-content > p {
    margin-bottom: 25px;
    color: var(--text-body);
}

.iot-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.iot-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.iot-feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
    background: rgba(55, 126, 249, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.iot-feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.iot-feature-text p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}

/* =========================================
   CAPABILITIES SECTION
   ========================================= */
.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.capabilities-content .section-tag {
    display: block;
    text-align: left;
}

.capabilities-content .section-title {
    text-align: left;
    font-size: 38px;
}

.capabilities-content .section-subtitle {
    text-align: left;
    margin-bottom: 20px;
}

.capabilities-list {
    margin: 30px 0;
}

.capabilities-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.capabilities-list li i {
    color: var(--primary);
    font-size: 18px;
}

.capabilities-image img {
    border-radius: 12px;
    box-shadow: 0 30px 60px var(--shadow-lg);
}

/* =========================================
   PROCESS/STEPS SECTION
   ========================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--border);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 15px;
    line-height: 1;
}

.process-step:hover .process-number {
    opacity: 1;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: var(--text-body);
}

/* =========================================
   SOLUTIONS/VERTICALS SECTION
   ========================================= */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.solution-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.solution-item:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px var(--shadow-lg);
    transform: translateY(-5px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.solution-item:hover .solution-icon {
    background: var(--primary);
    color: var(--white);
}

.solution-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

/* =========================================
   BUSINESS SUITE SECTION
   ========================================= */
.suite-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.suite-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.suite-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.suite-service:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.suite-service.active {
    background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.suite-service.active i {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.suite-service.active span {
    color: var(--white);
}

.suite-service i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border-radius: 6px;
    font-size: 14px;
}

.suite-service span {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.suite-image {
    position: relative;
}

.suite-image img {
    border-radius: 12px;
    box-shadow: 0 30px 60px var(--shadow-lg);
}

/* =========================================
   EDUCATION SECTION (Blog-style cards like Sway)
   ========================================= */

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.education-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.education-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.education-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.education-card:hover .education-image img {
    transform: scale(1.1);
}

/* Static cards - no zoom effect */
.education-card-static:hover .education-image img {
    transform: none;
}

.education-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-body);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.education-category::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.education-content {
    padding: 25px;
}

.education-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.education-content p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 15px;
}

.education-content .learn-more {
    color: var(--accent);
}

/* BGC Partnership Banner - Parallax Background */
.bgc-banner {
    margin-top: 60px;
    position: relative;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
}

.bgc-banner-bg {
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    bottom: -50%;
    background: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    z-index: 0;
    will-change: transform;
}

.bgc-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 38, 109, 0.75) 0%, rgba(55, 126, 249, 0.65) 100%);
    z-index: 1;
}

.bgc-content {
    position: relative;
    z-index: 2;
}

.bgc-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.bgc-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.bgc-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bgc-partners span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.bgc-partners a {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

.bgc-partners a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 14px;
}

.testimonial-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-description {
    font-size: 14px;
    color: var(--text-body);
}

/* =========================================
   TABS SECTION
   ========================================= */
.tabs-wrapper {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 20px 60px var(--shadow-lg);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.tab-btn {
    flex: 1;
    padding: 25px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tabs-content {
    padding: 50px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.tab-image img {
    width: 100%;
    border-radius: 12px;
}

.tab-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 18px;
}

.tab-content p {
    margin-bottom: 15px;
}

.tab-content .btn {
    margin-top: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    position: relative;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 38, 109, 0.92) 0%, rgba(55, 126, 249, 0.85) 100%);
    pointer-events: none;
}

.cta-section::after {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-content .section-tag {
    display: block;
    text-align: left;
}

.contact-content .section-title {
    text-align: left;
    font-size: 34px;
}

.contact-content p {
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-item i {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-family);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Banner (Full-width with background image) */
.contact-banner {
    position: relative;
    height: 280px;
    background: url('../web_images/Contact Us/contact-us.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 38, 109, 0.85) 0%, rgba(55, 126, 249, 0.75) 100%);
}

.contact-banner-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.contact-banner-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-banner-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 30px;
    color: var(--footer-text);
    position: relative;
    overflow: hidden;
}

/* Wave/curved shapes in footer background */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(55, 126, 249, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    position: relative;
    z-index: 1;
    gap: 50px;
    margin-bottom: 50px;
}

.footer .logo,
.footer-brand .logo {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.footer .logo span {
    color: var(--accent);
}

.footer-description {
    font-size: 15px;
    color: var(--footer-text);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--footer-text);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 15px;
    color: var(--footer-text);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--footer-text);
}

.footer-legal a:hover {
    color: var(--white);
}

/* =========================================
   ANIMATIONS
   ========================================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.animate-scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Zoom in animation */
.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide up with bounce */
.animate-bounce-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-bounce-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in only */
.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.visible {
    opacity: 1;
}

/* Rotate in */
.animate-rotate-in {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-rotate-in.visible {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Stagger children animation */
.animate-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.animate-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.animate-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.animate-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.animate-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.animate-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.animate-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.animate-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }

.animate-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* =========================================
   SCROLL PROGRESS BAR
   ========================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--secondary);
    border: 2px solid var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

/* =========================================
   SKIP TO CONTENT (Accessibility)
   ========================================= */
.skip-to-content {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 46px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .topbar {
        display: none;
    }

    .header {
        position: fixed;
        top: 0;
        background: var(--white);
        box-shadow: 0 2px 20px var(--shadow);
        padding: 15px 0;
        z-index: 1000;
    }

    .header .logo {
        color: var(--secondary);
        position: relative;
        z-index: 1001;
    }

    .header .mobile-toggle span {
        background: var(--secondary);
    }

    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .nav-item > a {
        color: var(--text-dark);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-item > a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .dropdown {
        position: static;
        box-shadow: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 15px;
    }

    .hero-slogan {
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-stats {
        justify-content: center;
    }

    .transformation-grid,
    .features-grid,
    .capabilities-grid,
    .contact-grid,
    .suite-grid,
    .tab-grid,
    .iot-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .transformation-content,
    .capabilities-content,
    .iot-content {
        text-align: center;
    }

    .transformation-content .section-tag,
    .transformation-content .section-title,
    .capabilities-content .section-tag,
    .capabilities-content .section-title,
    .capabilities-content .section-subtitle,
    .iot-content .section-tag,
    .iot-content .section-title,
    .contact-content .section-tag,
    .contact-content .section-title {
        text-align: center;
    }

    .iot-image {
        order: -1;
    }

    .iot-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .iot-feature {
        justify-content: center;
        text-align: left;
    }

    .transformation-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .decorative-dots {
        width: 120px;
        height: 120px;
    }

    .decorative-dots.top-right {
        top: -25px;
        right: -25px;
    }

    .decorative-dots.bottom-left {
        bottom: -25px;
        left: -25px;
    }

    .hero-slideshow {
        max-width: 100%;
    }

    .transition-content {
        gap: 30px;
    }

    .transition-item span {
        font-size: 13px;
    }

    .capabilities-list {
        display: inline-block;
        text-align: left;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .education-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-slogan {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 14px 30px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
        padding-top: 15px;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat-number {
        font-size: 22px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .hero-slideshow {
        max-width: 100%;
        height: 200px;
    }

    .hero-slideshow .slide.next {
        transform: translateX(20%) scale(0.85);
    }

    .hero-slideshow .slide.prev {
        transform: translateX(-20%) scale(0.85);
    }

    .slideshow-nav {
        bottom: -35px;
    }

    .slideshow-arrow {
        width: 32px;
        height: 32px;
    }

    .slideshow-arrow.prev {
        left: -40px;
    }

    .slideshow-arrow.next {
        right: -40px;
    }

    /* Disable parallax on mobile for better performance */
    .bgc-banner::after {
        background-attachment: scroll;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .services-grid,
    .process-grid,
    .education-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-banner {
        height: 200px;
    }

    .contact-banner-content h2 {
        font-size: 24px;
    }

    .contact-banner-content p {
        font-size: 15px;
    }

    .suite-services {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .iot-features {
        grid-template-columns: 1fr;
    }

    .iot-content .section-title {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-card {
        left: 20px;
        bottom: -20px;
        padding: 15px 20px;
    }

    .floating-number {
        font-size: 22px;
    }

    .decorative-dots {
        width: 100px;
        height: 100px;
    }

    .decorative-dots.top-right {
        top: -20px;
        right: -20px;
    }

    .decorative-dots.bottom-left {
        bottom: -20px;
        left: -20px;
    }

    .transition-content {
        flex-direction: column;
        gap: 20px;
    }

    .transition-item {
        justify-content: center;
    }

    .bgc-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 30px;
    }

    .contact-content {
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* =========================================
   INNER PAGES - HEADER DARK VARIANT
   ========================================= */
.topbar-dark {
    background: var(--white);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.topbar-dark .topbar-item {
    color: var(--text-body);
}

.topbar-dark .topbar-item i {
    color: var(--primary);
}

.topbar-dark .topbar-item:hover {
    color: var(--primary);
}

.topbar-dark .topbar-separator {
    background: var(--border);
}

.topbar-dark .topbar-social a {
    color: var(--text-body);
    border-color: var(--border);
}

.topbar-dark .topbar-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.header-dark {
    background: var(--white);
    position: relative;
    top: 0;
    box-shadow: 0 2px 20px var(--shadow);
}

.header-dark .logo {
    color: var(--accent);
}

.header-dark .nav-item > a {
    color: var(--text-dark);
}

.header-dark .nav-item > a:hover,
.header-dark .nav-item.active > a {
    color: var(--primary);
}

/* =========================================
   PAGE HERO (Inner Pages)
   ========================================= */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page Hero with Video Background */
.page-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 38, 109, 0.9) 0%, rgba(55, 126, 249, 0.8) 100%);
    z-index: 1;
}

/* No overlay variant - darkening for text readability */
.page-hero-no-overlay .page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Ensure hero text is readable with accent color */
.page-hero-no-overlay .page-hero-content h1 {
    color: #f8fafc;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.page-hero-no-overlay .page-hero-content h1 span {
    color: var(--accent);
}

.page-hero-no-overlay .page-hero-content p {
    color: #e2e8f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero-no-overlay .page-hero-content .page-hero-tag {
    background: var(--accent);
    color: #1a1a2e;
    font-weight: 700;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 800px;
}

.page-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-breadcrumb a {
    color: var(--white);
}

.page-hero-breadcrumb a:hover {
    color: var(--accent);
}

/* =========================================
   CONTENT GRID (Two Column Layout)
   ========================================= */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-grid-reverse {
    direction: rtl;
}

.content-grid-reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 20px;
}

.content-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.content-text p {
    margin-bottom: 20px;
    color: var(--text-body);
    line-height: 1.8;
}

.content-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px var(--shadow-lg);
}

/* Feature List */
.feature-list {
    margin: 25px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-body);
}

.feature-list li i {
    color: var(--primary);
    margin-top: 4px;
}

/* Icon Features */
.icon-features {
    margin-top: 30px;
}

.icon-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(55, 126, 249, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.icon-feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.icon-feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   FEATURE CARDS GRID
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* =========================================
   ARCHITECTURE / STATS CARDS
   ========================================= */
.architecture-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-body);
    font-weight: 500;
}

/* =========================================
   SOLUTIONS CARDS (for Solutions page)
   ========================================= */
.solution-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.solution-image {
    height: 200px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-content {
    padding: 30px;
}

.solution-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.solution-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* =========================================
   PRICING / PLANS CARDS
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-body);
    font-size: 15px;
}

.pricing-features li i {
    color: var(--primary);
}

.pricing-features li.feature-disabled {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-features li.feature-disabled i {
    color: var(--text-light);
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
}

/* =========================================
   PRODUCT INTRO GRID (Business Suite)
   ========================================= */
.product-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-intro-content {
    padding-right: 1rem;
}

.product-intro-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.intro-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-body);
}

.intro-highlight i {
    color: var(--primary);
    font-size: 1rem;
}

.product-intro-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

@media (max-width: 991px) {
    .product-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-intro-content {
        padding-right: 0;
        text-align: center;
    }

    .product-intro-content .section-title {
        text-align: center !important;
    }

    .intro-highlights {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .product-intro-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .intro-highlights {
        grid-template-columns: 1fr;
    }

    .intro-highlight {
        justify-content: center;
    }
}

/* =========================================
   COMPACT PRICING
   ========================================= */
.pricing-compact .pricing-card {
    padding: 25px;
}

.pricing-compact .pricing-header {
    padding-bottom: 15px;
}

.pricing-compact .pricing-header h3 {
    font-size: 1.1rem;
}

.pricing-compact .price-amount {
    font-size: 2.2rem;
}

.pricing-compact .pricing-features li {
    padding: 6px 0;
    font-size: 0.9rem;
}

.pricing-compact .pricing-features {
    margin-bottom: 20px;
}

/* =========================================
   ALTERNATIVE OPTIONS BANNER
   ========================================= */
.alt-options-banner {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 40px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.alt-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 1.5rem;
}

.alt-option .btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.6rem 1.25rem;
}

.alt-option .btn-outline-primary {
    border: 2px solid var(--primary);
    background: transparent;
}

.alt-option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alt-option-content > i {
    font-size: 1.75rem;
    color: var(--primary);
    flex-shrink: 0;
}

.alt-option-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.alt-option-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}

.alt-option-content p strong {
    color: var(--primary);
}

.alt-options-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .alt-options-banner {
        flex-direction: column;
        padding: 1.5rem;
    }

    .alt-option {
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .alt-option-content {
        flex-direction: column;
        text-align: center;
    }

    .alt-options-divider {
        width: 100%;
        height: 1px;
    }
}

/* =========================================
   TEAM GRID (for About page)
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.team-info span {
    font-size: 14px;
    color: var(--text-light);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 14px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* =========================================
   TIMELINE (for About page)
   ========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
    max-width: 350px;
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(55, 126, 249, 0.2);
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-card i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(55, 126, 249, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 15px;
    color: var(--text-body);
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-form-large {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-large h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =========================================
   INNER PAGE RESPONSIVE STYLES
   ========================================= */
@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .architecture-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pricing-card {
        padding: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .page-hero {
        padding: 150px 0 80px;
    }

    .page-hero-title {
        font-size: 36px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .content-grid-reverse {
        direction: ltr;
    }

    .content-image {
        order: -1;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-hero-title {
        font-size: 30px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .architecture-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .topbar-dark {
        display: none;
    }

    .header-dark {
        padding: 15px 0;
    }
}

/* =========================================
   SOLUTIONS PAGE - CREATIVE LAYOUTS
   ========================================= */

/* Solutions Quick Nav */
.solutions-nav {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 5px 30px var(--shadow);
    position: relative;
    z-index: 10;
    margin-top: -50px;
    border-radius: 16px;
    margin-left: 20px;
    margin-right: 20px;
}

.solutions-nav .container {
    max-width: 1000px;
}

.solutions-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.solutions-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
}

.solutions-nav-item:hover {
    background: var(--bg-light);
}

.solutions-nav-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: var(--transition);
}

.solutions-nav-item:hover .solutions-nav-icon {
    transform: scale(1.1);
}

.solutions-nav-item span {
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
}

/* Solution Showcase (GPS Tracking) */
.solution-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-showcase-image {
    position: relative;
}

.solution-showcase-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px var(--shadow-lg);
}

.solution-showcase-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

.badge-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
}

.solution-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(55, 126, 249, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 25px;
}

.solution-description {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 30px;
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.solution-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.solution-feature-item:hover {
    background: rgba(55, 126, 249, 0.1);
}

.solution-feature-item i {
    color: var(--primary);
    font-size: 16px;
}

.solution-feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

/* Solution Number Badge */
.solution-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.solution-number-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.solution-number-inline {
    display: inline-block;
    font-size: 60px;
    font-weight: 800;
    color: rgba(55, 126, 249, 0.1);
    line-height: 1;
    margin-bottom: 10px;
}

/* Smart City Grid */
.smart-city-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.smart-city-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.smart-city-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smart-city-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(30, 38, 109, 0.95));
}

.smart-city-main-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.smart-city-main-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.smart-city-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.smart-city-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
}

.smart-city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.smart-city-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.smart-city-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.smart-city-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* Solution Split Layout */
.solution-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.solution-split-content p {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 30px;
}

.solution-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.solution-stat {
    text-align: center;
}

.solution-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.solution-stat-label {
    font-size: 13px;
    color: var(--text-light);
}

.solution-split-visual {
    position: relative;
}

.solution-image-stack {
    position: relative;
}

.stack-image-1 {
    border-radius: 20px;
    box-shadow: 0 30px 60px var(--shadow-lg);
}

.stack-image-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px var(--shadow-lg);
    border: 5px solid var(--white);
}

.solution-features-floating {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-feature {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px var(--shadow-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.floating-feature i {
    color: var(--primary);
}

/* Solution Banner (Agriculture) */
.solution-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.solution-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.solution-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 38, 109, 0.9) 0%, rgba(55, 126, 249, 0.8) 100%);
}

.solution-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.solution-banner-header {
    margin-bottom: 50px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title.light {
    color: var(--white);
}

.section-title.light span {
    color: var(--accent);
}

.solution-banner-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-top: 20px;
}

.solution-banner-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.banner-feature {
    text-align: center;
}

.banner-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.banner-feature:hover .banner-feature-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.banner-feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.banner-feature-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Industries Showcase */
.industries-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-lg);
}

.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background: var(--primary);
    color: var(--white);
}

.industry-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.industry-card p {
    font-size: 12px;
    color: var(--text-light);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* Solutions Page Responsive */
@media (max-width: 1199px) {
    .industries-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .solution-banner-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .solutions-nav {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }

    .solutions-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .smart-city-grid {
        grid-template-columns: 1fr;
    }

    .smart-city-main {
        min-height: 300px;
    }

    .solution-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-split-visual {
        order: -1;
    }

    .stack-image-2 {
        right: 20px;
        bottom: -20px;
        max-width: 200px;
    }

    .solution-features-floating {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .industries-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .solutions-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .solutions-nav-item {
        padding: 15px 10px;
    }

    .solutions-nav-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .solution-features-grid {
        grid-template-columns: 1fr;
    }

    .smart-city-cards {
        grid-template-columns: 1fr;
    }

    .solution-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .solution-stat {
        flex: 1;
        min-width: 80px;
    }

    .solution-banner-features {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .industries-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .industry-card {
        padding: 20px 15px;
    }
}

/* =========================================
   BUSINESS SUITE PAGE - CREATIVE LAYOUTS
   ========================================= */

/* Modules Hub */
.modules-hub {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modules-center {
    position: relative;
    z-index: 2;
}

.hub-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 60px rgba(55, 126, 249, 0.4);
}

.hub-circle span {
    font-size: 14px;
    opacity: 0.8;
}

.hub-circle strong {
    font-size: 18px;
    font-weight: 700;
}

.modules-orbit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.module-item {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
    width: 140px;
    transition: var(--transition);
}

.module-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.module-item .module-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin: 0 auto 12px;
}

.module-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.module-item p {
    font-size: 12px;
    color: var(--text-light);
}

/* Module positions */
.module-pos-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.module-pos-2 { top: 25%; right: 10%; }
.module-pos-3 { bottom: 25%; right: 10%; }
.module-pos-4 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.module-pos-5 { bottom: 25%; left: 10%; }
.module-pos-6 { top: 25%; left: 10%; }

/* Module Badge */
.module-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(55, 126, 249, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.module-badge i {
    color: var(--primary);
    font-size: 18px;
}

.module-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-badge.small {
    padding: 8px 15px;
}

.module-badge.small i {
    font-size: 16px;
}

.module-badge.light {
    background: rgba(255, 255, 255, 0.2);
}

.module-badge.light i,
.module-badge.light span {
    color: var(--white);
}

.module-badge.centered {
    margin: 0 auto 20px;
}

.module-intro {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Module Detail Grid */
.module-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Accordion Features */
.accordion-features {
    margin-top: 25px;
}

.accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-header i:first-child {
    color: var(--primary);
    font-size: 18px;
}

.accordion-header span {
    flex: 1;
    font-weight: 600;
    color: var(--secondary);
}

.accordion-arrow {
    color: var(--text-light);
    transition: var(--transition);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding: 0 20px 20px;
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.7;
}

/* Browser Mockup */
.browser-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 30px 60px var(--shadow-lg);
    overflow: hidden;
}

.browser-header {
    background: var(--bg-light);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.browser-dots span:first-child { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:last-child { background: #27ca40; }

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.browser-content img {
    width: 100%;
    display: block;
}

/* Twin Modules */
.twin-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.twin-module-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 50px var(--shadow);
    transition: var(--transition);
}

.twin-module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-lg);
}

.twin-module-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.module-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-label.light {
    color: rgba(255, 255, 255, 0.7);
}

.twin-module-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.twin-module-card p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.twin-module-features {
    margin-bottom: 20px;
}

.twin-module-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-body);
    font-size: 14px;
}

.twin-module-features li i {
    color: var(--primary);
    font-size: 12px;
}

.twin-module-image {
    border-radius: 12px;
    overflow: hidden;
}

.twin-module-image img {
    width: 100%;
    display: block;
}

/* Project Workflow */
.project-workflow {
    position: relative;
    padding: 40px 0;
    margin-bottom: 50px;
}

.workflow-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.workflow-step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-light);
    max-width: 180px;
    margin: 0 auto;
}

/* Project Features Row */
.project-features-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.project-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.project-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.project-feature i {
    color: var(--primary);
    font-size: 18px;
}

.project-feature span {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

/* Diagonal Modules */
.diagonal-modules {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.diagonal-module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    overflow: hidden;
    min-height: 350px;
}

.diagonal-module.reverse {
    background: var(--white);
    box-shadow: 0 20px 60px var(--shadow);
}

.diagonal-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diagonal-module:not(.reverse) .diagonal-content h3 {
    color: var(--white);
}

.diagonal-module:not(.reverse) .diagonal-content p {
    color: rgba(255, 255, 255, 0.85);
}

.diagonal-module.reverse .diagonal-content h3 {
    color: var(--secondary);
}

.diagonal-module.reverse .diagonal-content p {
    color: var(--text-body);
}

.diagonal-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.diagonal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.diagonal-stats {
    display: flex;
    gap: 30px;
}

.diagonal-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.diagonal-module.reverse .stat-value {
    color: var(--primary);
}

.stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.diagonal-module.reverse .stat-desc {
    color: var(--text-light);
}

.diagonal-image {
    position: relative;
}

.diagonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Integrations Grid */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.integration-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.integration-logo i {
    font-size: 32px;
    color: var(--text-body);
    transition: var(--transition);
}

.integration-logo:hover i {
    color: var(--primary);
}

.integration-logo span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

/* =========================================
   EDUCATION PAGE - CREATIVE LAYOUTS
   ========================================= */

/* Learning Path */
.learning-path {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.path-connector {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.path-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 120px;
}

.path-step:last-child {
    margin-bottom: 0;
}

.path-step-number {
    position: absolute;
    left: 20px;
    top: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 10px 30px var(--shadow);
    z-index: 2;
}

.path-step-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px var(--shadow);
    align-items: center;
}

.path-step-card.reverse {
    grid-template-columns: auto auto 1fr;
}

.path-step-card.reverse .path-step-image {
    order: -1;
}

.path-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
}

.path-label {
    display: inline-block;
    background: rgba(55, 126, 249, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.path-step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.path-step-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 15px;
}

.path-features {
    margin-bottom: 20px;
}

.path-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-body);
    padding: 4px 0;
}

.path-features li i {
    color: var(--primary);
    font-size: 10px;
}

.path-step-image {
    width: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.path-step-image img {
    width: 100%;
    display: block;
}

/* Journey Timeline - New Design */
.learning-ecosystem-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.journey-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.journey-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.journey-step:last-child {
    margin-bottom: 0;
}

/* Step Marker */
.journey-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.marker-line {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(100% + 60px);
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px;
}

.marker-line.last {
    display: none;
}

.marker-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(55, 126, 249, 0.4);
}

.marker-circle.accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

.marker-circle span {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.marker-label {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Journey Card */
.journey-card {
    display: grid;
    grid-template-columns: 1fr 350px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.journey-card.reverse {
    grid-template-columns: 350px 1fr;
}

.journey-card.reverse .journey-card-image {
    order: -1;
}

.journey-card-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(55, 126, 249, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.journey-card-glow.accent {
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
}

.journey-card-inner {
    padding: 40px;
    position: relative;
    z-index: 1;
}

.journey-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.journey-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-icon.accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.journey-icon i {
    font-size: 24px;
    color: white;
}

.journey-type {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background: rgba(55, 126, 249, 0.1);
    border-radius: 50px;
}

.journey-type.accent {
    color: var(--accent-dark);
    background: rgba(255, 184, 0, 0.15);
}

.journey-card-inner h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.journey-card-inner p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.journey-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.journey-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.journey-feature i {
    color: var(--primary);
    font-size: 14px;
}

/* Journey Card Image */
.journey-card-image {
    position: relative;
    overflow: hidden;
}

.journey-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.image-badge.accent {
    background: var(--accent);
    color: var(--text-dark);
}

/* Journey Summary */
.journey-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.summary-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.summary-arrow {
    color: var(--primary);
    font-size: 24px;
}

/* Journey Timeline Responsive */
@media (max-width: 1199px) {
    .journey-card {
        grid-template-columns: 1fr 300px;
    }

    .journey-card.reverse {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 991px) {
    .journey-step {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

    .marker-circle {
        width: 60px;
        height: 60px;
    }

    .marker-circle span {
        font-size: 18px;
    }

    .journey-card,
    .journey-card.reverse {
        grid-template-columns: 1fr;
    }

    .journey-card.reverse .journey-card-image {
        order: 0;
    }

    .journey-card-image img {
        min-height: 200px;
        max-height: 250px;
    }

    .journey-card-inner {
        padding: 30px;
    }

    .journey-summary {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .journey-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journey-step-marker {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
    }

    .marker-line {
        display: none;
    }

    .marker-circle {
        width: 50px;
        height: 50px;
    }

    .marker-circle span {
        font-size: 16px;
    }

    .marker-label {
        margin-top: 0;
    }

    .journey-card-inner h3 {
        font-size: 22px;
    }

    .journey-features {
        grid-template-columns: 1fr;
    }

    .journey-card-inner {
        padding: 24px;
    }

    .journey-summary {
        flex-direction: column;
        gap: 16px;
    }

    .summary-arrow {
        transform: rotate(90deg);
    }
}

/* BGC Highlight */
.bgc-highlight {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.bgc-highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bgc-highlight-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bgc-highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 38, 109, 0.95) 0%, rgba(55, 126, 249, 0.9) 100%);
}

.bgc-highlight-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.bgc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.bgc-badge i {
    color: var(--secondary);
}

.bgc-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

.bgc-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.bgc-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
}

.bgc-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.bgc-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.bgc-highlight-item i {
    color: var(--accent);
}

.bgc-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bgc-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bgc-stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.bgc-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Educator Tabs */
.educator-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    background: var(--white);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.tab-btn i {
    font-size: 18px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px var(--shadow);
}

.tab-text h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.tab-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.tab-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-body);
}

.tab-list li i {
    color: var(--primary);
    font-size: 16px;
    width: 20px;
}

.tab-image {
    border-radius: 16px;
    overflow: hidden;
}

.tab-image img {
    width: 100%;
    display: block;
}

/* Outcomes Section */
.outcomes-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.outcomes-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.outcome-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.outcomes-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.outcome-counter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.outcome-counter i {
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 15px;
}

.counter-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Outcomes Grid Full Width */
.outcomes-grid-full {
    grid-template-columns: 1fr 1.2fr;
}

.outcomes-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.outcome-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.outcome-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.outcome-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 184, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.outcome-feature-icon i {
    font-size: 22px;
    color: var(--accent);
}

.outcome-feature-card h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.outcome-feature-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Education Testimonials */
.edu-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.edu-testimonial {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px var(--shadow);
}

.edu-testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.edu-testimonial-content i {
    font-size: 30px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -5px;
    left: 0;
}

.edu-testimonial-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    padding-top: 25px;
    font-style: italic;
}

.edu-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 20px;
}

.author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* Business & Education Responsive */
@media (max-width: 1199px) {
    .modules-hub {
        min-height: 400px;
    }

    .module-item {
        width: 120px;
        padding: 15px;
    }

    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .path-step-card {
        grid-template-columns: auto 1fr;
    }

    .path-step-image {
        display: none;
    }

    .bgc-highlight-content {
        grid-template-columns: 1fr;
    }

    .bgc-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .modules-hub {
        min-height: auto;
        flex-direction: column;
        gap: 30px;
    }

    .modules-orbit {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .module-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: auto;
    }

    .module-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .twin-modules {
        grid-template-columns: 1fr;
    }

    .workflow-line {
        display: none;
    }

    .workflow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-content p {
        max-width: 100%;
    }

    .diagonal-module {
        grid-template-columns: 1fr;
    }

    .diagonal-image {
        min-height: 250px;
    }

    .learning-path {
        padding-left: 0;
    }

    .path-connector {
        display: none;
    }

    .path-step {
        padding-left: 0;
    }

    .path-step-number {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
    }

    .path-step-card {
        display: block;
        text-align: center;
    }

    .path-step-icon {
        margin: 0 auto 20px;
    }

    .path-features {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .outcomes-grid-full {
        grid-template-columns: 1fr;
    }

    .outcomes-features {
        grid-template-columns: 1fr 1fr;
    }

    .edu-testimonials {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .modules-orbit {
        grid-template-columns: repeat(2, 1fr);
    }

    .hub-circle {
        width: 140px;
        height: 140px;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bgc-text h2 {
        font-size: 30px;
    }

    .bgc-stats {
        grid-template-columns: 1fr;
    }

    .bgc-highlights {
        flex-direction: column;
        gap: 15px;
    }

    .outcomes-counters {
        grid-template-columns: 1fr;
    }

    .outcomes-features {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CODE & CLOUD PAGE STYLES
   ========================================= */

/* Code Stack Section */
.code-stack-section {
    padding: 80px 0;
}

.code-stack {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.code-stack-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.code-stack-card.reverse {
    direction: rtl;
}

.code-stack-card.reverse > * {
    direction: ltr;
}

.code-stack-visual {
    position: relative;
}

.code-stack-content {
    position: relative;
}

.code-stack-number {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
    position: absolute;
    top: -60px;
    left: -20px;
    z-index: -1;
}

.code-stack-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.code-stack-lead {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 30px;
    line-height: 1.7;
}

.code-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.code-feature-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.code-feature-chip i {
    color: var(--primary);
    font-size: 14px;
}

.code-stack-list {
    list-style: none;
}

.code-stack-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-body);
}

.code-stack-list li i {
    color: var(--primary);
    margin-top: 4px;
}

/* Code Editor Mockup */
.code-editor-mockup {
    background: #1e1e2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.editor-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #2d2d3a;
    border-bottom: 1px solid #3d3d4a;
}

.editor-dots {
    display: flex;
    gap: 8px;
}

.editor-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.editor-dots span:nth-child(1) { background: #ff5f56; }
.editor-dots span:nth-child(2) { background: #ffbd2e; }
.editor-dots span:nth-child(3) { background: #27ca40; }

.editor-title {
    font-size: 13px;
    color: #888;
    margin-left: auto;
}

.editor-body {
    padding: 24px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.code-line {
    color: #cdd6f4;
}

.code-keyword {
    color: #f38ba8;
}

.code-function {
    color: #89b4fa;
}

.code-string {
    color: #a6e3a1;
}

/* Cloud Infrastructure Diagram */
.cloud-infra-diagram {
    position: relative;
    width: 100%;
    height: 350px;
}

.cloud-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(55, 126, 249, 0.4);
}

.cloud-center i {
    font-size: 36px;
    margin-bottom: 8px;
}

.cloud-center span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.cloud-node {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.cloud-node i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.cloud-node span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.cloud-node-1 { top: 0; left: 50px; }
.cloud-node-2 { top: 0; right: 50px; }
.cloud-node-3 { bottom: 0; left: 50px; }
.cloud-node-4 { bottom: 0; right: 50px; }

.cloud-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cloud-line {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 8, 4;
    opacity: 0.3;
}

/* Kit Showcase */
.kit-showcase {
    position: relative;
}

.kit-showcase img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.kit-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.kit-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.kit-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.kit-label-1 { top: 15%; left: -10px; }
.kit-label-2 { top: 45%; right: -10px; }
.kit-label-3 { bottom: 20%; left: 10%; }

/* Comparison Table */
.comparison-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
}

.comparison-table {
    min-width: 800px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.comparison-feature-header {
    padding: 30px;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-plan {
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.comparison-plan.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.comparison-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.comparison-plan h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.comparison-plan.featured h3 {
    color: white;
}

.comparison-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-plan.featured .comparison-price {
    color: white;
}

.comparison-price span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

.comparison-body {
    display: flex;
    flex-direction: column;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    padding: 18px 30px;
    font-weight: 500;
    color: var(--text-dark);
}

.comparison-cell {
    padding: 18px 20px;
    text-align: center;
    color: var(--text-body);
}

.comparison-cell.featured {
    background: rgba(55, 126, 249, 0.05);
}

.comparison-cell i.fa-check {
    color: var(--primary);
    font-size: 18px;
}

.comparison-cell i.fa-minus {
    color: #ccc;
}

.comparison-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 20px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.comparison-cta {
    padding: 10px 20px;
    text-align: center;
}

.comparison-cta.featured {
    background: transparent;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tech-category {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
}

.tech-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.tech-category h3 i {
    color: var(--primary);
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.tech-item i {
    font-size: 20px;
    color: var(--text-body);
}

/* Getting Started Steps */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.text-white {
    color: white !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.tag-light {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.start-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
}

.start-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.start-step-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.start-step-icon i {
    font-size: 36px;
    color: white;
}

.start-step-number {
    position: absolute;
    top: 0;
    right: calc(50% - 60px);
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.start-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.start-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.start-step-connector {
    display: flex;
    align-items: center;
    padding-top: 50px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
}

.start-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =========================================
   PRODUCT DETAIL SECTIONS (Code & Cloud)
   ========================================= */
.product-detail-section {
    padding: 100px 0;
}

.product-detail-header {
    text-align: left;
    margin-bottom: 60px;
    position: relative;
}

.product-detail-header .section-title,
.product-detail-header .section-subtitle {
    text-align: center;
}

.product-number {
    font-size: 180px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.08;
    position: absolute;
    top: -80px;
    left: 0;
    line-height: 1;
    z-index: 0;
}

/* Fix for 02 number visibility on light backgrounds */
.bg-light .product-number {
    color: var(--secondary);
    opacity: 0.06;
}

.product-showcase {
    margin-bottom: 60px;
}

.product-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.product-feature-grid {
    margin-bottom: 60px;
}

.product-feature-main {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.feature-icon-large i {
    font-size: 40px;
    color: white;
}

.product-feature-main h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-feature-main p {
    font-size: 17px;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.esp-specs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.esp-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.esp-spec i {
    color: var(--primary);
}

/* Sensors Section */
.sensors-section {
    margin-bottom: 60px;
}

.sensors-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sensors-subtitle {
    text-align: center;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 40px;
}

.sensors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sensor-category {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 25px;
}

.sensor-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.sensor-category h4 i {
    color: var(--primary);
}

.sensor-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sensor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-body);
    transition: var(--transition);
}

.sensor-item:hover {
    background: var(--primary);
    color: white;
}

.sensor-item:hover i {
    color: white;
}

.sensor-item i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

/* Kit Applications */
.kit-applications {
    margin-bottom: 50px;
}

.kit-applications h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.application-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.application-card:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.application-card:hover i,
.application-card:hover h4,
.application-card:hover p {
    color: white;
}

.application-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.application-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.application-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.product-cta {
    text-align: center;
}

.cta-note {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* =========================================
   IOT KIT - NEW MULTI-COLUMN LAYOUT
   ========================================= */

/* Kit Hero Layout - Two Columns */
.kit-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.kit-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.kit-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Stacked/overlapping images layout for kit hero */
.kit-hero-stacked {
    position: relative;
    height: 450px;
}

.kit-hero-stacked img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
    opacity: 0;
    transform: translate(-60px, -40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kit-hero-stacked img:nth-child(2) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
    opacity: 0;
    transform: translate(60px, 40px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

/* Animate when parent becomes visible */
.kit-hero-layout.visible .kit-hero-stacked img:first-child,
.kit-hero-layout.visible .kit-hero-stacked img:nth-child(2) {
    opacity: 1;
    transform: translate(0, 0);
}

.kit-hero-stacked .product-badge {
    z-index: 3;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease 0.6s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
}

.kit-hero-layout.visible .kit-hero-stacked .product-badge {
    opacity: 1;
    transform: scale(1);
}

.kit-hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kit-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
}

.kit-highlight-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kit-highlight-icon i {
    font-size: 28px;
    color: white;
}

.kit-highlight-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.kit-highlight-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.esp-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.esp-spec-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.esp-spec-card:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.esp-spec-card i {
    font-size: 20px;
    color: var(--primary);
}

/* Sensors Showcase Section */
.sensors-showcase {
    margin-bottom: 80px;
}

.sensors-header {
    text-align: center;
    margin-bottom: 50px;
}

.sensors-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sensors-header p {
    font-size: 17px;
    color: var(--text-body);
}

/* Sensor Categories Grid - Cards with Images */
.sensor-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sensor-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.sensor-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.sensor-category-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sensor-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sensor-category-card:hover .sensor-category-image img {
    transform: scale(1.1);
}

.sensor-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(55, 126, 249, 0.85), rgba(30, 38, 109, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.sensor-category-card:hover .sensor-category-overlay {
    opacity: 1;
}

.sensor-category-overlay i {
    font-size: 40px;
    color: white;
}

.sensor-category-content {
    padding: 18px 20px;
}

.sensor-category-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sensor-category-content h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

.sensor-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sensor-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
}

.sensor-list li:last-child {
    border-bottom: none;
}

.sensor-list li i {
    color: var(--primary);
    font-size: 10px;
}

/* Applications Showcase Section */
.applications-showcase {
    margin-bottom: 60px;
}

.applications-header {
    text-align: center;
    margin-bottom: 50px;
}

.applications-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.applications-header p {
    font-size: 17px;
    color: var(--text-body);
}

.applications-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.application-card-v2 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.application-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.application-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.application-card-v2:hover .application-image img {
    transform: scale(1.1);
}

.application-content {
    padding: 25px;
    text-align: center;
}

.application-content i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.application-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.application-content p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}

/* Responsive - Kit Hero Layout */
@media (max-width: 992px) {
    .kit-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kit-hero-image img {
        height: 350px;
    }

    .kit-hero-stacked {
        height: 380px;
    }

    .kit-hero-stacked img:first-child {
        width: 80%;
        height: 240px;
    }

    .kit-hero-stacked img:nth-child(2) {
        width: 75%;
        height: 200px;
    }

    .sensor-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .applications-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .esp-specs-grid {
        grid-template-columns: 1fr;
    }

    .sensor-categories-grid {
        grid-template-columns: 1fr;
    }

    .applications-grid-v2 {
        grid-template-columns: 1fr;
    }

    .sensors-header h3,
    .applications-header h3 {
        font-size: 26px;
    }

    .kit-hero-stacked {
        height: 320px;
    }

    .kit-hero-stacked img:first-child {
        width: 85%;
        height: 200px;
    }

    .kit-hero-stacked img:nth-child(2) {
        width: 80%;
        height: 180px;
    }
}

/* =========================================
   FLOWLENCE CODE - NEW MULTI-COLUMN LAYOUT
   ========================================= */

/* Code Hero Layout - Two Columns */
.code-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.code-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.code-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Stacked/overlapping images layout for code hero */
.code-hero-stacked {
    position: relative;
    height: 450px;
}

.code-hero-stacked img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
    opacity: 0;
    transform: translate(-60px, -40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.code-hero-stacked img:nth-child(2) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
    opacity: 0;
    transform: translate(60px, 40px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

/* Animate when parent becomes visible */
.code-hero-layout.visible .code-hero-stacked img:first-child,
.code-hero-layout.visible .code-hero-stacked img:nth-child(2) {
    opacity: 1;
    transform: translate(0, 0);
}

.code-hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.code-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
}

.code-highlight-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-highlight-icon i {
    font-size: 28px;
    color: white;
}

.code-highlight-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.code-highlight-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.code-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.code-feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.code-feature-card:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 5px 20px var(--shadow);
}

.code-feature-card i {
    font-size: 20px;
    color: var(--primary);
}

/* Code Demo Section */
.code-demo-section {
    margin-bottom: 80px;
}

.code-demo-header {
    text-align: center;
    margin-bottom: 40px;
}

.code-demo-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.code-demo-header p {
    font-size: 17px;
    color: var(--text-body);
}

/* Code Workflow Section */
.code-workflow-section {
    margin-bottom: 80px;
}

.workflow-header {
    text-align: center;
    margin-bottom: 50px;
}

.workflow-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.workflow-header p {
    font-size: 17px;
    color: var(--text-body);
}

.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.workflow-step-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.workflow-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.workflow-step-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.workflow-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workflow-step-card:hover .workflow-step-image img {
    transform: scale(1.1);
}

.workflow-step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.workflow-step-content {
    padding: 25px;
}

.workflow-step-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.workflow-step-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Block Categories Section */
.block-categories-section {
    margin-bottom: 60px;
}

.categories-header {
    text-align: center;
    margin-bottom: 50px;
}

.categories-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.categories-header p {
    font-size: 17px;
    color: var(--text-body);
}

.categories-grid-v2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card-v2 {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.category-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.category-card-top {
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-large i {
    font-size: 28px;
    color: white;
}

.category-card-bottom {
    background: white;
    padding: 20px;
}

.category-card-bottom h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.category-card-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card-bottom ul li {
    font-size: 13px;
    color: var(--text-body);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.category-card-bottom ul li:last-child {
    border-bottom: none;
}

/* Category Colors */
.category-card-v2.category-blue .category-card-top { background: #4C97FF; }
.category-card-v2.category-purple .category-card-top { background: #9966FF; }
.category-card-v2.category-green .category-card-top { background: #4CAF50; }
.category-card-v2.category-orange .category-card-top { background: #FF9800; }
.category-card-v2.category-yellow .category-card-top { background: #F9A825; }
.category-card-v2.category-red .category-card-top { background: #F44336; }

/* Scratch-style Block Categories */
.scratch-blocks-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scratch-block-category {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.scratch-block-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.scratch-block {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}

.scratch-block::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    width: 20px;
    height: 8px;
    background: inherit;
    border-radius: 0 0 4px 4px;
}

.scratch-block::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50px;
    width: 20px;
    height: 8px;
    background: inherit;
    border-radius: 4px 4px 0 0;
}

.scratch-notch {
    display: none;
}

.scratch-block i {
    font-size: 20px;
}

.scratch-blue { background: #4C97FF; }
.scratch-purple { background: #9966FF; }
.scratch-green { background: #4CAF50; }
.scratch-orange { background: #FF9800; }
.scratch-yellow { background: #F9A825; }
.scratch-red { background: #F44336; }

.scratch-block-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
}

.scratch-block-items span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-body);
    transition: var(--transition);
}

.scratch-block-items span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.scratch-block-items span:hover {
    background: var(--primary);
    color: white;
}

.scratch-block-items span:hover::before {
    background: white;
}

@media (max-width: 992px) {
    .scratch-blocks-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .scratch-blocks-showcase {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Code Section */
@media (max-width: 1200px) {
    .categories-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .code-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .code-hero-image img {
        height: 350px;
    }

    .code-hero-stacked {
        height: 380px;
    }

    .code-hero-stacked img:first-child {
        width: 80%;
        height: 240px;
    }

    .code-hero-stacked img:nth-child(2) {
        width: 75%;
        height: 200px;
    }

    .workflow-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .code-visual-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .code-features-grid {
        grid-template-columns: 1fr;
    }

    .workflow-steps-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid-v2 {
        grid-template-columns: 1fr;
    }

    .workflow-header h3,
    .categories-header h3 {
        font-size: 26px;
    }

    .code-hero-stacked {
        height: 320px;
    }

    .code-hero-stacked img:first-child {
        width: 85%;
        height: 200px;
    }

    .code-hero-stacked img:nth-child(2) {
        width: 80%;
        height: 180px;
    }
}

/* Block Coding Demo */
.code-visual-showcase,
.code-demo-section {
    margin-bottom: 60px;
}

.code-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Image-based code demo */
.code-visual-images .code-demo-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.code-visual-images .code-demo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.block-coding-demo,
.code-output-demo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.demo-header {
    background: #2d2d2d;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.demo-dots {
    display: flex;
    gap: 8px;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dots span:nth-child(1) { background: #ff5f56; }
.demo-dots span:nth-child(2) { background: #ffbd2e; }
.demo-dots span:nth-child(3) { background: #27c93f; }

.demo-header > span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.demo-body {
    background: #1e1e1e;
    padding: 30px;
    min-height: 300px;
}

.blocks-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.code-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: white;
}

.code-block i {
    font-size: 14px;
}

.code-block.block-blue { background: #4C97FF; }
.code-block.block-purple { background: #9966FF; }
.code-block.block-green { background: #4CAF50; }
.code-block.block-orange { background: #FF9800; }
.code-block.block-yellow { background: #FFEB3B; color: #333; }
.code-block.block-red { background: #F44336; }

.code-block.nested { margin-left: 30px; }
.code-block.nested-deep { margin-left: 60px; }

.code-output {
    font-family: 'Consolas', 'Monaco', monospace;
}

.code-output pre {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.code-output code {
    color: #e0e0e0;
}

.code-output .code-keyword { color: #569CD6; }
.code-output .code-function { color: #DCDCAA; }
.code-output .code-string { color: #CE9178; }
.code-output .code-number { color: #B5CEA8; }

/* Code Workflow */
.code-features-section {
    margin-bottom: 60px;
}

.code-features-section h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.code-workflow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.code-workflow .workflow-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
}

.code-workflow .workflow-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.code-workflow .workflow-icon i {
    font-size: 30px;
    color: var(--primary);
}

.code-workflow .workflow-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.code-workflow .workflow-step p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.code-workflow .workflow-arrow {
    display: flex;
    align-items: center;
    padding-top: 30px;
    color: var(--border);
    font-size: 24px;
}

/* Block Categories */
.block-categories h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card .category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-card .category-icon i {
    font-size: 24px;
    color: white;
}

.category-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: var(--text-body);
}

.category-blue { background: rgba(76, 151, 255, 0.1); }
.category-blue .category-icon { background: #4C97FF; }

.category-purple { background: rgba(153, 102, 255, 0.1); }
.category-purple .category-icon { background: #9966FF; }

.category-green { background: rgba(76, 175, 80, 0.1); }
.category-green .category-icon { background: #4CAF50; }

.category-orange { background: rgba(255, 152, 0, 0.1); }
.category-orange .category-icon { background: #FF9800; }

.category-yellow { background: rgba(255, 235, 59, 0.1); }
.category-yellow .category-icon { background: #FFC107; }

.category-red { background: rgba(244, 67, 54, 0.1); }
.category-red .category-icon { background: #F44336; }

/* =========================================
   FLOWLENCE CLOUD - NEW MULTI-COLUMN LAYOUT
   ========================================= */

/* Cloud Hero Layout - Two Columns */
.cloud-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.cloud-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.cloud-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cloud-hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cloud-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
}

.cloud-highlight-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-highlight-icon i {
    font-size: 28px;
    color: white;
}

.cloud-highlight-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cloud-highlight-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.cloud-features-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cloud-feature-quick {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.cloud-feature-quick:hover {
    border-color: var(--primary);
    background: white;
}

.cloud-feature-quick i {
    font-size: 20px;
    color: var(--primary);
}

/* Dashboard Showcase Section */
.dashboard-showcase-section {
    margin-bottom: 80px;
}

.dashboard-showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.dashboard-showcase-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.dashboard-showcase-header p {
    font-size: 17px;
    color: var(--text-body);
}

.dashboard-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dashboard-preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.dashboard-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.dashboard-preview-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dashboard-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dashboard-preview-card:hover .dashboard-preview-image img {
    transform: scale(1.1);
}

.dashboard-preview-content {
    padding: 25px;
}

.dashboard-preview-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.dashboard-preview-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Cloud Features Section */
.cloud-features-section {
    margin-bottom: 80px;
}

.cloud-features-header {
    text-align: center;
    margin-bottom: 50px;
}

.cloud-features-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cloud-features-header p {
    font-size: 17px;
    color: var(--text-body);
}

/* Cloud Capabilities - Horizontal List Style */
.cloud-capabilities-section {
    margin-bottom: 80px;
}

.cloud-capabilities-header {
    text-align: center;
    margin-bottom: 50px;
}

.cloud-capabilities-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cloud-capabilities-header p {
    font-size: 17px;
    color: var(--text-body);
}

.cloud-capabilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cloud-capability-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.cloud-capability-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.cloud-capability-item:nth-child(1) { border-left-color: #4C97FF; }
.cloud-capability-item:nth-child(2) { border-left-color: #9966FF; }
.cloud-capability-item:nth-child(3) { border-left-color: #4CAF50; }
.cloud-capability-item:nth-child(4) { border-left-color: #FF9800; }
.cloud-capability-item:nth-child(5) { border-left-color: #F44336; }
.cloud-capability-item:nth-child(6) { border-left-color: #00BCD4; }

.capability-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon i {
    font-size: 24px;
    color: white;
}

.capability-blue { background: linear-gradient(135deg, #4C97FF, #3B7BD5); }
.capability-purple { background: linear-gradient(135deg, #9966FF, #7B4DD9); }
.capability-green { background: linear-gradient(135deg, #4CAF50, #388E3C); }
.capability-orange { background: linear-gradient(135deg, #FF9800, #F57C00); }
.capability-red { background: linear-gradient(135deg, #F44336, #D32F2F); }
.capability-teal { background: linear-gradient(135deg, #00BCD4, #0097A7); }

.capability-content {
    flex: 1;
}

.capability-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.capability-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
}

.capability-check {
    color: #4CAF50;
    font-size: 24px;
}

@media (max-width: 992px) {
    .cloud-capabilities-list {
        grid-template-columns: 1fr;
    }
}

.cloud-features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cloud-feature-card-v2 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.cloud-feature-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.cloud-feature-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.cloud-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cloud-feature-card-v2:hover .cloud-feature-image img {
    transform: scale(1.1);
}

.cloud-feature-icon-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-feature-icon-overlay i {
    font-size: 22px;
    color: white;
}

.cloud-feature-content {
    padding: 25px;
}

.cloud-feature-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cloud-feature-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Widget Types Section */
.widget-types-section {
    margin-bottom: 60px;
}

.widget-types-header {
    text-align: center;
    margin-bottom: 40px;
}

.widget-types-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.widget-types-header p {
    font-size: 17px;
    color: var(--text-body);
}

/* Widget Showcase - Visual Preview Style */
.widget-showcase-section {
    margin-bottom: 60px;
}

.widget-showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.widget-showcase-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.widget-showcase-header p {
    font-size: 17px;
    color: var(--text-body);
}

.widget-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.widget-preview-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.widget-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.widget-preview-visual {
    height: 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.widget-preview-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--primary);
    color: white;
}

.widget-preview-label i {
    font-size: 16px;
}

.widget-preview-label span {
    font-size: 14px;
    font-weight: 600;
}

/* Gauge Visual */
.gauge-visual {
    flex-direction: column;
}

.gauge-arc {
    width: 70px;
    height: 35px;
    border: 6px solid #e2e8f0;
    border-bottom: none;
    border-radius: 70px 70px 0 0;
    position: relative;
}

.gauge-arc::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 70px;
    height: 35px;
    border: 6px solid var(--primary);
    border-bottom: none;
    border-radius: 70px 70px 0 0;
    clip-path: polygon(0 0, 75% 0, 75% 100%, 0 100%);
}

.gauge-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 5px;
}

/* Chart Visual */
.chart-visual svg {
    width: 80%;
    height: 60px;
}

/* Bars Visual */
.bars-visual {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 20px;
}

.bars-visual .bar {
    width: 20px;
    background: linear-gradient(to top, var(--primary), var(--accent));
    border-radius: 4px 4px 0 0;
}

/* Map Visual */
.map-visual {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
}

.map-visual > i {
    font-size: 50px;
    color: #64748b;
    opacity: 0.3;
}

.map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.map-pin.pin-1 { top: 30%; left: 35%; }
.map-pin.pin-2 { top: 55%; left: 60%; }

/* Switch Visual */
.switch-toggle {
    width: 60px;
    height: 32px;
    background: #cbd5e1;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
}

.switch-toggle.active {
    background: var(--primary);
}

.switch-knob {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.switch-toggle.active .switch-knob {
    left: 31px;
}

/* Slider Visual */
.slider-visual {
    padding: 0 30px;
    width: 100%;
}

.slider-track {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    position: relative;
}

.slider-fill {
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 4px;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Value Visual */
.value-visual {
    flex-direction: column;
}

.value-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.value-unit {
    font-size: 16px;
    color: var(--text-body);
    margin-top: 5px;
}

/* Table Visual */
.table-visual {
    flex-direction: column;
    gap: 6px;
    padding: 20px 30px;
    width: 100%;
}

.table-row {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 3px;
}

.table-row.header {
    background: var(--primary);
    opacity: 0.7;
}

@media (max-width: 992px) {
    .widget-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .widget-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.widget-types-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.widget-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: var(--bg-light);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.widget-type-card:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.widget-type-card:hover .widget-type-icon,
.widget-type-card:hover span {
    color: white;
}

.widget-type-card:hover .widget-type-icon {
    background: rgba(255, 255, 255, 0.2);
}

.widget-type-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    transition: var(--transition);
}

.widget-type-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive - Cloud Section */
@media (max-width: 1200px) {
    .widget-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .cloud-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cloud-hero-image img {
        height: 350px;
    }

    .dashboard-showcase-grid {
        grid-template-columns: 1fr;
    }

    .cloud-features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .widget-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .cloud-features-quick {
        grid-template-columns: 1fr;
    }

    .cloud-features-grid-v2 {
        grid-template-columns: 1fr;
    }

    .widget-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-showcase-header h3,
    .cloud-features-header h3 {
        font-size: 26px;
    }
}

/* Legacy Cloud Dashboard Showcase (keeping for other pages) */
.cloud-dashboard-showcase {
    margin-bottom: 60px;
}

.dashboard-mockup {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px var(--shadow-lg);
}

.dashboard-header {
    background: #2d2d2d;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-body {
    background: #1a1a2e;
    padding: 30px;
}

.widget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dashboard-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-widget h5 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gauge-visual {
    position: relative;
    text-align: center;
}

.gauge-visual svg {
    width: 100%;
    max-width: 100px;
}

.gauge-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-top: 10px;
}

.indicator-active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 8px;
}

.indicator-active i {
    color: #4CAF50;
    font-size: 24px;
}

.indicator-active span {
    color: #4CAF50;
    font-weight: 600;
}

.mini-chart {
    height: 60px;
}

.mini-chart svg {
    width: 100%;
    height: 100%;
}

/* Legacy Cloud Features Grid */
.cloud-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.cloud-feature-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.cloud-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow);
}

.cloud-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cloud-feature-icon i {
    font-size: 24px;
    color: white;
}

.cloud-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cloud-feature-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Legacy Widget Showcase */
.widget-showcase {
    margin-bottom: 50px;
}

.widget-showcase h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.widgets-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.widget-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.widget-type:hover {
    background: var(--primary);
}

.widget-type:hover i,
.widget-type:hover span {
    color: white;
}

.widget-type i {
    font-size: 28px;
    color: var(--primary);
}

.widget-type span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-body);
}

/* Journey Pipeline - New Style */
.journey-section {
    background: var(--bg-light);
}

.journey-pipeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
}

.pipeline-track {
    position: absolute;
    top: 80px;
    left: 12%;
    right: 12%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

.pipeline-track::before,
.pipeline-track::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.pipeline-track::before { left: 0; }
.pipeline-track::after { right: 0; background: var(--accent); }

.journey-step {
    position: relative;
    text-align: center;
}

.journey-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(55, 126, 249, 0.4);
}

.journey-step-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.journey-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.journey-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.journey-icon i {
    font-size: 28px;
    color: white;
}

.journey-icon-hardware { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
.journey-icon-code { background: linear-gradient(135deg, #9966FF, #7B4DD9); }
.journey-icon-connect { background: linear-gradient(135deg, #FF9800, #F57C00); }
.journey-icon-cloud { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }

.journey-step-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.journey-step-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .journey-pipeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .pipeline-track {
        display: none;
    }
}

@media (max-width: 576px) {
    .journey-pipeline {
        grid-template-columns: 1fr;
    }
}

/* Connection Flow */
.connection-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.connection-step {
    flex: 1;
    max-width: 180px;
    text-align: center;
}

.connection-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.connection-icon i {
    font-size: 30px;
    color: white;
}

.connection-step h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.connection-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.connection-arrow {
    display: flex;
    align-items: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
}

/* Code & Cloud Responsive */
@media (max-width: 1199px) {
    .code-stack-card {
        gap: 50px;
    }

    .code-stack-content h2 {
        font-size: 36px;
    }

    .code-stack-number {
        font-size: 100px;
        top: -50px;
    }
}

@media (max-width: 991px) {
    .code-stack-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .code-stack-card.reverse {
        direction: ltr;
    }

    .code-stack-visual {
        order: 1;
    }

    .code-stack-content {
        order: 2;
    }

    .cloud-infra-diagram {
        height: 300px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .start-steps {
        flex-direction: column;
        align-items: center;
    }

    .start-step {
        max-width: 100%;
    }

    .start-step-connector {
        transform: rotate(90deg);
        padding: 10px 0;
    }

    .start-cta {
        flex-direction: column;
        align-items: center;
    }

    /* New Code & Cloud Responsive */
    .sensors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .code-visual-grid {
        grid-template-columns: 1fr;
    }

    .code-workflow {
        flex-direction: column;
        align-items: center;
    }

    .code-workflow .workflow-step {
        max-width: 100%;
    }

    .code-workflow .workflow-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .widget-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cloud-features-grid {
        grid-template-columns: 1fr;
    }

    .widgets-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .connection-flow {
        flex-direction: column;
        align-items: center;
    }

    .connection-step {
        max-width: 100%;
    }

    .connection-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .code-stack {
        gap: 60px;
    }

    .code-stack-content h2 {
        font-size: 28px;
    }

    .code-stack-number {
        font-size: 80px;
        top: -40px;
        left: 0;
    }

    .code-features-row {
        gap: 8px;
    }

    .code-feature-chip {
        padding: 8px 12px;
        font-size: 12px;
    }

    .editor-body {
        font-size: 12px;
        padding: 16px;
    }

    .cloud-node {
        width: 80px;
        height: 80px;
    }

    .cloud-node i {
        font-size: 20px;
    }

    .cloud-node span {
        font-size: 10px;
    }

    .cloud-center {
        width: 110px;
        height: 110px;
    }

    .cloud-center i {
        font-size: 28px;
    }

    .kit-label {
        padding: 6px 12px;
        font-size: 11px;
    }

    .comparison-table {
        min-width: 700px;
    }

    .tech-items {
        grid-template-columns: 1fr;
    }

    /* New Code & Cloud Mobile Responsive */
    .sensors-grid {
        grid-template-columns: 1fr;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-number {
        font-size: 120px;
        top: -50px;
    }

    .demo-body {
        padding: 15px;
        min-height: auto;
    }

    .code-block {
        padding: 10px 15px;
        font-size: 13px;
    }

    .code-block.nested { margin-left: 15px; }
    .code-block.nested-deep { margin-left: 30px; }
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* About Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-story-content {
    padding-right: 40px;
}

.about-story-lead {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-story-content p {
    margin-bottom: 16px;
    color: var(--text-body);
}

/* Story Timeline */
.story-timeline {
    position: relative;
    padding-left: 40px;
}

.story-timeline-line {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}

.story-milestone {
    position: relative;
    padding-bottom: 40px;
}

.story-milestone:last-child {
    padding-bottom: 0;
}

.story-milestone::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
    box-shadow: 0 0 0 4px var(--primary);
}

.milestone-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.milestone-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.milestone-content p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon i {
    font-size: 32px;
    color: white;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* About Stats Section */
.about-stats-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    overflow: hidden;
}

.about-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
}

.about-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Offerings Showcase */
.offerings-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.offering-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
}

.offering-main-image {
    height: 100%;
}

.offering-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.offering-main-content {
    padding: 50px 50px 50px 0;
}

.offering-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.offering-main-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.offering-main-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offering-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-decoration: none;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.offering-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.offering-card-icon.accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.offering-card-icon i {
    font-size: 24px;
    color: white;
}

.offering-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.offering-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

.offering-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.offering-card:hover .offering-link {
    gap: 12px;
}

/* Partners Showcase */
.partners-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.partner-highlight {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
}

.partner-label {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.partner-highlight-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.partner-highlight-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.partner-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.partner-logo-item {
    text-align: center;
}

.partner-logo-item span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.partner-logo-item p {
    font-size: 12px;
    color: var(--text-body);
    margin: 0;
}

.partner-connector {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

/* Location Section */
.location-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-details {
    margin: 30px 0;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-body);
}

.location-detail i {
    color: var(--primary);
    font-size: 18px;
    width: 24px;
}

.location-visual {
    position: relative;
}

.location-map {
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8f2 100%);
    position: relative;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 16px;
}

.map-placeholder span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.map-pin {
    position: absolute;
    top: 40%;
    left: 55%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    animation: map-pulse 2s ease infinite;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(55, 126, 249, 0.3);
    border-radius: 50%;
    animation: map-pulse 2s ease infinite;
}

@keyframes map-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* About Page Responsive */
@media (max-width: 1199px) {
    .about-story {
        gap: 50px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-stat-number {
        font-size: 48px;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-story-content {
        padding-right: 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offering-main {
        grid-template-columns: 1fr;
    }

    .offering-main-content {
        padding: 40px;
    }

    .partner-highlight {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-map {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stat-number {
        font-size: 42px;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .offering-main-content {
        padding: 30px 20px;
    }

    .offering-main-content h3 {
        font-size: 28px;
    }

    .partner-highlight {
        padding: 30px;
    }

    .partner-highlight-content h3 {
        font-size: 24px;
    }

    .partner-logos {
        flex-direction: column;
    }

    .partner-connector {
        transform: rotate(90deg);
    }

    .partner-links {
        flex-direction: column;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Compact Hero */
.page-hero-compact {
    min-height: 350px;
}

.page-hero-compact .page-hero-content h1 {
    font-size: 48px;
}

/* Contact Main Section */
.contact-main-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-card > p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 30px;
}

/* Full Contact Form */
.contact-form-full .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-full .form-group {
    margin-bottom: 24px;
}

.contact-form-full label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-full input,
.contact-form-full select,
.contact-form-full textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: var(--transition);
}

.contact-form-full input:focus,
.contact-form-full select:focus,
.contact-form-full textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.contact-form-full input::placeholder,
.contact-form-full textarea::placeholder {
    color: var(--text-light);
}

.contact-form-full select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23445781' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-form-full textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-full .btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Contact Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Quick Contact Cards */
.contact-quick-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-quick-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-decoration: none;
}

.contact-quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-quick-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-quick-icon i {
    font-size: 20px;
    color: white;
}

.contact-quick-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-quick-content p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

/* Social Box */
.contact-social-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-social-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-social-box > p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 20px;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: var(--transition);
}

.contact-social-link.facebook { background: #1877f2; }
.contact-social-link.twitter { background: #1da1f2; }
.contact-social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-social-link.linkedin { background: #0a66c2; }

.contact-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Response Box */
.contact-response-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.response-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.response-icon i {
    font-size: 20px;
    color: var(--accent);
}

.response-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.response-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.faq-icon i {
    font-size: 16px;
    color: var(--primary);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1199px) {
    .contact-main-grid {
        gap: 40px;
    }

    .contact-form-card {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        order: -1;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-hero-compact {
        min-height: 280px;
    }

    .page-hero-compact .page-hero-content h1 {
        font-size: 36px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-form-full .form-row {
        grid-template-columns: 1fr;
    }

    .contact-quick-cards {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   WIDGET TYPES - Simple Icon Grid
   ========================================= */
.widget-types-section {
    margin-top: 60px;
}

.widget-types-header {
    text-align: center;
    margin-bottom: 40px;
}

.widget-types-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.widget-types-header p {
    font-size: 16px;
    color: var(--text-body);
}

.widget-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.widget-type-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.widget-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.widget-type-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.widget-type-icon i {
    font-size: 28px;
    color: white;
}

.widget-type-icon.wt-blue { background: linear-gradient(135deg, #377ef9, #2563eb); }
.widget-type-icon.wt-green { background: linear-gradient(135deg, #10b981, #059669); }
.widget-type-icon.wt-purple { background: linear-gradient(135deg, #9966FF, #7c3aed); }
.widget-type-icon.wt-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.widget-type-icon.wt-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.widget-type-icon.wt-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.widget-type-icon.wt-yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }
.widget-type-icon.wt-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }

.widget-type-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.widget-type-card p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .widget-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .widget-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .widget-type-card {
        padding: 20px 15px;
    }

    .widget-type-icon {
        width: 56px;
        height: 56px;
    }

    .widget-type-icon i {
        font-size: 24px;
    }
}

/* =========================================
   JOURNEY FLOW - Simple Horizontal Flow
   ========================================= */
.journey-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.journey-flow-item {
    text-align: center;
    flex: 0 1 180px;
}

.journey-flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.journey-flow-icon i {
    font-size: 32px;
    color: white;
}

.journey-flow-icon.jf-hardware { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
.journey-flow-icon.jf-code { background: linear-gradient(135deg, #9966FF, #7B4DD9); }
.journey-flow-icon.jf-connect { background: linear-gradient(135deg, #FF9800, #F57C00); }
.journey-flow-icon.jf-cloud { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }

.journey-flow-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.journey-flow-item p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

.journey-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-flow-arrow i {
    font-size: 24px;
    color: var(--primary);
}

@media (max-width: 992px) {
    .journey-flow {
        gap: 15px;
    }

    .journey-flow-item {
        flex: 0 1 140px;
    }

    .journey-flow-icon {
        width: 64px;
        height: 64px;
    }

    .journey-flow-icon i {
        font-size: 26px;
    }

    .journey-flow-arrow i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .journey-flow {
        flex-direction: column;
        gap: 30px;
    }

    .journey-flow-arrow {
        transform: rotate(90deg);
    }

    .journey-flow-item {
        flex: 0 1 auto;
    }
}

/* =========================================
   ABOUT PAGE - NEW DESIGN
   ========================================= */

/* About Intro Section */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-intro-content h2 span {
    color: var(--primary);
}

.lead-text {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px var(--shadow-lg);
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* About Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 20px 60px var(--shadow);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-item-bar {
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid var(--border);
}

.stat-item-bar:last-child {
    border-right: none;
}

.stat-item-bar .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item-bar .stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Values Grid */
.values-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card-new {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.value-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--shadow-lg);
    border-color: rgba(55, 126, 249, 0.1);
}

.value-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.value-card-new:nth-child(2) .value-card-icon {
    background: linear-gradient(135deg, #00C9A7, #008F7A);
}

.value-card-new:nth-child(3) .value-card-icon {
    background: linear-gradient(135deg, #9966FF, #7B4DD9);
}

.value-card-new h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.value-card-new p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* Offerings Grid */
.offerings-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.offering-card-new {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offering-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--shadow-lg);
}

.offering-card-icon-new {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.offering-card-new:nth-child(2) .offering-card-icon-new {
    background: linear-gradient(135deg, #00C9A7, #008F7A);
}

.offering-card-new:nth-child(3) .offering-card-icon-new {
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
}

.offering-card-new:nth-child(4) .offering-card-icon-new {
    background: linear-gradient(135deg, #9966FF, #7B4DD9);
}

.offering-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.offering-card-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.offering-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* Offering card as link */
a.offering-card-new {
    text-decoration: none;
    color: inherit;
}

a.offering-card-new .offering-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: gap 0.3s ease;
}

a.offering-card-new:hover .offering-link {
    gap: 12px;
}

.offering-card-icon-new.accent {
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
}

/* Horizontal Timeline */
.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 60px 0 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 88px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #00C9A7, #9966FF);
    border-radius: 2px;
}

.timeline-h-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.timeline-h-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 25px;
    margin-bottom: 15px;
}

.timeline-h-item:nth-child(2) .timeline-h-year {
    background: linear-gradient(135deg, #00C9A7, #008F7A);
}

.timeline-h-item:nth-child(3) .timeline-h-year {
    background: linear-gradient(135deg, #9966FF, #7B4DD9);
}

.timeline-h-item:nth-child(4) .timeline-h-year {
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
}

.timeline-h-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 0 0 6px rgba(55, 126, 249, 0.2);
}

.timeline-h-item:nth-child(2) .timeline-h-dot {
    border-color: #00C9A7;
    box-shadow: 0 0 0 6px rgba(0, 201, 167, 0.2);
}

.timeline-h-item:nth-child(3) .timeline-h-dot {
    border-color: #9966FF;
    box-shadow: 0 0 0 6px rgba(153, 102, 255, 0.2);
}

.timeline-h-item:nth-child(4) .timeline-h-dot {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.2);
}

.timeline-h-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.timeline-h-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.location-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.location-info-card > p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-info-item:hover {
    background: rgba(55, 126, 249, 0.05);
}

.location-info-item i {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.location-info-item div h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.location-info-item div p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

.location-info-item div a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-info-item div a:hover {
    color: var(--primary-dark);
}

.location-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
    min-height: 400px;
}

.location-map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* =========================================
   ABOUT PAGE - RESPONSIVE STYLES
   ========================================= */
@media (max-width: 1200px) {
    .offerings-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-content {
        text-align: center;
    }

    .about-intro-content h2 {
        font-size: 32px;
    }

    .about-intro-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -40px;
        padding: 30px;
    }

    .stat-item-bar {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .stat-item-bar:nth-child(3),
    .stat-item-bar:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .values-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-horizontal {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0;
    }

    .timeline-horizontal::before {
        top: 0;
        bottom: 0;
        left: 29px;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, var(--primary), #00C9A7, #9966FF);
    }

    .timeline-h-item {
        text-align: left;
        padding-left: 70px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-h-dot {
        position: absolute;
        left: 20px;
        top: 35px;
        margin: 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-map-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .stat-item-bar {
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .stat-item-bar:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .stat-item-bar .stat-number {
        font-size: 36px;
    }

    .offerings-grid-new {
        grid-template-columns: 1fr;
    }

    .location-info-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .about-intro-content h2 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 16px;
    }

    .about-intro-image img {
        height: 300px;
    }

    .value-card-new {
        padding: 25px 20px;
    }

    .value-card-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .offering-card-new {
        padding: 25px 20px;
    }

    .timeline-h-item {
        padding-left: 60px;
    }

    .timeline-horizontal::before {
        left: 24px;
    }

    .timeline-h-dot {
        left: 15px;
        width: 18px;
        height: 18px;
    }

    .location-map-container {
        min-height: 300px;
    }
}

/* =========================================
   ABOUT PAGE - NEW IMPROVED STYLES
   ========================================= */

/* About Highlights Inline - 4 chips in a row */
.about-highlights-inline {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 25px;
}

.about-highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(55, 126, 249, 0.08), rgba(55, 126, 249, 0.04));
    border: 1px solid rgba(55, 126, 249, 0.15);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.about-highlight-chip:hover {
    background: linear-gradient(135deg, rgba(55, 126, 249, 0.15), rgba(55, 126, 249, 0.08));
    border-color: rgba(55, 126, 249, 0.3);
    transform: translateY(-2px);
}

.about-highlight-chip i {
    color: var(--primary);
    font-size: 14px;
}

/* Mission & Vision Creative */
.mission-vision-creative {
    display: flex;
    align-items: stretch;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 50px var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px var(--shadow-lg);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mv-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon-wrapper.vision {
    background: linear-gradient(135deg, var(--accent), #E6A800);
}

.mv-icon-wrapper i {
    font-size: 22px;
    color: var(--white);
}

.mv-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.mv-card.mv-vision .mv-label {
    color: var(--accent);
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.mv-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.mv-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.mv-accent-bar.vision {
    background: linear-gradient(90deg, var(--accent), #E6A800);
}

.mv-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.mv-divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
    min-height: 40px;
}

.mv-divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.mv-divider-icon i {
    font-size: 14px;
    color: var(--primary);
}

/* Accent Button */
.btn-accent {
    background: linear-gradient(135deg, var(--accent), #E6A800);
    color: var(--text-dark);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #E6A800, #CC9600);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-accent i {
    transition: transform 0.3s ease;
}

.btn-accent:hover i {
    transform: translateX(4px);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i {
    font-size: 32px;
    color: var(--white);
}

.mission-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.mission-image-center {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow);
}

.mission-image-center img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Modern Values Grid */
.values-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-modern-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.value-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: rgba(55, 126, 249, 0.1);
}

.value-modern-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.value-modern-icon.innovation { background: linear-gradient(135deg, #FFB800, #FF8C00); }
.value-modern-icon.security { background: linear-gradient(135deg, #00C9A7, #008F7A); }
.value-modern-icon.partnership { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.value-modern-icon.scalability { background: linear-gradient(135deg, #FF6B6B, #EE5A24); }
.value-modern-icon.global { background: linear-gradient(135deg, #9966FF, #7B4DD9); }
.value-modern-icon.education { background: linear-gradient(135deg, #00B4DB, #0083B0); }

.value-modern-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.value-modern-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Products Showcase Grid */
.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-showcase-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px var(--shadow-lg);
}

.product-showcase-card.featured {
    border: 2px solid var(--primary);
}

.product-showcase-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-showcase-card:hover .product-showcase-image img {
    transform: scale(1.1);
}

.product-showcase-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-showcase-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-showcase-badge.accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.product-showcase-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-showcase-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.product-showcase-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

.product-showcase-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.product-showcase-card:hover .product-showcase-link {
    gap: 12px;
}

/* Location Modern Grid */
.location-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: stretch;
}

.location-modern-info {
    display: flex;
    flex-direction: column;
}

.location-modern-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin: 15px 0 20px;
}

.location-modern-title span {
    color: var(--primary);
}

.location-modern-desc {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 30px;
}

.location-contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.location-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-contact-icon i {
    font-size: 18px;
    color: var(--white);
}

.location-contact-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3px;
}

.location-contact-text p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

.location-contact-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-contact-text a:hover {
    color: var(--primary-dark);
}

.location-modern-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
    min-height: 380px;
}

.location-modern-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}

/* =========================================
   ABOUT PAGE - NEW RESPONSIVE STYLES
   ========================================= */
@media (max-width: 1200px) {
    .products-showcase-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .about-highlights-inline {
        flex-wrap: wrap;
    }

    .mission-vision-creative {
        flex-direction: column;
        gap: 20px;
    }

    .mv-divider {
        flex-direction: row;
        padding: 10px 0;
    }

    .mv-divider-line {
        width: auto;
        height: 2px;
        flex: 1;
        min-height: auto;
        background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    .mv-divider-icon {
        margin: 0 15px;
    }

    .mv-divider-icon i {
        transform: rotate(90deg);
    }

    .values-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .location-modern-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-modern-map {
        min-height: 350px;
        order: -1;
    }

    .location-contact-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-highlights-inline {
        gap: 10px;
    }

    .about-highlight-chip {
        padding: 8px 14px;
        font-size: 12px;
    }

    .mv-card {
        padding: 30px 25px;
    }

    .mv-card h3 {
        font-size: 20px;
    }

    .values-modern-grid {
        grid-template-columns: 1fr;
    }

    .value-modern-card {
        padding: 25px;
    }

    .location-contact-list {
        grid-template-columns: 1fr;
    }

    .location-modern-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-highlights-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-highlight-chip {
        width: 100%;
        justify-content: center;
    }

    .mv-card {
        padding: 25px 20px;
    }

    .mv-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .mv-icon-wrapper i {
        font-size: 18px;
    }

    .mv-card h3 {
        font-size: 18px;
    }

    .value-modern-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .product-showcase-image {
        height: 180px;
    }

    .location-modern-title {
        font-size: 24px;
    }

    .location-modern-map {
        min-height: 300px;
    }
}

/* =========================================
   CONTACT PAGE - NEW STYLES
   ========================================= */

/* Contact Options Grid */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-option-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-lg);
    border-color: var(--primary);
}

.contact-option-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-option-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-option-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-option-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-option-desc {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Contact Form Layout */
.contact-form-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px var(--shadow);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header .section-tag {
    margin-bottom: 12px;
}

.contact-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-form-header p {
    color: var(--text-body);
    font-size: 16px;
}

/* GoHighLevel Form Placeholder */
.ghl-form-placeholder {
    min-height: 400px;
}

.form-placeholder-content {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.form-placeholder-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-placeholder-icon i {
    font-size: 24px;
    color: var(--white);
}

.form-placeholder-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-placeholder-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.form-placeholder-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.placeholder-field {
    height: 44px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.placeholder-field.full {
    grid-column: span 2;
}

.placeholder-field.tall {
    height: 100px;
}

.placeholder-button {
    grid-column: span 2;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    margin-top: 8px;
}

/* Contact Info Cards */
.contact-form-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-info-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-info-icon.accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.contact-info-icon.secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-info-card .btn {
    width: 100%;
}

/* Contact Map Wrapper */
.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
}

.contact-map-wrapper iframe {
    display: block;
}

/* Button Sizes */
.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Contact Page Responsive */
@media (max-width: 1200px) {
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 280px;
    }

    .contact-info-card:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-option-card {
        padding: 24px 20px;
    }

    .contact-option-icon {
        width: 56px;
        height: 56px;
    }

    .contact-option-icon i {
        font-size: 20px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .contact-form-header h2 {
        font-size: 24px;
    }

    .contact-info-card {
        flex: 1 1 100%;
    }

    .form-placeholder-content {
        padding: 28px 20px;
    }

    .form-placeholder-fields {
        grid-template-columns: 1fr;
    }

    .placeholder-field.full {
        grid-column: span 1;
    }

    .placeholder-button {
        grid-column: span 1;
    }

    .contact-map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-option-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }

    .contact-option-icon {
        margin: 0;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .contact-option-icon i {
        font-size: 18px;
    }

    .contact-option-card h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .contact-option-value {
        font-size: 14px;
    }

    .contact-option-desc {
        font-size: 13px;
    }

    .contact-form-header h2 {
        font-size: 22px;
    }

    .contact-map-wrapper iframe {
        height: 300px;
    }
}

/* =========================================
   CONTACT FORM STYLES
   ========================================= */

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-family);
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(55, 126, 249, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7c99' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-block i {
    margin-left: 8px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: flex-start;
}

.contact-sidebar-section {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px var(--shadow);
    flex-shrink: 0;
}

.sidebar-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Quick Action Cards */
.quick-action-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-action-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    background: var(--bg-light);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.quick-action-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 4px 15px var(--shadow);
}

.quick-action-card.accent {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 184, 0, 0.05));
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.quick-action-card.accent:hover {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(255, 184, 0, 0.1));
    border-color: var(--accent);
}

.quick-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-action-card.accent .quick-action-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.quick-action-icon i {
    font-size: 18px;
    color: var(--white);
}

.quick-action-content {
    flex: 1;
}

.quick-action-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.quick-action-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.quick-action-arrow {
    color: var(--text-light);
    font-size: 12px;
    transition: var(--transition);
}

.quick-action-card:hover .quick-action-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.quick-action-card.accent:hover .quick-action-arrow {
    color: var(--accent-dark);
}

/* Social Connect Box */
.contact-sidebar-section:has(.social-connect-box) {
    text-align: center;
}

.contact-sidebar-section:has(.social-connect-box) .sidebar-section-title {
    text-align: center;
}

.social-connect-box {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-connect-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-connect-link i {
    font-size: 18px;
    color: var(--white);
}

.social-connect-link.linkedin {
    background: #0077B5;
}

.social-connect-link.twitter {
    background: #1DA1F2;
}

.social-connect-link.facebook {
    background: #1877F2;
}

.social-connect-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-connect-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form Responsive Updates */
@media (max-width: 992px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-sidebar-section {
        flex: 1 1 calc(50% - 12px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-sidebar-section {
        flex: 1 1 100%;
    }

    .quick-action-card {
        padding: 14px;
    }

    .quick-action-icon {
        width: 40px;
        height: 40px;
    }

    .quick-action-icon i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        gap: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .social-connect-box {
        justify-content: center;
    }
}

/* Contact Page Enhanced Transitions */
.contact-form-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--shadow-lg);
}

.contact-sidebar-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-sidebar-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow);
}

/* Map Section Enhancement */
.contact-map-wrapper {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-map-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px var(--shadow-lg);
}

/* Form Focus States Enhancement */
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(55, 126, 249, 0.15);
}

/* =========================================
   UTILITY CLASSES
   ========================================= */

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Margins */
.mt-30 { margin-top: 30px; }
.mt-2rem { margin-top: 2rem; }
.mt-2-5rem { margin-top: 2.5rem; }
.mt-3rem { margin-top: 3rem; }
.mb-2rem { margin-bottom: 2rem; }

/* Max width containers */
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* Section padding variants */
.section-sm { padding: 3rem 0; }
.section-md { padding: 4rem 0; }

/* Decorative shape positioning */
.decorative-shape.pos-top-right {
    top: -40px;
    right: 80px;
}
