/* Professional Zoho Implementation Design System */

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

/* CSS Variables - Professional Color Palette */
:root {
    /* Core Brand Colors - Based on #2563eb */
    --primary: 217 91% 60%;          /* #2563eb - Main brand blue */
    --primary-dark: 217 91% 45%;     /* Darker variant */
    --primary-light: 217 91% 75%;    /* Lighter variant */
    --primary-foreground: 0 0% 98%;  /* White text on primary */
    
    /* Professional Color Palette */
    --background: 0 0% 100%;         /* Pure white background */
    --foreground: 222.2 84% 4.9%;    /* Dark text */
    --muted: 210 40% 96.1%;          /* Light gray backgrounds */
    --muted-foreground: 215.4 16.3% 46.9%; /* Muted text */
    
    /* Semantic Colors */
    --success: 142 76% 36%;          /* Green for checkmarks */
    --success-foreground: 0 0% 98%;
    --warning: 38 92% 50%;           /* Orange for warnings */
    --warning-foreground: 0 0% 98%;
    --destructive: 0 84.2% 60.2%;    /* Red for errors */
    --destructive-foreground: 210 40% 98%;
    
    /* UI Components */
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 217 91% 60%;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(217 91% 45%) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(220 100% 66%) 50%, hsl(217 91% 45%) 100%);
    --gradient-subtle: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(210 40% 98%) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsl(217 91% 60% / 0.05);
    --shadow-md: 0 4px 6px -1px hsl(217 91% 60% / 0.1), 0 2px 4px -1px hsl(217 91% 60% / 0.06);
    --shadow-lg: 0 10px 15px -3px hsl(217 91% 60% / 0.1), 0 4px 6px -2px hsl(217 91% 60% / 0.05);
    --shadow-xl: 0 20px 25px -5px hsl(217 91% 60% / 0.1), 0 10px 10px -5px hsl(217 91% 60% / 0.04);
    --shadow-glow: 0 0 40px hsl(217 91% 75% / 0.4);
    
    /* Radius */
    --radius: 0.75rem;
    
    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: hsl(var(--primary-dark));
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.btn-hero-primary {
    background: hsl(var(--primary-foreground));
    color: hsl(var(--primary));
    box-shadow: var(--shadow-xl);
    font-weight: 700;
}

.btn-hero-primary:hover {
    background: hsl(var(--primary-foreground) / 0.9);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: transparent;
    color: hsl(var(--primary-foreground));
    border: 2px solid hsl(var(--primary-foreground) / 0.3);
    font-weight: 600;
}

.btn-hero-secondary:hover {
    background: hsl(var(--primary-foreground) / 0.1);
    border-color: hsl(var(--primary-foreground) / 0.5);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(0.25rem);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(0.25rem);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: var(--transition-smooth);
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6rem;
}

.nav-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

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

.nav-link {
    color: hsl(var(--foreground));
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    background: hsl(var(--muted));
}

.mobile-nav {
    margin-top: 0.5rem;
}

.mobile-nav-content {
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: var(--transition-smooth);
    border-radius: 0.5rem;
}

.mobile-nav-link:hover {
    color: hsl(var(--primary));
    background: hsl(var(--muted));
}

.mobile-nav-cta {
    padding-top: 0.5rem;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section {
        padding: 9rem 0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: hsl(var(--primary) / 0.8);
    mix-blend-mode: multiply;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(var(--primary) / 0.9), hsl(0deg 0% 28% / 70%), hsl(var(--primary) / 0.5));
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: hsl(var(--primary-light) / 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 25%;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
}

.floating-2 {
    bottom: 25%;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(var(--primary-foreground) / 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.6rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.trust-indicators {
    display: grid;
    gap: 1.5rem;
    /* max-width: 32rem; */
    margin: 0 auto;
}

@media (min-width: 768px) {
    .trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground) / 0.9);
}

.trust-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(0deg 0% 100%);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.trust-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsl(var(--primary-foreground) / 0.5);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: hsl(var(--primary-foreground) / 0.5);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Section Common Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    max-width: 64rem;
    margin: 0 auto;
}

/* Pain Points Section */
.pain-points-section {
    background: var(--gradient-subtle);
}

.pain-points-grid {
    display: grid;
    gap: 2rem;
    max-width: 84rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pain-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pain-points-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pain-point-card {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid hsl(var(--border) / 0.5);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pain-point-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px) scale(1.02);
}

.pain-point-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pain-point-icon {
    width: 4rem;
    height: 4rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.pain-point-card:hover .pain-point-icon {
    background: hsl(var(--primary) / 0.2);
}

.pain-point-icon i {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.pain-point-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.pain-point-card:hover .pain-point-title {
    color: hsl(var(--primary));
}

.pain-point-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.pain-points-cta {
    text-align: center;
    margin-top: 4rem;
}

.pain-points-highlight {
    font-size: 1.125rem;
    color: hsl(var(--primary));
    font-weight: 600;
    background: hsl(var(--primary) / 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    display: inline-block;
}

/* Services Section */
.services-section {
    background: hsl(var(--background));
}

.services-grid {
    display: grid;
    gap: 2rem;
    max-width: 84rem;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid hsl(var(--border) / 0.5);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px) scale(1.02);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.05;
}

.service-content {
    position: relative;
}

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

.service-icon {
    padding: 0.75rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 0.5rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: hsl(var(--primary) / 0.2);
}

.service-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-title {
    color: hsl(var(--primary));
}

.service-problem {
    font-size: 0.875rem;
    color: hsl(var(--destructive));
    font-weight: 500;
    background: hsl(var(--destructive) / 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.service-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

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

/* Testimonials Section */
.testimonials-section {
    background: var(--gradient-subtle);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid hsl(var(--border) / 0.5);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px) scale(1.02);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.2;
}

.quote-icon i {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary));
}

.testimonial-quote {
    font-size: 1.125rem;
    color: hsl(var(--foreground));
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    border-top: 1px solid hsl(var(--border) / 0.3);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
    font-weight: 700;
    font-size: 1.125rem;
}

.author-name {
    font-weight: 600;
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.testimonial-card:hover .author-name {
    color: hsl(var(--primary));
}

.author-role {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.author-company {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
}

.testimonials-cta-text {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.testimonials-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-badge {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

/* Technology Section */
.technology-section {
    background: hsl(var(--background));
    position: relative;
    overflow: hidden;
}

.tech-bg-1,
.tech-bg-2 {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.05);
    border-radius: 50%;
    filter: blur(64px);
}

.tech-bg-1 {
    top: 0;
    left: 25%;
}

.tech-bg-2 {
    bottom: 0;
    right: 25%;
}

.technology-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .technology-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-card {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid hsl(var(--border) / 0.5);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tech-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px) scale(1.02);
}

.tech-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-card:hover .tech-overlay {
    opacity: 0.1;
}

.tech-content {
    position: relative;
}

.tech-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.tech-icon {
    width: 5rem;
    height: 5rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-smooth);
}

.tech-card:hover .tech-icon {
    background: hsl(var(--primary) / 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}

.tech-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: hsl(var(--primary));
}

.tech-emoji {
    font-size: 2.5rem;
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    animation: float 4s ease-in-out infinite;
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.tech-card:hover .tech-title {
    color: hsl(var(--primary));
}

.tech-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-size: 1.125rem;
}

.tech-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tech-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: hsl(var(--primary));
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.tech-card:hover .tech-dot:nth-child(1) {
    opacity: 1;
}

.tech-card:hover .tech-dot:nth-child(2) {
    opacity: 0.75;
}

.tech-card:hover .tech-dot:nth-child(3) {
    opacity: 0.5;
}

.technology-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: hsl(var(--primary) / 0.05);
    border-radius: calc(var(--radius) * 2);
    border: 1px solid hsl(var(--primary) / 0.2);
}

.tech-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.tech-cta-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

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

.tech-cta-badge {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: hsl(var(--primary) / 0.95);
}

.contact-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, 
        hsl(var(--primary) / 0.9), 
        hsl(var(--primary) / 0.8), 
        hsl(var(--primary-dark) / 0.9)
    );
}

.contact-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-gradient-text {
    background: linear-gradient(to right, 
        hsl(var(--primary-light)), 
        hsl(var(--primary-foreground))
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.contact-description {
    font-size: 1.25rem;
    color: hsl(var(--primary-foreground) / 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-benefits {
    margin-bottom: 2rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    color: hsl(var(--primary-foreground) / 0.9);
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(0 0% 100% / 1);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.contact-benefit span {
    font-weight: 500;
}

.contact-btn {
    margin-bottom: 0;
}

.contact-form-wrapper {
    /* No additional styles needed */
}

.contact-form-container {
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-2xl);
    border: 1px solid hsl(var(--primary-foreground) / 0.2);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--input));
    border-radius: 0.5rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-family: 'Manrope', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-textarea {
    resize: none;
    font-family: inherit;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-privacy {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: hsl(var(--foreground));
    color: hsl(var(--background));
    padding: 3rem 0;
}

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

.footer-info {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: hsl(var(--background) / 0.8);
    font-size: 1.125rem;
}

.footer-copyright {
    border-top: 1px solid hsl(var(--background) / 0.2);
    padding-top: 2rem;
}

.copyright-text {
    color: hsl(var(--background) / 0.6);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    width: 3rem;
    height: 3rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: hsl(var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.scroll-to-top i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 100;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    max-width: 20rem;
    transition: var(--transition-smooth);
    transform: translateX(100%);
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--success));
    flex-shrink: 0;
}

.toast-title {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 5px hsl(var(--primary) / 0.3);
    }
    50% {
        box-shadow: 0 0 20px hsl(var(--primary) / 0.6);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out forwards;
}

.animate-zoom-in {
    animation: zoom-in 0.6s ease-out forwards;
}

/* Initially hide animated elements */
.animate-fade-in,
.animate-slide-up,
.animate-zoom-in {
    opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--primary));
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary-dark));
}


/* Logo Image */
img.logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}


/* Team Section */
/* .team-section {
  background: hsl(var(--background));
}
.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 84rem;
  margin: 0 auto;
}
.team-card {
  background: hsl(var(--card));
  padding-bottom: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-smooth);
}
.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.team-photo {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  filter: grayscale(100%);
  transition: filter 0.4s ease-in-out;
}
.team-card:hover .team-photo {
  filter: grayscale(0%);
}
.team-name {
  font-size: 1.25rem;
  font-weight: 700;
}
.team-role {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}
.team-link i {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
} */

/* Case Studies Full-Width Panels */
.case-study.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.section-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
}

/* Case Studies */
.case-studies-stack {
  position: relative;
  /* padding: 2rem; */
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.case-card {
  position: sticky;
  top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 1.5rem;
  padding: 2.5rem;
  min-height: 70vh;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  overflow: hidden;
  gap: 2rem;
}

.case-content {
  flex: 1;
}

.case-content h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.case-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #111827;
}

.case-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 0.8rem;
}

.case-content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #1f2937;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
  margin-top: 1rem;
  color: #111827;
}

blockquote span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #2563eb;
}

/* Right image */
.case-image {
  flex: 0 0 220px;
}
.case-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Light gradient backgrounds */
.card-1 { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }
.card-2 { background: linear-gradient(135deg, #fff7ed, #fef3c7); }
.card-3 { background: linear-gradient(135deg, #f8fafc, #f8fafc); }

/* Responsive */
@media (max-width: 768px) {
  .case-card {
    flex-direction: column;
    /* text-align: center; */
    padding: 2rem;
  }
  .case-image {
    margin-top: 1.5rem;
  }
}