/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Copy Protection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-select: none;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #64748b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #e2e8f0;
}

.btn-outline:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
    border-radius: 1px;
}

.nav-cta {
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1e293b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #1e293b;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 2px solid #2563eb;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 32px;
}

.product-content h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.product-content p {
    color: #64748b;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 24px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.125rem;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1e293b;
    font-weight: 600;
}

.testimonial-author span {
    color: #64748b;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

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

.cta h2 {
    color: white;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta .btn-primary {
    background: white;
    color: #2563eb;
}

.cta .btn-primary:hover {
    background: #f8fafc;
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-section p,
.footer-section li {
    color: #94a3b8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .features,
    .products,
    .testimonials {
        padding: 60px 0;
    }

    .cta {
        padding: 60px 0;
    }
}

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

.hero-content,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card,
.product-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

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

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

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

.hidden {
    display: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Product Details Styles */
.product-details {
    padding: 100px 0;
    background: white;
}

.product-detail {
    margin-bottom: 120px;
    padding: 60px 0;
}

.product-detail:nth-child(even) {
    background: #f8fafc;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-content.reverse {
    direction: rtl;
}

.product-detail-content.reverse > * {
    direction: ltr;
}

.product-detail-info {
    position: relative;
}

.product-detail-info .product-badge {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.product-detail-info h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.product-subtitle {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 24px;
}

.features-list,
.ideal-for {
    margin: 32px 0;
}

.features-list h3,
.ideal-for h3 {
    color: #1e293b;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.features-list ul,
.ideal-for ul {
    list-style: none;
    padding: 0;
}

.features-list li,
.ideal-for li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.features-list li::before,
.ideal-for li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.product-detail-image {
    position: relative;
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-gallery {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    border-color: #2563eb;
    transform: scale(1.05);
}

/* Comparison Table Styles */
.comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.125rem;
}

.comparison-table td {
    color: #64748b;
}

.comparison-table tr:hover {
    background: #f8fafc;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: #1e293b;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.benefit-card h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-detail-content.reverse {
        direction: ltr;
    }

    .product-detail-info h2 {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
        align-items: center;
    }

    .comparison-table-wrapper {
        margin: 0 -20px;
        border-radius: 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-detail {
        margin-bottom: 80px;
        padding: 40px 0;
    }

    .product-detail:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .product-detail-info h2 {
        font-size: 1.75rem;
    }

    .product-subtitle {
        font-size: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 4px;
        font-size: 12px;
    }
}

/* About Page Styles */
.story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text h2 {
    color: #1e293b;
    margin-bottom: 32px;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #64748b;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.expertise-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.expertise-card h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.expertise-card p {
    color: #64748b;
    line-height: 1.6;
}

.mission {
    padding: 100px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-text h2 {
    color: #1e293b;
    margin-bottom: 32px;
}

.mission-statement {
    font-size: 1.5rem;
    font-style: italic;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mission-point h3 {
    color: #1e293b;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.mission-point p {
    color: #64748b;
    line-height: 1.6;
}

.mission-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-info {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.company-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.company-card h3 {
    color: #2563eb;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.company-card p {
    color: #64748b;
    line-height: 1.6;
}

.why-digital {
    padding: 100px 0;
    background: white;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.challenge-card {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.challenge-card h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.challenge-card p {
    color: #64748b;
    line-height: 1.6;
}

.solution-text {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-text h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.solution-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
}

.contact-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.contact-info strong {
    color: white;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .story-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .story-text p,
    .mission-statement {
        font-size: 1rem;
    }

    .mission-statement {
        font-size: 1.25rem;
    }

    .expertise-grid,
    .company-grid,
    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .solution-text {
        padding: 40px 24px;
    }

    .solution-text h3 {
        font-size: 1.25rem;
    }

    .solution-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .story,
    .expertise,
    .mission,
    .company-info,
    .why-digital {
        padding: 60px 0;
    }

    .expertise-card,
    .company-card,
    .challenge-card {
        padding: 32px 24px;
    }

    .solution-text {
        padding: 32px 20px;
    }
}

/* Contact Page Styles */
.contact-methods {
    padding: 100px 0;
    background: white;
}

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

.contact-card {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact-card h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-details p {
    margin-bottom: 8px;
    color: #1e293b;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details em {
    color: #64748b;
    font-size: 14px;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #1e293b;
    margin-bottom: 16px;
}

.form-header p {
    color: #64748b;
    font-size: 1.125rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    margin-top: 32px;
    text-align: center;
}

.form-actions .btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
}

.form-note {
    margin-top: 16px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Form Error and Success Messages */
.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.form-error h4 {
    color: #dc2626;
    margin-bottom: 12px;
    font-size: 16px;
}

.form-error ul {
    color: #dc2626;
    margin: 0;
    padding-left: 20px;
}

.form-error li {
    margin-bottom: 4px;
}

.field-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.form-success h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.form-success p {
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.next-steps {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    text-align: left;
}

.next-steps h4 {
    color: #1e293b;
    margin-bottom: 16px;
}

.next-steps ul {
    color: #64748b;
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.faq-item {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Business Info Section */
.business-info {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.business-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.business-card h3 {
    color: #2563eb;
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.business-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.business-card li {
    color: #64748b;
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.business-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-item span:first-child {
    color: #1e293b;
    font-weight: 500;
}

.hours-item span:last-child {
    color: #64748b;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 40px 24px;
        margin: 0 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .form-success {
        padding: 40px 20px;
    }

    .next-steps {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .contact-methods,
    .contact-form-section,
    .faq,
    .business-info {
        padding: 60px 0;
    }

    .form-container {
        padding: 32px 20px;
        margin: 0 16px;
    }

    .contact-card,
    .business-card {
        padding: 32px 24px;
    }

    .faq-item {
        padding: 24px;
    }

    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Testimonials Page Styles */
.featured-testimonials {
    padding: 100px 0;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.featured-testimonial {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.featured-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 4rem;
    color: #2563eb;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: serif;
}

.featured-testimonial .testimonial-content p {
    font-size: 1.125rem;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.featured-testimonial .testimonial-author strong {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.125rem;
}

.featured-testimonial .testimonial-author span {
    display: block;
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}

.product-used {
    color: #2563eb !important;
    font-weight: 500 !important;
    margin-top: 8px !important;
}

/* Testimonials Categories */
.testimonials-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    color: #2563eb;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

/* Service Testimonials */
.service-testimonials {
    padding: 100px 0;
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-testimonial {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-testimonial h3 {
    color: #1e293b;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.service-testimonial p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.service-testimonial .testimonial-author {
    text-align: center;
}

.service-testimonial .testimonial-author strong {
    color: #1e293b;
    font-weight: 600;
}

.service-testimonial .testimonial-author span {
    display: block;
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}

/* Before & After Stories */
.before-after {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 24px 32px;
    text-align: center;
}

.story-header h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.church-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.story-content {
    padding: 32px;
}

.before,
.after {
    margin-bottom: 24px;
}

.before h4,
.after h4 {
    color: #1e293b;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.before h4 {
    color: #dc2626;
}

.after h4 {
    color: #059669;
}

.before p,
.after p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

.story-author {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.story-author strong {
    color: #2563eb;
    font-weight: 600;
}

/* Video Testimonials */
.video-testimonials {
    padding: 100px 0;
    background: white;
}

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

.video-placeholder {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: #2563eb;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 24px;
}

.video-info h3 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.video-info p {
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}

.video-duration {
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
}

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

.video-note p {
    color: #64748b;
    font-style: italic;
}

/* Statistics Section */
.statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.statistics .section-header h2 {
    color: white;
}

.statistics .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 16px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 14px;
}

/* Submit Testimonial */
.submit-testimonial {
    padding: 100px 0;
    background: white;
}

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

.submit-content h2 {
    color: #1e293b;
    margin-bottom: 16px;
}

.submit-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.submit-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.submit-note {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.submit-note p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Testimonials Page */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-testimonial {
        padding: 32px 24px;
    }

    .quote-icon {
        font-size: 3rem;
        top: 16px;
        right: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .submit-buttons {
        flex-direction: column;
        align-items: center;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .story-header {
        padding: 20px 24px;
    }

    .story-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .featured-testimonials,
    .testimonials-categories,
    .service-testimonials,
    .before-after,
    .video-testimonials,
    .statistics,
    .submit-testimonial {
        padding: 60px 0;
    }

    .featured-testimonial,
    .service-testimonial {
        padding: 24px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .category-section {
        margin-bottom: 60px;
    }

    .video-info {
        padding: 20px;
    }

    .submit-content {
        padding: 0 20px;
    }

    .submit-note {
        padding: 20px;
    }
}
