/* ===== CSS RESET & VARIABLES ===== */
:root {
    /* Brand Colors - Women Empowerment Theme */
    --primary: #8A2BE2;       /* Purple - Empowerment, Creativity */
    --primary-dark: #6A0DAD;
    --primary-light: #9D4EDD;
    --secondary: #FF6B8B;     /* Pink - Femininity, Compassion */
    --accent: #00B4D8;        /* Teal - Technology, Trust */
    --success: #2ECC71;       /* Green - Growth, Success */
    
    /* Neutral Colors */
    --dark: #1A1A2E;
    --dark-gray: #2D3047;
    --gray: #6C757D;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    
    /* Backgrounds */
    --bg-light: #FCFAFF;
    --bg-gradient: linear-gradient(135deg, #f8f0ff 0%, #e6f7ff 100%);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--secondary);
    opacity: 0.3;
    z-index: -1;
    border-radius: 3px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #0093B2;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-light {
    background-color: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.2rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
}


.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 1px;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 100px;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-weight: 500;
}

.trust-item i {
    color: var(--success);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.floating-icon:nth-child(1) {
    animation-delay: 0s;
    background: linear-gradient(135deg, #FFD6FF, var(--primary-light));
}

.floating-icon:nth-child(2) {
    animation-delay: 2s;
    background: linear-gradient(135deg, #C8E7FF, var(--accent));
}

.floating-icon:nth-child(3) {
    animation-delay: 4s;
    background: linear-gradient(135deg, #FFE5D9, var(--secondary));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.center-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.visual-center p {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
    line-height: 1.4;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.section-divider.left-align {
    margin: 1.5rem 0;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Who We Are */
.who-we-are {
    background-color: var(--white);
}

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

.content-visual {
    position: relative;
}

.stats-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* What We Do */
.what-we-do {
    background-color: var(--light-gray);
}

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

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--gray);
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Why Choose Michval */
.why-us {
    background-color: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(255, 107, 139, 0.03));
    border-radius: var(--radius);
    z-index: -1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Page Hero */
.page-hero {
    padding: 180px 0 80px;
    background: var(--bg-gradient);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page Specific */
.contact-hero {
    background: linear-gradient(135deg, #e6f7ff 0%, #f0e6ff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.contact-info-card h3 {
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.small {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Forms */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    margin-bottom: 1rem;
}

.contact-form, .partner-form {
    width: 100%;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--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 3px rgba(138, 43, 226, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Map/Region Section */
.map-visual {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.region-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 250px;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.region-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.region-card h3 {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #aaa;
    font-size: 14px;
    letter-spacing: 1px;
}
.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px) rotate(5deg);
}

/* Newsletter */
.newsletter h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Additional Page Styles */
.placeholder-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 3rem;
}

.image-placeholder {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    border: 2px dashed #ddd;
}

.image-placeholder p {
    font-weight: 500;
    color: var(--gray);
}

/* Vision & Mission */
.vision-mission {
    background-color: var(--light-gray);
}

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

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mission-list i {
    color: var(--success);
    margin-top: 3px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.value-icon.empowerment {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.value-icon.integrity {
    background: linear-gradient(135deg, #00B4D8, #0096C7);
}

.value-icon.excellence {
    background: linear-gradient(135deg, #FF9E00, #FF6B35);
}

.value-icon.accuracy {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

.value-icon.growth {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
}

/* Operations */
.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.operation-step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: var(--gray);
    font-style: italic;
}

/* Services Detail */
.service-detail-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-light);
    opacity: 0.2;
    line-height: 1;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.service-features h4 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
}

.feature i {
    color: var(--success);
    font-size: 1.1rem;
}

/* Additional Services */
.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-service {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.additional-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.additional-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.additional-service h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.process-step {
    position: relative;
    padding: 2rem;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0.3;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

/* Partnership Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

/* Partnership Models */
.model-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.model-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.model-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.model-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.model-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.model-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.model-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.5rem;
}

.model-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.model-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark-gray);
}

.model-features i {
    color: var(--success);
    margin-top: 3px;
}

/* Form Container */
.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    margin-bottom: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Error Message */
.error-message {
    color: #ff4757;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

/* Success Message */
.success-message {
    background: var(--success);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    text-align: center;
    display: none;
}

/* Utility Classes */
.mt-3 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Print Styles */
@media print {
    .header, .footer, .cta-section, .hero-actions, .back-to-top {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
    
    .btn {
        display: none;
    }
}




@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

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

    .hamburger-menu {
        display: flex;
    }

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

    .hero {
        padding: 120px 0 80px;
    }

    .logo-image {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   OPTION 5 LOGO STYLES - ADD THESE
============================================ */

/* Add Google Fonts import at the top of your CSS or in HTML */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700&display=swap');

/* Option 5 Logo Container */
.logo-design {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    padding: 12px 0;
    min-width: 280px;
    transition: all 0.3s ease;
}

/* Main Logo Text with Gradient */
.logo-main-gradient {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 40%, 
        #9f7aea 70%, 
        #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    letter-spacing: -0.5px;
    line-height: 1;
    animation: gradientShift 8s ease infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Logo Tagline */
.logo-subline {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    position: relative;
    padding-left: 8px;
}

/* Vertical bar before tagline */
.logo-subline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 12px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 2px;
}

/* ============================================
   LOGO HOVER EFFECTS - ADD THESE
============================================ */
.logo-design:hover {
    transform: translateY(-2px);
}

.logo-design:hover .logo-main-gradient {
    background: linear-gradient(135deg, 
        #764ba2 0%, 
        #9f7aea 40%, 
        #667eea 70%, 
        #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-duration: 4s;
}

.logo-design:hover .logo-subline {
    color: #1f2937;
}

.logo-design:hover .logo-subline::before {
    background: linear-gradient(to bottom, #764ba2, #667eea);
    height: 14px;
}

/* ============================================
   FOOTER LOGO STYLES - ADD THESE
============================================ */
.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.footer-logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================
   RESPONSIVE LOGO STYLES - ADD THESE
============================================ */
@media (max-width: 1024px) {
    .logo-design {
        min-width: 240px;
    }
    
    .logo-main-gradient {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .logo-design {
        min-width: 200px;
    }
    
    .logo-main-gradient {
        font-size: 24px;
    }
    
    .logo-subline {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .logo-design {
        min-width: 180px;
    }
    
    .logo-main-gradient {
        font-size: 22px;
    }
    
    .logo-subline {
        font-size: 9px;
        letter-spacing: 1px;
        padding-left: 6px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-logo-tagline {
        font-size: 9px;
    }
}

/* ============================================
   UPDATE NAVBAR FOR LOGO SPACING - ADD/UPDATE THESE
============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Added gap for better spacing */
}

/* Ensure navigation doesn't overlap logo */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 0 auto;
}

/* ============================================
   CTA BUTTON UPDATE - ADD THIS
============================================ */
.btn-cta {
    white-space: nowrap; /* Prevent button text from wrapping */
}

/* ============================================
   UPDATE ACTIVE NAV LINK STYLE - ADD/UPDATE THIS
============================================ */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #667eea, #764ba2); /* Updated gradient */
    border-radius: 1px;
}

/* ============================================
   COMBINED LOGO STYLES - ADD TO YOUR EXISTING CSS
============================================ */

/* Combined Logo Container */
.logo-combined {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 8px 0;
    min-width: 320px;
    transition: all 0.3s ease;
}

/* Logo Image - Keep your existing .logo-image styles, just rename class */
.logo-icon {
    height: 60px; /* Adjust based on your design */
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* If you want to keep your existing .logo-image class, use this:
.logo-combined .logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
*/

/* Text Content */
.logo-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-primary {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 40%, 
        #9f7aea 70%, 
        #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    letter-spacing: -0.3px;
    line-height: 1;
    animation: logoGradient 8s ease infinite;
}

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

.logo-secondary {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    position: relative;
    padding-left: 10px;
}

.logo-secondary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 2px;
}

/* ============================================
   HOVER EFFECTS
============================================ */
.logo-combined:hover {
    transform: translateY(-2px);
}

.logo-combined:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.logo-combined:hover .logo-primary {
    background: linear-gradient(135deg, 
        #764ba2 0%, 
        #9f7aea 40%, 
        #667eea 70%, 
        #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-duration: 4s;
}

.logo-combined:hover .logo-secondary {
    color: #1f2937;
    letter-spacing: 2.2px;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .logo-combined {
        min-width: 280px;
        gap: 12px;
    }
    
    .logo-icon {
        height: 50px;
    }
    
    .logo-primary {
        font-size: 24px;
    }
    
    .logo-secondary {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .logo-combined {
        min-width: 240px;
        gap: 10px;
    }
    
    .logo-icon {
        height: 45px;
    }
    
    .logo-primary {
        font-size: 22px;
    }
    
    .logo-secondary {
        font-size: 8px;
        letter-spacing: 1.5px;
        padding-left: 8px;
    }
    
    .logo-secondary::before {
        width: 3px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .logo-combined {
        min-width: 200px;
        gap: 8px;
    }
    
    .logo-icon {
        height: 40px;
    }
    
    .logo-primary {
        font-size: 20px;
    }
    
    .logo-secondary {
        font-size: 7px;
        letter-spacing: 1px;
    }
}

/* ============================================
   FALLBACK: If image doesn't load
============================================ */
.logo-combined.no-image .logo-text-content {
    margin-left: 0;
}

.logo-combined.no-image .logo-primary {
    font-size: 32px;
}

.logo-combined:has(img:not([src])) .logo-primary {
    font-size: 32px;
}

/* ============================================
   UPDATE NAVBAR SPACING (if needed)
============================================ */
/* If your navbar looks cramped, add this: */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* This gives space between logo and navigation */
}

/* Footer Combined Logo */
.footer-logo-combined {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-primary {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
/* ============================================
   COMBINED LOGO STYLES - HEADER
============================================ */

.logo-combined {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 8px 0;
    min-width: 320px;
    transition: all 0.3s ease;
}

.logo-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* PRIMARY GRADIENT TEXT - SAME FOR BOTH */
.logo-primary {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 40%, 
        #9f7aea 70%, 
        #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    letter-spacing: -0.3px;
    line-height: 1;
    animation: logoGradient 8s ease infinite;
}

/* SECONDARY TEXT - SAME STYLE, WHITE FOR HEADER */
.logo-secondary {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: white; /* White for header (on dark background) */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    position: relative;
    padding-left: 10px;
}

.logo-secondary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 2px;
}

/* ============================================
   FOOTER LOGO - SAME GRADIENT
============================================ */
.footer-logo-combined {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    height: 40px;
    width: auto;
    opacity: 0.9;
    border-radius: 6px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

/* SAME GRADIENT FOR FOOTER LOGO NAME */
.footer-logo-primary {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 40%, 
        #9f7aea 70%, 
        #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    letter-spacing: -0.2px;
    line-height: 1;
    animation: logoGradient 8s ease infinite;
}

/* SAME GRADIENT FOR FOOTER SLOGAN TOO! */
.footer-logo-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    background: linear-gradient(135deg, 
        #8195f8 0%,  /* Lighter purple for better visibility */
        #a48eff 50%,
        #8d9ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 3px;
    position: relative;
    padding-left: 8px;
}

.footer-logo-secondary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 12px;
    background: linear-gradient(to bottom, #a5b4fc, #c4b5fd);
    border-radius: 2px;
}

/* ============================================
   GRADIENT ANIMATION
============================================ */
@keyframes logoGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   HOVER EFFECTS - SAME FOR BOTH
============================================ */
.logo-combined:hover .logo-primary,
.footer-logo-combined:hover .footer-logo-primary {
    background: linear-gradient(135deg, 
        #764ba2 0%, 
        #9f7aea 40%, 
        #667eea 70%, 
        #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-duration: 4s;
}

.logo-combined:hover .logo-secondary,
.footer-logo-combined:hover .footer-logo-secondary {
    background: linear-gradient(135deg, 
        #c4b5fd 0%, 
        #a5b4fc 50%,
        #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .logo-combined {
        min-width: 280px;
        gap: 12px;
    }
    
    .logo-icon {
        height: 50px;
    }
    
    .logo-primary {
        font-size: 24px;
    }
    
    .footer-logo-primary {
        font-size: 20px;
    }
    
    .logo-secondary {
        font-size: 9px;
    }
    
    .footer-logo-secondary {
        font-size: 8px;
    }
}

@media (max-width: 768px) {
    .logo-combined {
        min-width: 240px;
        gap: 10px;
    }
    
    .logo-icon {
        height: 45px;
    }
    
    .logo-primary {
        font-size: 22px;
    }
    
    .footer-logo-primary {
        font-size: 18px;
    }
    
    .logo-secondary {
        font-size: 8px;
        letter-spacing: 1.5px;
        padding-left: 8px;
    }
    
    .footer-logo-secondary {
        font-size: 7px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .logo-combined {
        min-width: 200px;
        gap: 8px;
    }
    
    .logo-icon {
        height: 40px;
    }
    
    .footer-logo-icon {
        height: 35px;
    }
    
    .logo-primary {
        font-size: 20px;
    }
    
    .footer-logo-primary {
        font-size: 16px;
    }
    
    .logo-secondary {
        font-size: 7px;
        letter-spacing: 1px;
    }
    
    .footer-logo-secondary {
        font-size: 6px;
        letter-spacing: 1px;
    }
}

.logo-secondary {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #764ba2; /* ORIGINAL COLOR: Gray */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    position: relative;
    padding-left: 10px;
}

.logo-secondary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 2px;
}
