* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
header {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.logo-accent {
    color: #dc2626;
}

.tagline {
    font-size: 1.25rem;
    color: #e5e5e5;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #000000;
}

.title-accent {
    color: #dc2626;
}

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

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #dc2626;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 600;
}

.service-description {
    color: #525252;
    line-height: 1.7;
}

.learn-more-btn {
    margin-top: 20px;
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.learn-more-btn:hover {
    background: #dc2626;
    color: #ffffff;
}

/* Popup Modal Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.popup-container {
    background: #ffffff;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc2626;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.popup-close:hover {
    background: #b91c1c;
    transform: rotate(90deg);
}

.popup-content {
    padding: 60px 40px 40px;
}

.popup-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 30px;
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.popup-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 1.25rem;
    color: #525252;
}

.popup-body {
    color: #1a1a1a;
}

.popup-body h4 {
    font-size: 1.5rem;
    color: #000000;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dc2626;
}

.popup-body ul, .popup-body ol {
    margin-left: 20px;
    margin-bottom: 25px;
}

.popup-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.popup-body strong {
    color: #000000;
}

.popup-body p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.popup-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f5f5f5;
}

.popup-button {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.popup-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* Mobile Responsive Popup */
@media (max-width: 768px) {
    .popup-container {
        max-height: 95vh;
        margin: 10px;
    }
    
    .popup-content {
        padding: 50px 25px 25px;
    }
    
    .popup-header h2 {
        font-size: 2rem;
    }
    
    .popup-icon {
        font-size: 3rem;
    }
    
    .popup-subtitle {
        font-size: 1.1rem;
    }
    
    .popup-body h4 {
        font-size: 1.3rem;
    }
    
    .popup-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

/* Contact Section */
.contact {
    background: #f5f5f5;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #737373;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-value {
    font-size: 1.125rem;
    color: #000000;
}

.contact-value a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #dc2626;
}

/* Contact Form */
.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

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

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

.form-group label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #737373;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

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

.submit-button {
    background: #dc2626;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Image Carousel */
.carousel-section {
    background: #ffffff;
    padding: 80px 0;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
}

.carousel-slide:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.carousel-slide:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.carousel-slide:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.carousel-slide:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(220, 38, 38, 0.8);
}

.carousel-btn.prev {
    left: 20px;
    border-radius: 0 8px 8px 0;
}

.carousel-btn.next {
    right: 20px;
    border-radius: 8px 0 0 8px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.indicator.active {
    background: #dc2626;
    transform: scale(1.2);
}

/* CTA Section */
.cta {
    background: #000000;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

/* Footer */
footer {
    background: #1a1a1a;
    color: #a3a3a3;
    text-align: center;
    padding: 30px 0;
}

/* Scheduling Section */
.scheduling-section {
    max-width: 1000px;
    margin: 60px auto 0;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    border-top: 4px solid #dc2626;
}

.scheduling-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000000;
}

.scheduling-description {
    text-align: center;
    font-size: 1.125rem;
    color: #525252;
    margin-bottom: 40px;
}

.calendly-inline-widget {
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

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

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

    header {
        padding: 60px 0 40px;
    }

    .services, .contact {
        padding: 60px 0;
    }
}