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

:root {
    /* Minimal Color Palette with #1A3F6D */
    --primary: #1A3F6D;
    --primary-dark: #152f52;
    --primary-light: #50504E;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #999999;
    --background: #FFFFFF;
    --background-alt: #FAFAFA;
    --border: #E5E5E5;
    --border-light: #F0F0F0;
    
    /* Typography */
    --font-primary: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Add padding to account for fixed header */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1325px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    gap: var(--space-2);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--background-alt);
    border-color: var(--text-secondary);
}

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

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

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: var(--space-1) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1325px;
    margin: 0 auto;
    padding: 0 var(--space-3);
    position: relative;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: var(--text-2xl);
    transition: var(--transition);
    letter-spacing: 1px;
}

.nav-logo a:hover {
    color: var(--text-primary);
    transform: scale(1.05);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-4);
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
}

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

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

.nav-call {
    display: flex;
    align-items: center;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--primary);
    color: var(--background);
    text-decoration: none;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(26, 63, 109, 0.3);
}

.call-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 63, 109, 0.4);
}

.call-btn i {
    font-size: var(--text-sm);
}

.call-btn span {
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1000;
    position: relative;
}

.bar {
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

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

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--space-6);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    color: var(--background);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--background);
    margin-bottom: var(--space-8);
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.hero-buttons .btn-primary {
    background: rgba(26, 63, 109, 0.2);
    border-color: rgba(26, 63, 109, 0.3);
    color: #ffffff;
}

.hero-buttons .btn-primary:hover {
    background: rgba(26, 63, 109, 0.3);
    border-color: rgba(26, 63, 109, 0.4);
    color: #ffffff;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Section Styles */
section {
    margin-bottom: 20px;
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.section-title {
    color: var(--text-primary);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 1325px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.intro-image-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.intro-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    background: transparent;
}

.intro-image:hover {
    transform: translateY(-5px);
}

.intro-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.intro-overlay {
    display: none;
}

.intro-image:hover .intro-overlay {
    display: none;
}

.overlay-content {
    text-align: center;
    color: var(--background);
}

.overlay-content i {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-3);
    display: block;
}

.overlay-content span {
    font-size: var(--text-lg);
    font-weight: 600;
    display: block;
}

.intro-text-content {
    padding: var(--space-3);
}

.intro-text-content .section-title {
    color: var(--text-primary);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

.intro-text {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2);
    background-color: var(--background);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: var(--background-alt);
    border-color: var(--primary);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary);
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--text-sm);
}

.intro-cta {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.intro-cta .btn {
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

/* Services Section */
.services-preview {
    padding: 60px 0;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

/* Industries Section */
.industries-section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 60px 0;
    margin-bottom: 20px;
}

.portfolio-preview .portfolio-filters {
    background-color: var(--background);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--space-8);
}

.portfolio-preview .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.portfolio-preview .filter-btn {
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--border);
    background-color: var(--background);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.portfolio-preview .filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.portfolio-preview .filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--background);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.portfolio-preview .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
    max-width: 1325px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Mobile Responsive for Intro Section */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
        margin-bottom: 15px;
    }
    
    .intro-section,
    .services-preview,
    .industries-section,
    .portfolio-preview,
    .cta-section,
    .page-hero,
    .story-section,
    .mission-section,
    .values-section,
    .team-section,
    .services-main,
    .process-section,
    .addons-section,
    .contact,
    .faq-section,
    .crm-overview,
    .crm-features,
    .pricing-section,
    .demo-section,
    .error-section {
        padding: 40px 0;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    gap: var(--space-4);
        padding: 0 var(--space-4);
    }
    
    .intro-text-content {
        padding: var(--space-2);
        text-align: center;
    }
    
    .intro-text-content .section-title {
        font-size: var(--text-3xl);
    }
    
    .intro-text {
        font-size: var(--text-base);
    }
    
    .intro-features {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    
    .feature-item {
        padding: var(--space-2);
    }
    
    .feature-item span {
        font-size: var(--text-xs);
    }
    
    .intro-cta {
        flex-direction: column;
    }
    
    .intro-cta .btn {
        width: 100%;
    }
    
    .intro-image:hover {
        transform: none;
    }
    
    .intro-overlay {
        opacity: 0.8;
    }
    
    .services-grid,
    .industries-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    gap: var(--space-4);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }
}

/* Services Section */
.services-preview {
    background-color: var(--background-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background-color: var(--background);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-6) auto var(--space-4);
    font-size: var(--text-xl);
    color: var(--background);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    text-align: center;
    padding: 0 var(--space-6);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    padding: 0 var(--space-6) var(--space-6);
}

/* Industries Section */
.industries-section {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="industry-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23industry-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.industries-section .container {
    position: relative;
    z-index: 1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-6);
}

.industry-card {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    padding: var(--space-3);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.15);
}

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

.industry-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-2);
    font-size: var(--text-xl);
    color: var(--background);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.industry-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-1);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--text-sm);
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Subtle entrance animation for industry cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-card:nth-child(4) { animation-delay: 0.4s; }
.industry-card:nth-child(5) { animation-delay: 0.5s; }
.industry-card:nth-child(6) { animation-delay: 0.6s; }

/* Portfolio Section */
.portfolio-section {
    padding: 60px 0;
    margin-bottom: 20px;
}

/* Portfolio Filters */
.portfolio-filters {
    background-color: var(--background);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--space-8);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.filter-btn {
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--border);
    background-color: var(--background);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--background);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Portfolio Grid - 3 per row */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.portfolio-item {
    background-color: var(--background);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.portfolio-item:hover {
    /* Hover effects removed */
}

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

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-img {
    /* Image scale hover effect removed */
}

.portfolio-overlay {
    display: none;
}

.overlay-content {
    display: none;
}

.overlay-content i {
    display: none;
}

.overlay-content span {
    display: none;
}

.portfolio-content {
    padding: var(--space-6);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-4);
}

.portfolio-header h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
    flex: 1;
}

.category-badge {
    background-color: var(--primary-light);
    color: #ffffff;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 500;
    white-space: nowrap;
    margin-left: var(--space-3);
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.portfolio-meta {
    margin-bottom: var(--space-4);
}

.client {
    font-size: var(--text-sm);
    color: var(--text-light);
    font-weight: 500;
}

/* Portfolio Modal */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 15px;
}

.portfolio-modal .modal-content {
    background-color: var(--background);
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}

.portfolio-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
    background-color: var(--background);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    flex-shrink: 0;
}

.portfolio-modal .modal-header h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
}

.portfolio-modal .modal-close {
    background: none;
    border: none;
    font-size: var(--text-2xl);
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.portfolio-modal .modal-close:hover {
    background-color: var(--background-alt);
    color: var(--text-primary);
}

.portfolio-modal .modal-body {
    padding: 15px;
    display: flex;
    flex: 1;
    overflow: hidden;
}

.portfolio-modal .modal-360-tour {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--background-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

.portfolio-modal .modal-360-tour iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 15px;
}

.modal-content {
    background-color: var(--background);
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
    background-color: var(--background);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: var(--text-2xl);
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--background-alt);
    color: var(--text-primary);
}

.modal-body {
    padding: 15px;
    display: flex;
    flex: 1;
    overflow: hidden;
}

.modal-360-tour {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--background-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

.modal-360-tour iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

/* No Projects Message */
.no-projects {
    text-align: center;
    padding: var(--space-16) 0;
}

.no-projects h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-secondary);
}

.no-projects p {
    color: var(--text-light);
    font-size: var(--text-base);
}

/* Mobile Responsive for Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    gap: var(--space-4);
    }
    
    .filter-buttons {
        gap: var(--space-2);
    }
    
    .filter-btn {
    padding: var(--space-2) var(--space-4);
        font-size: var(--text-xs);
    }
    
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }
    
    .category-badge {
        margin-left: 0;
    }
    
    .portfolio-modal .modal-content,
    .modal-content {
        margin: 0;
        height: 100%;
    }
    
    .portfolio-modal .modal-header,
    .modal-header {
        padding: 15px;
    }
    
    .portfolio-modal .modal-body,
    .modal-body {
        padding: 15px;
        flex-direction: column;
    }
    
    .portfolio-modal .modal-360-tour,
    .modal-360-tour {
        min-height: 300px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    height: 500px;
    margin-bottom: 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    }
    
    .cta-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
        text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.cta-text h2 {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--background);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text p {
    font-size: var(--text-xl);
    line-height: 1.6;
    color: var(--background);
    margin-bottom: var(--space-6);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-buttons .btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--background);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 193, 7, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--background);
    padding: var(--space-16) 0 var(--space-8);
    }
    
    .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.footer-logo img {
    height: 70px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-weight: 600;
    font-size: var(--text-xl);
    color: var(--background);
}

.footer-section h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--background);
}

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

.footer-section ul li {
    margin-bottom: var(--space-3);
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: var(--text-sm);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-section p {
    color: #ffffff;
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.contact-info p {
    color: #ffffff;
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.contact-info p i {
    color: var(--primary);
    width: 16px;
}
    
    .social-links {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.social-links a {
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(26, 63, 109, 0.3);
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 63, 109, 0.4);
}

.social-links a i {
    font-size: 18px;
    display: block;
}

.social-links a .threads-icon {
    font-size: 18px;
    font-weight: 600;
    display: block;
    font-family: Arial, sans-serif;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--text-secondary);
    color: #ffffff;
    font-size: var(--text-sm);
}

/* Page Hero */
.page-hero {
    background-color: var(--primary);
    padding: 60px 0;
    text-align: center;
    color: var(--background);
}

.page-title {
    font-size: var(--text-4xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--background);
}

.page-subtitle {
    font-size: var(--text-lg);
    color: var(--background);
    opacity: 0.9;
}

/* Story Section */
.story-section {
    padding: 60px 0;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background-color: var(--background-alt);
}

/* Values Section */
.values-section {
    padding: 60px 0;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: var(--background-alt);
}

/* Services Main */
.services-main {
    padding: 60px 0;
}

/* Process Section - New Timeline Design */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8f9fa' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

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

/* Timeline Layout */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    z-index: 0;
}

/* Process Steps */
.process-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }

/* Step Connector */
.step-connector {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    flex-shrink: 0;
}

.connector-line {
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    transition: all 0.4s ease;
    z-index: 2;
}

.process-step:nth-child(odd) .connector-line {
    right: 0;
    transform: translateX(100%);
}

.process-step:nth-child(even) .connector-line {
    left: 0;
    transform: translateX(-100%);
}

.connector-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid var(--background);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
    z-index: 4;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 193, 7, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(255, 193, 7, 0.8); }
}

/* Step Content */
.step-content {
    flex: 1;
    max-width: 400px;
    background: linear-gradient(135deg, var(--background) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 30px 45px 30px 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-xl);
}

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

.step-content:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.2);
    border-color: var(--primary);
}

.step-content:hover::before {
    opacity: 1;
}

/* Step Number */
.step-number {
    position: absolute;
    top: -15px;
    right: -20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--background);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.4s ease;
    z-index: 5;
}

.step-content:hover .step-number {
    transform: scale(1.2) rotate(8deg);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
}

/* Step Icon */
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--background);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    transition: all 0.4s ease;
    animation: iconFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 11;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(5px) rotate(-2deg); }
}

.step-content:hover .step-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.5);
}

/* Step Title */
.step-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 11;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.step-content:hover h3::after {
    width: 60px;
}

/* Step Description */
.step-content p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 11;
}

/* Progress Bar */
.step-progress {
    margin-top: 20px;
    position: relative;
    z-index: 11;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 3px;
    width: 0%;
    animation: progressFill 2s ease-out forwards;
    animation-delay: 1s;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

@keyframes progressFill {
    to { width: 100%; }
}

/* Hover Effects */
.process-step:hover .connector-line {
    width: 80px;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
}

.process-step:hover .connector-dot {
    transform: scale(1.3);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.8);
    animation: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-timeline {
        max-width: 100%;
        padding: 0 15px;
        margin-top: 40px;
    }
    
    .timeline-line {
        left: 30px;
        width: 3px;
        z-index: 0;
    }
    
    .process-step {
        flex-direction: row !important;
        margin-bottom: 40px;
        align-items: flex-start;
    }
    
    .step-connector {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        z-index: 3;
    }
    
    .connector-line {
        width: 30px;
        height: 3px;
        right: 0;
        transform: translateX(100%);
        z-index: 2;
    }
    
    .connector-dot {
        width: 15px;
        height: 15px;
        border-width: 3px;
        z-index: 4;
    }
    
    .step-content {
        max-width: calc(100% - 80px);
        padding: 20px 35px 20px 20px;
        margin-left: 20px;
        overflow: visible;
        z-index: 10;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: var(--text-sm);
        top: -12px;
        right: -15px;
        z-index: 5;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
        z-index: 11;
    }
    
    .step-content h3 {
        font-size: var(--text-lg);
        margin-bottom: 10px;
        z-index: 11;
    }
    
    .step-content p {
        font-size: var(--text-sm);
        margin-bottom: 15px;
        z-index: 11;
    }
    
    .progress-bar {
        height: 4px;
    }
}

@media (max-width: 480px) {
.process-section {
    padding: 60px 0;
    }
    
    .process-timeline {
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .timeline-line {
        left: 25px;
        width: 2px;
    }
    
    .step-connector {
        width: 50px;
        height: 50px;
    }
    
    .connector-line {
        width: 25px;
        height: 2px;
    }
    
    .connector-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .step-content {
        padding: 15px 28px 15px 15px;
        margin-left: 15px;
        max-width: calc(100% - 65px);
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: var(--text-xs);
        top: -10px;
        right: -12px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .step-content h3 {
        font-size: var(--text-base);
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: var(--text-xs);
        margin-bottom: 12px;
    }
    
    .progress-bar {
        height: 3px;
    }
}

/* Addons Section */
.addons-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    position: relative;
    overflow: hidden;
}

.addons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8f9fa' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.addons-section .container {
    position: relative;
    z-index: 1;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.addon-card {
    background: linear-gradient(135deg, var(--background) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.addon-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.15);
}

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

.addon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--text-2xl);
    color: var(--background);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    position: relative;
    z-index: 1;
}

.addon-card:hover .addon-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

.addon-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.addon-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.addon-card p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Enhanced Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
    align-items: stretch;
}

.service-card {
    background: rgba(26, 63, 109, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 63, 109, 0.2);
    transition: all 0.3s ease;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    background: rgba(26, 63, 109, 0.15);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.service-card:hover .service-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--text-xl);
    color: var(--background);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 63, 109, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(26, 63, 109, 0.4);
}

.service-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
    text-align: center;
    position: relative;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4);
    padding-left: var(--space-8);
    background: rgba(26, 63, 109, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.service-features li::before {
    content: "✓";
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 600;
}

.service-features li:hover {
    background: rgba(26, 63, 109, 0.15);
    transform: translateX(5px);
}



/* Enhanced Services Main Section */
.services-main {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    position: relative;
    overflow: hidden;
}

.services-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8f9fa' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.services-main .container {
    position: relative;
    z-index: 1;
}

/* Enhanced CTA Section for Services */
.cta-section {
    position: relative;
    padding: 80px 0;
    margin-bottom: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.cta-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.cta-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.cta-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

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

.cta-text {
    color: var(--background);
    text-align: center;
    width: 100%;
}

.cta-text h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--background);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--background);
    margin-bottom: var(--space-6);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-buttons .btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--background);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Animation for Process Steps */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: fadeInUp 0.6s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }

/* Animation for Addon Cards */
.addon-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.addon-card:nth-child(1) { animation-delay: 0.1s; }
.addon-card:nth-child(2) { animation-delay: 0.2s; }
.addon-card:nth-child(3) { animation-delay: 0.3s; }
.addon-card:nth-child(4) { animation-delay: 0.4s; }

/* Animation for Service Cards */
.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: var(--background-alt);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

/* CRM Overview */
.crm-overview {
    padding: 60px 0;
}

/* CRM Features */
.crm-features {
    padding: 60px 0;
    background-color: var(--background-alt);
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
}

/* Demo Section */
.demo-section {
    padding: 60px 0;
    background-color: var(--background-alt);
}

/* Error Section */
.error-section {
    padding: 60px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive for Intro Section */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
        margin-bottom: 15px;
    }
    
    .intro-section,
    .services-preview,
    .industries-section,
    .portfolio-preview,
    .cta-section,
    .page-hero,
    .story-section,
    .mission-section,
    .values-section,
    .team-section,
    .services-main,
    .process-section,
    .addons-section,
    .contact,
    .faq-section,
    .crm-overview,
    .crm-features,
    .pricing-section,
    .demo-section,
    .error-section {
        padding: 40px 0;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }
    
    .intro-text-content {
        padding: var(--space-2);
        text-align: center;
    }
    
    .intro-text-content .section-title {
        font-size: var(--text-3xl);
    }
    
    .intro-text {
        font-size: var(--text-base);
    }
    
    .intro-features {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    
    .feature-item {
        padding: var(--space-2);
    }
    
    .feature-item span {
        font-size: var(--text-xs);
    }
    
    .intro-cta {
        flex-direction: column;
    }
    
    .intro-cta .btn {
        width: 100%;
    }
    
    .intro-image:hover {
        transform: none;
    }
    
    .intro-overlay {
        opacity: 0.8;
    }
    
    .services-grid,
    .industries-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

/* Focus States */
.btn:focus,
.nav-link:focus,
.social-links a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        padding: 2rem 0;
    }
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0 0 0;
}

.service-features li {
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    position: relative;
    padding-left: var(--space-4);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Addon Cards */
.addon-card {
    background-color: var(--background);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.addon-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.addon-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--text-2xl);
    color: var(--background);
    transition: var(--transition);
}

.addon-card:hover .addon-icon {
    transform: scale(1.1);
}

.addon-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.addon-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--text-sm);
}

/* Story Section */
.story-section {
    background-color: var(--background);
    padding: var(--space-16) 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.story-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.story-text {
    padding: var(--space-6);
}

.story-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.stat-item {
    text-align: center;
    padding: var(--space-4);
    background-color: var(--background-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--background) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8f9fa' fill-opacity='0.4'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-top: var(--space-8);
    position: relative;
    z-index: 1;
}

.mission-card {
    background: linear-gradient(135deg, var(--background) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.15);
}

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

.mission-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--text-2xl);
    color: var(--background);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    position: relative;
    z-index: 1;
}

.mission-card:hover .mission-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

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

.mission-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    position: relative;
}

.mission-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.mission-card p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.mission-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-3);
    background: rgba(26, 63, 109, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.mission-feature:hover {
    background: rgba(26, 63, 109, 0.15);
    transform: translateX(5px);
}

.mission-feature i {
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 600;
}

.mission-feature span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
}

/* Values Section */
.values-section {
    background-color: var(--background);
    padding: var(--space-16) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.value-card {
    background-color: var(--background);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--text-2xl);
    color: var(--background);
    transition: var(--transition);
}

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

.value-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--text-sm);
}

/* Team Section */
.team-section {
    background-color: var(--background-alt);
    padding: var(--space-16) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.team-member {
    background-color: var(--background);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.team-member:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.team-member:hover .member-img {
    transform: scale(1.05);
}

.member-info {
    padding: var(--space-6);
    text-align: center;
}

.member-info h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.member-role {
    color: var(--primary);
    font-weight: 500;
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--text-sm);
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .story-img {
        height: 300px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 200px;
    }
}

/* Contact Page Improvements */
.contact {
    background-color: var(--background-alt);
    padding: var(--space-16) 0;
}

/* Make "Get In Touch" text darker */
.contact-info .section-title {
    color: #333333 !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: var(--space-6);
}

.contact-intro {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: #888888;
    margin-bottom: var(--space-8);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background-color: var(--background-alt);
    transition: var(--transition);
    margin-bottom: var(--space-4);
}

.contact-item:hover {
    background-color: var(--background);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--background);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: var(--text-lg);
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h3 {
    margin: 0 0 var(--space-2) 0;
    color: var(--text-primary);
    font-size: var(--text-lg);
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
}

.social-contact {
    margin-top: var(--space-8);
}

.social-contact h3 {
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    font-size: var(--text-xl);
    font-weight: 600;
}

    .social-contact .social-links {
        display: flex;
        gap: var(--space-3);
        margin-top: var(--space-4);
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

.social-contact .social-links a {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.social-contact .social-links a::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;
}

.social-contact .social-links a:hover::before {
    left: 100%;
}

.social-contact .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.social-contact .social-links a i {
    font-size: 20px;
    display: block;
    z-index: 1;
    position: relative;
}

/* Form Improvements */
.contact-form {
    background-color: var(--background-alt);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: var(--transition);
    background-color: var(--background);
}

.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(26, 63, 109, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* FAQ Improvements */
.faq-section {
    padding: var(--space-12) 0;
    background-color: var(--background-alt);
}

.faq-grid {
    display: grid;
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: var(--text-lg);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    font-size: var(--text-lg);
    transition: var(--transition);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    padding: 0 var(--space-6) var(--space-6);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: var(--space-3);
        gap: var(--space-3);
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: var(--text-base);
    }
    
    .social-contact .social-links {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .faq-question {
        padding: var(--space-4);
    }
    
    .faq-question h3 {
        font-size: var(--text-base);
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
    }
}

/* CRM Overview Section */
.crm-overview {
    background-color: var(--background);
    padding: var(--space-16) 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.overview-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.overview-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.overview-text {
    padding: var(--space-6);
}

.overview-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.feature-item i {
    color: var(--primary);
    font-size: var(--text-sm);
}

/* CRM Features Section */
.crm-features {
    background-color: var(--background-alt);
    padding: var(--space-16) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    background-color: var(--background);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    font-size: var(--text-2xl);
    color: var(--background);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    position: relative;
    padding-left: var(--space-4);
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--background);
    padding: var(--space-16) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--background);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--background);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 600;
}

.pricing-header {
    margin-bottom: var(--space-6);
}

.pricing-header h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
}

.currency {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.amount {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary);
}

.period {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8) 0;
}

.pricing-features li {
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.pricing-features li i {
    color: var(--primary);
    font-size: var(--text-xs);
}

/* Demo Section */
.demo-section {
    background-color: var(--background-alt);
    padding: var(--space-16) 0;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    max-width: 1000px;
    margin: 0 auto;
}

.demo-text {
    padding: var(--space-6);
}

.demo-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.benefit-item i {
    color: var(--primary);
    font-size: var(--text-lg);
    width: 20px;
    text-align: center;
}

.demo-form {
    background-color: var(--background);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.demo-form h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--text-primary);
    text-align: center;
}

/* Mobile Responsive for CRM Page */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .overview-img {
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .demo-text {
        text-align: center;
    }
}

/* 404 Error Page */
.error-section {
    background-color: var(--background);
    padding: var(--space-16) 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.error-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.error-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.error-text {
    padding: var(--space-6);
    text-align: center;
}

.error-title {
    font-size: var(--text-6xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-4);
    line-height: 1;
}

.error-subtitle {
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.error-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.error-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.error-links {
    margin-top: var(--space-8);
}

.error-links h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.quick-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background-color: var(--background-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--text-sm);
}

.quick-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.quick-link i {
    font-size: var(--text-base);
    width: 16px;
    text-align: center;
}

/* Mobile Responsive for 404 Page */
@media (max-width: 768px) {
    .error-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .error-img {
        height: 300px;
    }
    
    .error-title {
        font-size: var(--text-5xl);
    }
    
    .error-subtitle {
        font-size: var(--text-2xl);
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
}

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

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

/* Global Improvements */
section {
    margin-bottom: 20px;
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.section-title {
    color: var(--text-primary);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Card Hover Effects */
.service-card:hover,
.industry-card:hover,
.portfolio-item:hover,
.mission-card:hover,
.value-card:hover,
.team-member:hover,
.addon-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Improved Button Styles */
.btn {
    position: relative;
    overflow: hidden;
}

.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;
}

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

/* Enhanced Image Hover Effects */
.intro-img,
.service-img,
.industry-img,
.portfolio-img,
.cta-img,
.story-img,
.member-img,
.overview-img,
.error-img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.intro-image:hover .intro-img,
.service-image:hover .service-img,
.industry-image:hover .industry-img,
.portfolio-image:hover .portfolio-img,
.cta-image:hover .cta-img,
.story-image:hover .story-img,
.member-image:hover .member-img,
.overview-image:hover .overview-img,
.error-image:hover .error-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Improved Icon Animations */
.service-icon,
.industry-icon,
.mission-icon,
.value-icon,
.addon-icon,
.feature-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.industry-card:hover .industry-icon,
.mission-card:hover .mission-icon,
.value-card:hover .value-icon,
.addon-card:hover .addon-icon,
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary-dark);
}

/* Enhanced Form Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.15);
}

/* Improved Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled::before {
    display: none;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .section-subtitle {
        font-size: var(--text-base);
    }
    
    section {
        padding: var(--space-8) 0;
        margin-bottom: 30px;
    }
    
    .service-card:hover,
    .industry-card:hover,
    .portfolio-item:hover,
    .mission-card:hover,
    .value-card:hover,
    .team-member:hover,
    .addon-card:hover,
    .feature-card:hover {
        transform: translateY(-2px);
    }
    
    .intro-img,
    .service-img,
    .industry-img,
    .portfolio-img,
    .cta-img,
    .story-img,
    .member-img,
    .overview-img,
    .error-img {
        transform: none;
    }
    
    .intro-image:hover .intro-img,
    .service-image:hover .service-img,
    .industry-image:hover .industry-img,
    .portfolio-image:hover .portfolio-img,
    .cta-image:hover .cta-img,
    .story-image:hover .story-img,
    .member-image:hover .member-img,
    .overview-image:hover .overview-img,
    .error-image:hover .error-img {
        transform: none;
        filter: none;
    }
    
    .portfolio-preview .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .portfolio-preview .filter-buttons {
        gap: var(--space-2);
    }
    
    .portfolio-preview .filter-btn {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-xs);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateX(0);
    transition: transform 0.3s ease;
    border-left: 4px solid;
}

.toast-success {
    border-left-color: #10b981;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #f3f4f6;
    color: #6b7280;
}

.toast-close i {
    font-size: 16px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .contact-form,
    .faq-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .hero {
        height: auto;
        min-height: 200px;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    section {
        page-break-inside: avoid;
        margin-bottom: 20pt;
    }
}

/* Mobile Responsive for CTA Section */
@media (max-width: 768px) {
    .cta-section {
        height: 400px;
    }
    
    .cta-content {
        padding: 0 var(--space-4);
    }
    
    .cta-text h2 {
        font-size: var(--text-3xl);
    }
    
    .cta-text p {
        font-size: var(--text-lg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Responsive for Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }
}

/* Mobile Responsive for Header */
@media (max-width: 768px) {
    .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
    }
    
    .navbar {
        padding: var(--space-3) 0;
    }
    
    .nav-container {
        position: relative;
        padding: 0 var(--space-4);
    }
    
    .nav-logo a {
        font-size: var(--text-xl);
    }
    
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: -100% !important;
        width: 280px !important;
        height: auto !important;
        background: #ffffff !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        display: block !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        transform: none !important;
        border-radius: 0 0 12px 0 !important;
        padding: 20px 0 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-list {
        flex-direction: column !important;
        gap: 0 !important;
        text-align: left !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav-list li {
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        font-size: 16px;
        font-weight: 500;
        padding: 12px 24px;
        border-radius: 0;
        transition: background-color 0.2s ease;
        position: relative;
        color: #374151;
        text-decoration: none;
        display: block;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        background: #f3f4f6;
    }
    
    .nav-link.active {
        background: var(--primary);
        color: #ffffff;
    }
    
    .nav-call {
        display: none;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        z-index: 1000;
        position: relative;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .bar {
        width: 24px;
        height: 2px;
        background: #374151;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
        transform-origin: center;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Overlay for mobile menu */
    .nav-menu::before {
        display: none;
    }
    
    /* Mobile Hero Section - Smaller Fonts */
    .hero-title {
        font-size: var(--text-3xl) !important;
        margin-bottom: var(--space-4) !important;
    }
    
    .hero-subtitle {
        font-size: var(--text-base) !important;
        margin-bottom: var(--space-6) !important;
    }
    
    .hero-buttons {
        gap: var(--space-3) !important;
    }
    
    .hero-buttons .btn {
        padding: var(--space-2) var(--space-4) !important;
        font-size: var(--text-sm) !important;
    }
    
    /* Mobile Footer - Services and Industries in 2 columns */
    .footer .footer-content {
        display: block !important;
    }
    
    .footer .footer-section {
        display: block !important;
        width: 100% !important;
        margin-bottom: var(--space-6) !important;
    }
    
    .footer .footer-section:nth-child(2),
    .footer .footer-section:nth-child(3) {
        display: inline-block !important;
        width: 48% !important;
        vertical-align: top !important;
        margin: 0 1% var(--space-6) 1% !important;
    }
    

}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: var(--space-4);
    }
    
    .nav-link {
        font-size: var(--text-base);
        padding: var(--space-2) var(--space-3);
    }
    
    .nav-call {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
}

/* Desktop - Hide toggle button */
@media (min-width: 1025px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        transform: none;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        box-shadow: none;
    }
    
    .nav-list {
        flex-direction: row;
        gap: var(--space-4);
        text-align: left;
        width: auto;
        padding: 0;
    }
    
    .nav-link {
        font-size: var(--text-base);
        padding: var(--space-2) var(--space-3);
        border-radius: var(--radius-md);
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(26, 63, 109, 0.1);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(26, 63, 109, 0.2);
    }
    
    .nav-call {
        display: flex;
    }
}

/* Mobile Responsive for Mission Section */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .mission-card {
        padding: var(--space-6);
    }
    
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: var(--text-xl);
    }
    
    .mission-card h3 {
        font-size: var(--text-xl);
    }
    
    .mission-card p {
        font-size: var(--text-base);
    }
    
    .mission-features {
        gap: var(--space-2);
    }
    
    .mission-feature {
        padding: var(--space-2);
    }
    
    .mission-feature span {
        font-size: var(--text-xs);
    }
}

/* How We Do Section - Single Embed */
.how-we-do-section {
    padding: var(--space-8) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.how-we-do-section .section-header {
    text-align: center;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.how-we-do-section .section-title {
    font-size: var(--text-3xl);
    color: var(--primary);
    margin-bottom: var(--space-3);
    font-weight: 700;
}

.how-we-do-section .section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.embed-slider {
    position: relative;
    z-index: 1;
    margin-top: var(--space-8);
}

.slider-container {
    position: relative;
    max-width: 1325px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: transparent;
}

.slider-track {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    text-align: center;
    background: transparent;
}

.slide-content h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
}

.embed-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-4);
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-size: var(--text-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--background);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.slider-dots {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2);
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Mobile Responsive for Embed Slider */
@media (max-width: 768px) {
    .slider-track {
        height: 400px;
    }
    
    .slide-content {
        padding: var(--space-4);
    }
    
    .slide-content h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--space-3);
    }
    
    .embed-container {
        height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }
    
    .slider-controls {
        padding: 0 var(--space-2);
    }
    
    .slider-dots {
        bottom: var(--space-3);
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile Responsive for Services Page */
@media (max-width: 768px) {
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        margin-top: var(--space-8);
    }
    
    .service-card {
        margin-bottom: var(--space-6);
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
    }
    
    .service-card h3 {
        font-size: var(--text-xl);
        padding: 0 var(--space-4);
    }
    
    .service-card p {
        padding: 0 var(--space-4) var(--space-4);
        font-size: var(--text-base);
    }
    
    .service-features {
        padding: 0;
        gap: var(--space-2);
    }
    
    .service-features li {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }
    
    /* Process Section Mobile - Updated for Timeline */
    .process-timeline {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .timeline-line {
        left: 30px;
        width: 3px;
    }
    
    .process-step {
        flex-direction: row !important;
        margin-bottom: 40px;
    }
    
    .step-connector {
        width: 60px;
        height: 60px;
    }
    
    .connector-line {
        width: 30px;
        height: 3px;
        right: 0;
        transform: translateX(100%);
    }
    
    .connector-dot {
        width: 15px;
        height: 15px;
        border-width: 3px;
    }
    
    .step-content {
        max-width: calc(100% - 80px);
        padding: 20px;
        margin-left: 20px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: var(--text-base);
        top: -10px;
        right: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .step-content h3 {
        font-size: var(--text-lg);
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: var(--text-sm);
        margin-bottom: 15px;
    }
    
    .progress-bar {
        height: 4px;
    }
    
    /* Addons Section Mobile */
    .addons-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .addon-card {
        padding: var(--space-6);
    }
    
    .addon-icon {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
        margin-bottom: var(--space-4);
    }
    
    .addon-card h3 {
        font-size: var(--text-lg);
    }
    
    .addon-card p {
        font-size: var(--text-sm);
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: var(--text-3xl);
    }
    
    .cta-text p {
        font-size: var(--text-base);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Services Main Section Mobile */
    .services-main {
        padding: 40px 0;
    }
    
    .services-main .section-title {
        font-size: var(--text-3xl);
    }
    
    .services-main .section-subtitle {
        font-size: var(--text-base);
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 40px 0;
    }
    
    .process-section .section-title {
        font-size: var(--text-3xl);
    }
    
    .process-section .section-subtitle {
        font-size: var(--text-base);
    }
    
    /* Addons Section Mobile */
    .addons-section {
        padding: 40px 0;
    }
    
    .addons-section .section-title {
        font-size: var(--text-3xl);
    }
    
    .addons-section .section-subtitle {
        font-size: var(--text-base);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .service-card h3 {
        font-size: var(--text-base);
    }
    
    .step-content h3 {
        font-size: var(--text-base);
    }
    
    .addon-card h3 {
        font-size: var(--text-base);
    }
    
    .cta-text h2 {
        font-size: var(--text-2xl);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
    
    .addon-icon {
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: var(--text-base);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.8);
    color: #ffffff;
    text-decoration: none;
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.9);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
    transition: all 0.1s ease;
}



@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* WhatsApp Hover Content */
.whatsapp-hover-content {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #000000;
    padding: 12px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-float:hover .whatsapp-hover-content {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: online-pulse 2s ease-in-out infinite;
}

@keyframes online-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Mobile Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-hover-content {
        display: none;
    }
    
    .online-dot {
        width: 6px;
        height: 6px;
    }
}

/* CRM Software Page Specific Styles */
.core-features {
    margin: var(--space-6) 0;
}

.core-feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    padding: var(--space-3);
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.feature-number {
    background: var(--primary);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
    margin-right: var(--space-3);
    flex-shrink: 0;
}

.feature-text {
    font-weight: 500;
    color: var(--text-primary);
}

.ideal-for {
    margin-top: 0;
}

.ideal-for h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    text-align: center;
}

.ideal-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.ideal-card {
    background: #ffffff;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ideal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(26, 63, 109, 0.15);
    border-color: #1A3F6D;
}

.ideal-card i {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.ideal-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: #1A3F6D;
}

.ideal-card p {
    font-size: var(--text-sm);
    color: #333333;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    padding: var(--space-12) 0;
}

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

.benefit-item {
    background: var(--background);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-item i {
    font-size: var(--text-3xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.benefit-item h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Branding Section */
.branding-section {
    padding: var(--space-12) 0;
}

.branding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.branding-item {
    background: var(--background);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.branding-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.branding-item i {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.branding-item h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Modules Section */
.modules-section {
    background: var(--background-alt);
    padding: var(--space-12) 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.module-card {
    background: var(--background);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
    color: #ffffff;
}

.module-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    line-height: 1.3;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features li {
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--space-4);
}

.module-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Contact Features */
.contact-features {
    margin-top: var(--space-6);
}

.contact-feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
}

.contact-feature i {
    color: var(--primary);
    margin-right: var(--space-3);
    font-size: var(--text-lg);
}

.contact-feature span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mobile Responsive CRM Page */
@media (max-width: 768px) {
    .core-feature {
        padding: var(--space-2);
        margin-bottom: var(--space-2);
    }
    
    .feature-number {
        width: 25px;
        height: 25px;
        font-size: var(--text-xs);
        margin-right: var(--space-2);
    }
    
    .feature-text {
        font-size: var(--text-sm);
    }
    
    .ideal-cards {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .ideal-card {
        padding: var(--space-4);
    }
    
    .ideal-card h4 {
        font-size: var(--text-base);
    }
    
    .ideal-card p {
        font-size: var(--text-xs);
    }
    
    .benefits-grid,
    .branding-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .benefit-item,
    .branding-item {
        padding: var(--space-4);
    }
    
    .benefit-item h3,
    .branding-item h3 {
        font-size: var(--text-base);
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .module-card {
        padding: var(--space-4);
    }
    
    .module-icon {
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
    
    .module-card h3 {
        font-size: var(--text-base);
    }
    
    .module-features li {
        font-size: var(--text-sm);
        padding-left: var(--space-3);
    }
}

/* Portfolio Showcase Section */
.portfolio-showcase-section {
    padding: var(--space-8) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.portfolio-showcase {
    margin-top: var(--space-6);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.showcase-text h3 {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.showcase-text p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.showcase-features {
    margin-bottom: var(--space-5);
}

.showcase-feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.showcase-feature:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.showcase-feature i {
    color: var(--primary);
    margin-right: var(--space-3);
    font-size: var(--text-lg);
    font-weight: bold;
}

.showcase-feature span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--text-base);
}

.showcase-meta {
    margin-bottom: var(--space-5);
}

.industry-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 500;
}

.showcase-cta {
    margin-bottom: var(--space-4);
}

.showcase-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Real Estate Marketing Showcase Section */
.real-estate-showcase-section {
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.showcase-intro {
    text-align: center;
    margin-bottom: var(--space-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.showcase-tagline {
    background: linear-gradient(135deg, var(--primary) 0%, #2c5aa0 100%);
    color: white;
    padding: var(--space-6);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(26, 63, 109, 0.2);
}

.showcase-tagline h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
    color: white;
}

.website-link {
    color: #ffda03;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-lg);
    transition: all 0.3s ease;
}

.website-link:hover {
    color: white;
    text-decoration: underline;
}

.showcase-category {
    margin-bottom: var(--space-8);
}

.category-title {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-6);
    text-align: center;
    font-weight: 600;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.tour-item {
    background: white;
    border-radius: 12px;
    padding: var(--space-5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tour-item h4 {
    font-size: var(--text-xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
    text-align: center;
    font-weight: 600;
}

.tour-embed {
    margin-bottom: var(--space-4);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tour-embed iframe,
.tour-embed div {
    border-radius: 8px;
}

.btn-small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
}

.showcase-benefits {
    text-align: center;
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.benefits-text {
    font-size: var(--text-lg);
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}
    box-shadow: 0 4px 15px rgba(26, 63, 109, 0.2);
}

.showcase-cta .btn:hover {
    transform: translateY(-2px);
}

/* Plots Management Software Showcase Section */
.plots-showcase-section {
    padding: var(--space-8) 0;
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--background) 100%);
}

.plots-showcase {
    margin-top: var(--space-6);
}

.plots-showcase .showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.plots-showcase .showcase-text h3 {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.plots-showcase .showcase-text p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.plots-showcase .showcase-features {
    margin-bottom: var(--space-5);
}

.plots-showcase .showcase-feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.plots-showcase .showcase-feature:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.plots-showcase .showcase-feature i {
    color: var(--accent);
    margin-right: var(--space-3);
    font-size: var(--text-lg);
    font-weight: bold;
}

.plots-showcase .showcase-feature span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--text-base);
}

.plots-showcase .showcase-cta {
    margin-bottom: var(--space-4);
}

.plots-showcase .showcase-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 63, 109, 0.2);
}

.plots-showcase .showcase-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 63, 109, 0.3);
}

.plots-showcase .showcase-360-tour {
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.plots-showcase .tour-container h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-4);
    text-align: center;
}

.plots-showcase .360-tour-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-4);
    background: var(--background-alt);
    border: 1px solid var(--border-color);
}

.plots-showcase .tour-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

/* Mobile Responsive for Plots Showcase */
@media (max-width: 768px) {
    .plots-showcase .showcase-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .plots-showcase .showcase-cta {
        flex-direction: column;
    }
    
    .plots-showcase .showcase-cta .btn {
        width: 100%;
        text-align: center;
    }
}
    box-shadow: 0 8px 25px rgba(26, 63, 109, 0.3);
}

.showcase-embed {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Mobile Responsive Portfolio Showcase */
@media (max-width: 768px) {
    .portfolio-showcase-section {
        padding: var(--space-6) 0;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .showcase-text h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--space-3);
    }
    
    .showcase-text p {
        font-size: var(--text-base);
        margin-bottom: var(--space-4);
    }
    
    .showcase-feature {
        padding: var(--space-2);
        margin-bottom: var(--space-2);
    }
    
    .showcase-feature i {
        font-size: var(--text-base);
        margin-right: var(--space-2);
    }
    
    .showcase-feature span {
        font-size: var(--text-sm);
    }
    
    .showcase-embed iframe {
        height: 300px;
    }
    
    .showcase-cta .btn {
        width: 100%;
        justify-content: center;
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }
}

/* Mobile Responsive Real Estate Showcase */
@media (max-width: 768px) {
    .real-estate-showcase-section {
        padding: var(--space-6) 0;
    }
    
    .showcase-intro {
        margin-bottom: var(--space-6);
        padding: 0 var(--space-4);
    }
    
    .showcase-description {
        font-size: var(--text-base);
        margin-bottom: var(--space-4);
    }
    
    .showcase-tagline {
        padding: var(--space-4);
    }
    
    .showcase-tagline h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--space-2);
    }
    
    .website-link {
        font-size: var(--text-base);
    }
    
    .category-title {
        font-size: var(--text-xl);
        margin-bottom: var(--space-4);
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        margin-bottom: var(--space-4);
    }
    
    .tour-item {
        padding: var(--space-4);
    }
    
    .tour-item h4 {
        font-size: var(--text-lg);
        margin-bottom: var(--space-3);
    }
    
    .tour-embed {
        margin-bottom: var(--space-3);
    }
    
    .tour-embed iframe,
    .tour-embed div {
        height: 250px !important;
    }
    
    .showcase-benefits {
        margin-top: var(--space-6);
        padding: var(--space-4);
    }
    
    .benefits-text {
        font-size: var(--text-base);
    }
}

/* Single Embed Container for How We Do It Section */
.single-embed-container {
    margin-top: var(--space-6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-4);
}

.ganga-ghat-embed {
    width: 1325px;
    max-width: 1325px;
    height: 450px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 0 auto;
}

.ganga-ghat-embed #9pcg5drfQ {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
    min-height: 450px;
}

.ganga-ghat-embed #9pcg5drfQ script {
    width: 100% !important;
    height: 100% !important;
}

.ganga-ghat-embed #9pcg5drfQ iframe,
.ganga-ghat-embed iframe,
.ganga-ghat-embed #9pcg5drfQ > iframe,
.ganga-ghat-embed #9pcg5drfQ div iframe {
    width: 100% !important;
    height: 450px !important;
    min-height: 450px !important;
    border: none !important;
    display: block !important;
    position: relative !important;
}

/* Target any iframe within the ganga-ghat-embed container */
.ganga-ghat-embed * iframe {
    width: 100% !important;
    height: 450px !important;
    min-height: 450px !important;
    border: none !important;
    display: block !important;
}

/* Embed CTA Button */
.embed-cta {
    text-align: center;
    margin-top: var(--space-6);
}

.embed-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-lg);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(26, 63, 109, 0.25);
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.embed-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 63, 109, 0.4);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Mobile Responsive Single Embed */
@media (max-width: 768px) {
    .single-embed-container {
        padding: 0 var(--space-3);
        margin-top: var(--space-4);
    }
    
    .ganga-ghat-embed {
        width: 100%;
        max-width: 100%;
        height: 300px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .ganga-ghat-embed #9pcg5drfQ {
        min-height: 300px;
    }
    
    .ganga-ghat-embed #9pcg5drfQ iframe {
        min-height: 300px;
    }
}

/* Plot Management System Embed Styles */
.showcase-360-tour .tour-container {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin-bottom: 40px;
}

.showcase-360-tour .360-tour-embed {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.showcase-360-tour .360-tour-embed iframe {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.showcase-360-tour .360-tour-embed iframe:hover {
    transform: scale(1.02);
}

.tour-description {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 16px;
    font-size: var(--text-sm);
}

/* Mobile responsive adjustments for plot management system */
@media (max-width: 768px) {
    .showcase-360-tour .360-tour-embed iframe {
        height: 500px !important;
    }
    
    .showcase-360-tour .tour-container {
        padding: 16px;
        margin-bottom: 30px;
    }
}
