/* 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: #0f172a;
    overflow-x: hidden;
    background: #ffffff;
}

.binarystitch-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation Styles */
.binarystitch-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.binarystitch-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

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

.binarystitch-nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.binarystitch-nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.binarystitch-nav-link:hover,
.binarystitch-nav-link.active {
    color: #0ea5e9;
}

.binarystitch-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transition: width 0.3s ease;
}

.binarystitch-nav-link:hover::after,
.binarystitch-nav-link.active::after {
    width: 100%;
}

.binarystitch-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.binarystitch-nav-toggle span {
    width: 24px;
    height: 2px;
    background: #475569;
    transition: all 0.3s ease;
}

/* Hero Section */
.binarystitch-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    overflow: hidden;
    padding-top: 120px;
}

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

.binarystitch-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.binarystitch-hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.binarystitch-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.binarystitch-hero-text {
    max-width: 600px;
}

.binarystitch-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #0f172a;
}

.binarystitch-hero-line {
    display: block;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.binarystitch-hero-description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
}

.binarystitch-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.binarystitch-hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

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

.binarystitch-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.binarystitch-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.binarystitch-section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Section */
.binarystitch-contact-form-section {
    padding: 120px 0;
    background: white;
}

.binarystitch-contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.binarystitch-contact-form {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.binarystitch-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.binarystitch-form-group {
    margin-bottom: 24px;
}

.binarystitch-form-group label {
    display: block;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.binarystitch-form-group input,
.binarystitch-form-group select,
.binarystitch-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.binarystitch-form-group input:focus,
.binarystitch-form-group select:focus,
.binarystitch-form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

.binarystitch-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #64748b;
}

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

.binarystitch-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.binarystitch-checkbox-label input[type="checkbox"]:checked+.binarystitch-checkbox-custom {
    background: #0ea5e9;
    border-color: #0ea5e9;
}

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

/* Company Address Section */
.binarystitch-address-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.binarystitch-address-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.binarystitch-address-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.binarystitch-address-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.binarystitch-address-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.binarystitch-address-icon .material-icons {
    font-size: 40px;
    color: #0ea5e9;
}

.binarystitch-address-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.binarystitch-address-details p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 8px;
}

.binarystitch-address-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.binarystitch-address-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Information Section */
.binarystitch-contact-info-section {
    padding: 120px 0;
    background: white;
}

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

.binarystitch-contact-method {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.binarystitch-contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.binarystitch-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.binarystitch-contact-method:hover .binarystitch-contact-icon {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    transform: scale(1.1);
}

.binarystitch-contact-icon .material-icons {
    font-size: 40px;
    color: #64748b;
    transition: all 0.3s ease;
}

.binarystitch-contact-method:hover .binarystitch-contact-icon .material-icons {
    color: white;
}

.binarystitch-contact-method h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.binarystitch-contact-method p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.binarystitch-contact-note {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
    font-style: italic;
}

/* Service Hours Section */
.binarystitch-service-hours-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.binarystitch-hours-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.binarystitch-hours-item {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.binarystitch-hours-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.binarystitch-hours-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.binarystitch-hours-time {
    color: #64748b;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.binarystitch-hours-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.binarystitch-hours-item:nth-child(1) .binarystitch-hours-status {
    background: #dcfce7;
    color: #166534;
}

.binarystitch-hours-item:nth-child(2) .binarystitch-hours-status {
    background: #fef3c7;
    color: #92400e;
}

.binarystitch-hours-item:nth-child(3) .binarystitch-hours-status {
    background: #fee2e2;
    color: #991b1b;
}

.binarystitch-hours-note {
    text-align: center;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.binarystitch-hours-note p {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
}

/* Online Support Section */
.binarystitch-online-support-section {
    padding: 120px 0;
    background: white;
}

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

.binarystitch-support-channel {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.binarystitch-support-channel:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.binarystitch-support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.binarystitch-support-channel:hover .binarystitch-support-icon {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    transform: scale(1.1);
}

.binarystitch-support-icon .material-icons {
    font-size: 40px;
    color: #64748b;
    transition: all 0.3s ease;
}

.binarystitch-support-channel:hover .binarystitch-support-icon .material-icons {
    color: white;
}

.binarystitch-support-channel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.binarystitch-support-channel p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.binarystitch-support-channel .binarystitch-btn {
    margin-top: 16px;
}

/* Get Started CTA */
.binarystitch-get-started {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.binarystitch-get-started-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.binarystitch-get-started-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.binarystitch-get-started-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.binarystitch-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.binarystitch-btn .material-icons {
    font-size: 20px;
    transition: all 0.3s ease;
}

.binarystitch-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
}

.binarystitch-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.4);
}

.binarystitch-btn-outline {
    background: transparent;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
    position: relative;
}

.binarystitch-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #0ea5e9;
    transition: width 0.3s ease;
    z-index: -1;
}

.binarystitch-btn-outline:hover::before {
    width: 100%;
}

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

/* Footer */
.binarystitch-footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
}

.binarystitch-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.binarystitch-footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.binarystitch-footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.binarystitch-footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

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

.binarystitch-footer-links li {
    margin-bottom: 12px;
}

.binarystitch-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.binarystitch-footer-links a:hover {
    color: #0ea5e9;
}

.binarystitch-footer-contact p {
    color: #cbd5e1;
    margin-bottom: 8px;
    line-height: 1.6;
}

.binarystitch-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 40px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .binarystitch-container {
        padding: 0 30px;
    }

    .binarystitch-hero-title {
        font-size: 3rem;
    }

    .binarystitch-section-title {
        font-size: 2.5rem;
    }

    .binarystitch-address-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .binarystitch-contact-methods {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .binarystitch-support-channels {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .binarystitch-nav-menu {
        display: none;
    }

    .binarystitch-nav-toggle {
        display: flex;
    }

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

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

    .binarystitch-contact-form {
        padding: 40px 30px;
    }

    .binarystitch-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .binarystitch-contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .binarystitch-support-channels {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .binarystitch-container {
        padding: 0 20px;
    }

    .binarystitch-get-started-content h2 {
        font-size: 2rem;
    }

    .binarystitch-get-started-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .binarystitch-hero-title {
        font-size: 2rem;
    }

    .binarystitch-section-title {
        font-size: 2rem;
    }

    .binarystitch-contact-form {
        padding: 30px 20px;
    }

    .binarystitch-get-started-content h2 {
        font-size: 1.75rem;
    }

    .binarystitch-contact-method {
        padding: 30px 20px;
    }

    .binarystitch-support-channel {
        padding: 30px 20px;
    }

    .binarystitch-hours-item {
        padding: 24px 16px;
    }
}