/*
 * Zoformix Technologies - Shared Site-Wide Styles
 * Contains only CSS rules verified byte-identical across pages.
 * Page-specific styles remain in each page's own <style> block.
 */

/* ===== Reset & Base ===== */

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

/* ===== Navigation ===== */

.nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

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

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

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

.dropdown {
            position: relative;
        }

.dropdown:hover .dropdown-toggle {
            color: var(--primary);
        }

.dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

.dropdown-menu {
            position: absolute;
            top: 120%;
            left: -20px;
            background: white;
            min-width: 280px;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            padding: 0.5rem 0;
            border: 1px solid var(--gray-light);
        }

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

.nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

.logo:hover {
            transform: scale(1.05);
        }

/* ===== Buttons & CTAs ===== */

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

/* ===== Footer ===== */

footer {
            background: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
        }

.footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

.footer-section ul {
            list-style: none;
        }

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

.footer-section ul li a:hover {
            color: white;
            padding-left: 8px;
        }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* ===== Section Headers & Common Components ===== */

.section-header h2 {
            font-family: 'Sora', sans-serif;
            font-size: clamp(1.75rem, 3.8vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--dark);
            margin-bottom: 1rem;
        }

.section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.8;
        }

.fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

.fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* ===== Animations ===== */

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

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

@keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

/* ===== Other Shared Rules ===== */

body {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--white);
        }

.page-header {
            margin-top: 75px;
            padding: 6rem 5% 4rem;
            background: linear-gradient(135deg, #F0F4FF 0%, #FAF5FF 50%, #FFF7ED 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

.page-header::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 25s ease-in-out infinite;
        }

.page-header::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite reverse;
        }

.page-header-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

.page-header h1 {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2.375rem, 5.6vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--dark);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease both;
        }

.page-header p {
            font-size: 1.3rem;
            color: var(--gray);
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

.story-section {
            padding: 6rem 5%;
            background: white;
        }

.story-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

.story-content h2 {
            font-family: 'Sora', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

.story-content p {
            font-size: 1.15rem;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

.story-image {
            position: relative;
        }

.story-image img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
        }

.story-image:hover img {
            transform: scale(1.03);
        }

.mission-vision {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #F8FAFC 0%, #F0F4FF 100%);
        }

.mv-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

.mv-card {
            background: white;
            padding: 3rem;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

.mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        }

.mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
        }

.mv-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

.mv-card h3 {
            font-family: 'Sora', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

.mv-card p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.9;
        }

.values-section {
            padding: 6rem 5%;
            background: white;
        }

.values-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

.value-card {
            background: white;
            padding: 2.5rem;
            border-radius: 24px;
            border: 2px solid var(--off-white);
            transition: all 0.4s ease;
            text-align: center;
        }

.value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
            border-color: transparent;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
        }

.value-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            transition: all 0.4s ease;
        }

.value-card:hover .value-icon {
            transform: scale(1.1) rotate(10deg);
        }

.value-card h3 {
            font-family: 'Sora', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

.value-card p {
            color: var(--gray);
            line-height: 1.8;
        }

.team-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #F8FAFC 0%, #F0F4FF 100%);
        }

.team-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }

.team-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            text-align: center;
        }

.team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
        }

.team-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            position: relative;
            overflow: hidden;
        }

.team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

.team-card:hover .team-image img {
            transform: scale(1.1);
        }

.team-info {
            padding: 2rem 1.5rem;
        }

.team-info h4 {
            font-family: 'Sora', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

.team-info p {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
        }

.stat-item:nth-child(1) { animation-delay: 0.1s; }

.stat-item:nth-child(2) { animation-delay: 0.2s; }

.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-item:nth-child(4) { animation-delay: 0.4s; }

.particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

.particle {
            position: absolute;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
            border-radius: 50%;
            animation: float-particle 15s infinite ease-in-out;
        }

.hero::before,
        .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

.contact-form iframe {
    width: 100%;
    height: 950px;
    border: none;
    display: block;
}

.legal-content {
            padding: 5rem 5% 6rem;
            background: white;
        }

.legal-content-inner {
            max-width: 860px;
            margin: 0 auto;
        }

.legal-updated {
            display: inline-block;
            background: var(--off-white);
            color: var(--gray);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2.5rem;
        }

.legal-content-inner h2 {
            font-family: 'Sora', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-top: 2.75rem;
            margin-bottom: 1rem;
        }

.legal-content-inner h2:first-of-type {
            margin-top: 0;
        }

.legal-content-inner p {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 1.25rem;
        }

.legal-content-inner ul {
            margin: 0 0 1.25rem 1.5rem;
        }

.legal-content-inner li {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 0.5rem;
        }

.legal-content-inner strong {
            color: var(--dark);
        }

.legal-content-inner a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }

.legal-content-inner a:hover {
            text-decoration: underline;
        }

.features {
        padding: 6rem 5%;
        background: white;
    }
