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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #262626;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container {
    width: 9rem;
    height: 2.4rem;
    background-color: #1f2937;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #262626;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #737373;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #737373;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 1rem;
}

.nav-link:hover {
    color: #dc2626;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: #262626;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    text-align: left;
    color: #737373;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #dc2626;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-card-content {
    padding: 2rem;
}

.hero-header {
    margin-bottom: 1.5rem;
}

.hero-logo {
    width: 15rem;
    height: 4rem;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 0.75rem;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 1rem;
}

.hero-title-accent {
    color: #dc2626;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #737373;
    margin-bottom: 2rem;
}

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

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: #dc2626;
}

.feature-title {
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #737373;
}

.hero-description {
    font-size: 1.125rem;
    color: #737373;
    margin-bottom: 2rem;
}

.newsletter-section {
    background-color: rgba(245, 245, 245, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 24rem;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: #ffffff;
}

.newsletter-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.newsletter-btn {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.newsletter-btn:hover {
    background-color: #b91c1c;
}

.newsletter-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    display: none;
}

.newsletter-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.newsletter-message.error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

@media (min-width: 768px) {
    .hero-card-content {
        padding: 3rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-form {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #737373;
    max-width: 32rem;
    margin: 0 auto;
}

.features-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    text-align: center;
    background-color: rgba(245, 245, 245, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card-img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.feature-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.5rem;
}

.feature-card-text {
    color: #737373;
}

@media (min-width: 768px) {
    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .features-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: rgba(245, 245, 245, 0.3);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #dc2626;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #737373;
    margin-bottom: 1rem;
}

.contact-info {
    color: #dc2626;
    font-weight: 600;
}

.contact-sub {
    font-size: 0.875rem;
    color: #737373;
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Social Media Section */
.social-section {
    padding: 4rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 1rem;
}

.social-subtitle {
    color: #737373;
    margin-bottom: 2rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-facebook { background-color: #1877F2; }
.social-twitter { background-color: #1DA1F2; }
.social-linkedin { background-color: #0A66C2; }
.social-instagram { background-color: #E4405F; }
.social-youtube { background-color: #FF0000; }

/* Footer */
.footer {
    background-color: #262626;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-main {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-container {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #e5e5e5;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo-subtitle {
    font-size: 0.875rem;
    color: #a3a3a3;
}

.footer-description {
    color: #a3a3a3;
    margin-bottom: 1rem;
    max-width: 28rem;
}

.footer-business-info {
    font-size: 0.875rem;
}

.footer-business-info p {
    color: #a3a3a3;
    margin-bottom: 0.5rem;
}

.footer-section-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #dc2626;
}

.hours-list {
    font-size: 0.875rem;
    color: #a3a3a3;
}

.hours-list p {
    margin-bottom: 0.5rem;
}

.hours-time {
    font-weight: 500;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(163, 163, 163, 0.2);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #a3a3a3;
}

.footer-legal-link {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: #dc2626;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

/* Utilities */
.min-h-screen {
    min-height: 100vh;
}