/* AnyPro.ai V2 Styles - Professional AI-Powered Infrastructure Solutions */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Mobile-first container adjustments */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #667eea;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Formula Display */
.formula-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    padding: 1.5rem;
    position: relative;
}

.formula-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.formula-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 120px;
    text-align: center;
}

.formula-operator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    min-width: 2rem;
    text-align: center;
}

.formula-arrow {
    font-size: 2rem;
    color: #bb7f47;
    text-align: center;
    margin: 0.75rem auto;
    font-weight: bold;
}

.formula-result {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    text-align: center;
    margin-top: 0.5rem;
}

.hero .description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    margin: 0 auto;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 50px;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-align: center;
    display: block;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: #f8f9fa;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background: #f7fafc;
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Solution Section */
.solution {
    padding: 6rem 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #667eea;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.advantage-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f7fafc;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.service-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* Case Studies Section */
.case-studies {
    padding: 6rem 0;
    background: #f7fafc;
}

.case-study-detail {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.case-study-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.case-study-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.case-study-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.case-study-meta span {
    background: #f7fafc;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    color: #4a5568;
}

.case-study-meta .company {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.case-study-content {
    display: grid;
    gap: 3rem;
}

.challenge,
.solution,
.results {
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    background: #f7fafc;
}

.challenge h3,
.solution h3,
.results h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.challenge p,
.solution p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.result-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.result-metric {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea !important;
    margin-bottom: 0.5rem;
    text-align: center;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50 !important;
    margin-bottom: 0.5rem;
    text-align: center;
}

.result-description {
    color: #4a5568 !important;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.technologies {
    margin: 2rem 0;
}

.technologies h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial .author {
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial .company {
    opacity: 0.9;
    font-size: 1rem;
}

.impact {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.impact h4 {
    color: #0369a1;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact p {
    color: #0c4a6e;
    line-height: 1.6;
}

/* Responsive Case Studies */
@media (max-width: 768px) {
    .case-study-detail {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .case-study-header h2 {
        font-size: 2rem;
    }
    
    .case-study-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-metric {
        font-size: 2rem;
    }
    
    .challenge,
    .solution,
    .results {
        padding: 1.5rem;
    }
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.case-study-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding: 2rem 2rem 0;
}

.case-study-card .company {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: #718096;
}

.case-study-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.case-study-card .cta-button {
    margin: 0 2rem 2rem;
    display: inline-block;
}

/* Company Logo Styles */
.company-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.case-study-header-with-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.case-study-header-with-logo .header-content {
    flex: 1;
}

.case-study-header-with-logo h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.case-study-header-with-logo .case-study-meta {
    justify-content: flex-start;
}

/* Responsive logo layout */
@media (max-width: 768px) {
    .case-study-header-with-logo {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .case-study-header-with-logo h2 {
        text-align: center;
    }
    
    .case-study-header-with-logo .case-study-meta {
        justify-content: center;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f7fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

.testimonial-card .quote {
    color: #4a5568;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    color: #2c3e50;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

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

.form-group input[type="email"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M3 4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v2.586a1 1 0 0 1-.293.707l-6.414 6.414a1 1 0 0 1-1.414 0L3.293 7.293A1 1 0 0 1 3 6.586V4z'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25em 1.25em;
    padding-right: 2.5rem;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #e53e3e;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #38a169;
}

/* Form submit button */
.contact-form .cta-button {
    width: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form .cta-button:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.contact-form .cta-button:active {
    transform: translateY(0);
}

/* Form disclaimer */
.contact-form + p {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive form */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .contact-form .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Contact Page Additional Styles */
.contact-info {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.contact-detail h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #666;
    margin: 0;
}

/* Process Steps for Contact Page */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step .step-number {
    background: #007bff;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #333;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Guarantee Cards */
.guarantee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 4px solid #007bff;
}

.guarantee-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section for Contact Page */
.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .guarantee-cards {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    opacity: 0.6;
}

/* About Page Specific Styles */
.company {
    padding: 6rem 0;
    background: white;
}

.company-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.detail {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.founder {
    padding: 6rem 0;
    background: #f7fafc;
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.founder-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 768px) {
    .founder-image {
        max-width: 250px;
        margin: 0 auto;
    }
}

.founder-links {
    margin: 2rem 0;
    text-align: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0077b5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-link:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
    color: white;
}

.linkedin-link svg {
    flex-shrink: 0;
}

.experience {
    margin: 2rem 0;
}

.experience-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
}

.experience-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.period {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.credentials {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #48bb78;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.approach {
    padding: 6rem 0;
    background: white;
}

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

.principle-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.principle-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.principle-card p {
    color: #4a5568;
    line-height: 1.7;
}

.values {
    padding: 6rem 0;
    background: #f7fafc;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.team {
    padding: 6rem 0;
    background: white;
}

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

.team-member {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expertise h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.expertise ul {
    list-style: none;
    padding: 0;
}

.expertise li {
    padding: 0.25rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.expertise li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Services Page Specific Styles */
.overview {
    padding: 6rem 0;
    background: white;
}

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

.tier-overview {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.tier-overview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tier-overview h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tier-overview p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.duration {
    color: #718096;
    font-size: 0.9rem;
}

.price {
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-detail {
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.service-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.service-meta .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
}

.service-meta .duration {
    color: #718096;
    font-size: 1.1rem;
}

.service-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
}

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

.deliverables,
.benefits {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.deliverables h3,
.benefits h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.deliverables ul,
.benefits ul {
    list-style: none;
    padding: 0;
}

.deliverables li,
.benefits li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.deliverables li::before,
.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.process {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.process h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
}

.pricing {
    padding: 6rem 0;
    background: #f7fafc;
}

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

.pricing-factor {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-factor:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-factor h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pricing-factor .price {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
}

.pricing-factor p {
    color: #4a5568;
    line-height: 1.7;
}

.guarantee {
    padding: 6rem 0;
    background: white;
}

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

.guarantee-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.guarantee-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block !important;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #667eea;
    background: #f7fafc;
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
        visibility: hidden !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar .cta-button {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .formula-display {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .formula-top {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .formula-item {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .formula-operator {
        font-size: 1.2rem;
        min-width: auto;
        color: #2d3748;
    }
    
    .formula-arrow {
        font-size: 1.5rem;
        color: #2d3748;
        text-align: center;
        margin: 0.75rem auto;
        font-weight: bold;
    }
    
    .formula-result {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .advantages-grid,
    .services-grid,
    .case-studies-grid,
    .testimonials-grid,
    .principles-grid,
    .values-grid,
    .team-grid,
    .tiers-overview,
    .pricing-factors,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .study-metrics {
        grid-template-columns: 1fr;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .company-details {
        grid-template-columns: 1fr;
    }
}

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

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

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

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

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

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

/* Calculator Styles */
.calculator-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.calculator-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.calculator-subtitle {
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.calculator-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

.calculator-form {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.form-group select,
.form-group input[type="range"] {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group select:focus,
.form-group input[type="range"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #e2e8f0;
    border-radius: 5px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    background: #5a67d8;
    transform: scale(1.1);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.slider::-moz-range-thumb:hover {
    background: #5a67d8;
    transform: scale(1.1);
}

.slider-value {
    text-align: center;
    font-weight: 600;
    color: #667eea;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.calculator-results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.calculator-results h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.estimate-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.estimate-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.estimate-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.estimate-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.calculator-cta {
    margin: 2rem 0;
}

.calculator-cta .cta-button {
    background: white;
    color: #667eea;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.calculator-cta .cta-button:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.calculator-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: #f7fafc;
    text-align: center;
}

.cta .section-header {
    margin-bottom: 3rem;
}

.cta .section-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta .section-header p {
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button-container .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }
    
    .cta .section-header h2 {
        font-size: 2rem;
    }
    
    .cta .section-header p {
        font-size: 1.1rem;
    }
    
    .cta-button-container .cta-button {
        font-size: 1.1rem;
        padding: 0.875rem 2rem;
    }
}

/* Responsive Calculator */
@media (max-width: 768px) {
    .calculator-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .calculator-header h2 {
        font-size: 2rem;
    }
    
    .estimate-display {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .estimate-value {
        font-size: 1.5rem;
    }
    
    /* Ensure calculator buttons are visible on mobile */
    .calculator-form .cta-button,
    .calculator-cta .cta-button {
        display: inline-block !important;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin: 1rem 0;
    }
    
    /* Ensure all other CTA buttons are visible on mobile */
    .cta-button-container .cta-button,
    .contact-cta .cta-button,
    .case-study-card .cta-button,
    .service-card .cta-button {
        display: inline-block !important;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin: 1rem 0;
    }
}

/* New Styles for Enhanced Components */

/* Enhanced Testimonials */
.linkedin-link {
    color: #0077b5;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.linkedin-link:hover {
    text-decoration: underline;
}

/* Guarantee Page Styles */
.guarantee-overview,
.refund-eligibility,
.refund-process,
.limitations {
    padding: 4rem 0;
}

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

.guarantee-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

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

.eligibility-item,
.limitation-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.eligibility-item h3,
.limitation-item h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    background: #007bff;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* AI Methodology Styles */
.ai-methodology {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.ai-methodology::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='%23007bff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.ai-methodology .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Process Steps for AI Methodology */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545, #6f42c1);
    z-index: 1;
    opacity: 0.3;
}

.process-step {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.4s ease;
    z-index: 2;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
    border-color: #007bff;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 16px 16px 0 0;
}

.step-number {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #28a745);
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.step-content p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Special styling for different process steps */
.process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.process-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.process-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

.process-step:nth-child(5) .step-number {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
}

/* Responsive design */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
}

/* New AI Methodology Styles */
.breakthrough-tech {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

.breakthrough-tech h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.key-innovations {
    margin-top: 1.5rem;
}

.key-innovations h4 {
    color: #e3f2fd;
    margin-bottom: 1rem;
}

.key-innovations ul {
    list-style: none;
    padding: 0;
}

.key-innovations li {
    padding: 0.5rem 0;
    border-left: 3px solid #e3f2fd;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.technology-stack {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.tech-component {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.tech-component h4 {
    color: #007bff;
    margin-bottom: 1rem;
}

.capabilities {
    margin-top: 1rem;
}

.capabilities ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.ai-models {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.cloud-models,
.specialized-models {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.cloud-models h4,
.specialized-models h4 {
    color: #007bff;
    margin-bottom: 1rem;
}

.parallelization-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 6px;
    border-left: 4px solid #007bff;
}

.competitive-advantage {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(40,167,69,0.3);
}

.competitive-advantage h3 {
    color: white;
    margin-bottom: 1rem;
}

.advantages {
    margin-top: 1.5rem;
}

.advantage-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-item p {
    margin: 0;
    font-weight: 500;
}

.ai-tools,
.knowledge-base,
.quality-guarantee {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ai-tools h3,
.knowledge-base h3,
.quality-guarantee h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.ai-tools ul,
.knowledge-base ul,
.quality-guarantee ul {
    list-style: none;
    padding: 0;
}

.ai-tools li,
.knowledge-base li,
.quality-guarantee li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.knowledge-base li {
    font-style: italic;
    color: #666;
}

.technical-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Operational Metrics Styles */
.operational-metrics {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.operational-metrics h3 {
    color: #007bff;
    margin-bottom: 2rem;
}

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

.operational-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.operational-category {
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.before-after {
    display: grid;
    gap: 0.5rem;
}

.before {
    color: #dc3545;
    font-weight: 500;
}

.after {
    color: #28a745;
    font-weight: 500;
}

.improvement {
    font-weight: bold;
    color: #007bff;
    font-size: 1.1rem;
}

.operational-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.operational-description {
    color: #666;
}

.operational-feedback {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.operational-feedback p {
    font-style: italic;
    color: #333;
    margin: 0;
}

/* FAQ Styles */
.faq-sections {
    padding: 4rem 0;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    color: #007bff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #007bff;
}

.faq-item {
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-item h3 {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 0;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.faq-item h3:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 1.5rem;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Guarantee Link Styles */
.guarantee-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.guarantee-link:hover {
    text-decoration: underline;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .guarantees-grid,
    .eligibility-list,
    .limitations-list,
    .operational-grid {
        grid-template-columns: 1fr;
    }
    
    .step,
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .operational-item {
        padding: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 0.5rem;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    .hero .description {
        margin-bottom: 3rem;
    }
    
    .scroll-indicator span {
        font-size: 0.8rem;
        text-align: center;
        display: block;
    }
    
    .scroll-indicator::after {
        font-size: 1.2rem;
        text-align: center;
        display: block;
    }
}

/* CTA Section for Homepage */
.cta-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.cta-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-card .cta-button {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-card .cta-button:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
}
