/* 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: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.icon-sm {
    width: 12px;
    height: 12px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.mobile-btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #dbeafe;
}

.top-bar {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    gap: 0.5rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.contact-item a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.contact-item a:hover {
  color: #ddd; /* optional hover effect */
}

.email-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hours-info {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-header {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 3.5rem;
    width: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

.mobile-menu {
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.mobile-nav-link {
    color: #374151;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    padding: 3rem 1rem 4rem;
    background: linear-gradient(135deg, #eff6ff, #ffffff, #eff6ff);
}

.hero-content {
    text-align: center;
    max-width: 64rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services {
    padding: 3rem 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #eff6ff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.service-title {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 1rem 4rem;
    background: linear-gradient(135deg, #eff6ff, #f9fafb, #eff6ff);
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial {
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    width: 1rem;
    height: 1rem;
}

.star.filled {
    color: #fbbf24;
    fill: #fbbf24;
}

.testimonial-text {
    color: #374151;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact Section */
.contact {
    padding: 2rem 1rem 3rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px solid #dbeafe;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #111827;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.contact-link:hover {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    flex-shrink: 0;
}

.address-line {
    font-weight: 500;
    color: #111827;
}

.address-city {
    color: #6b7280;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111827, #1e40af, #111827);
    color: white;
    padding: 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.company-info {
    grid-column: span 1;
}

.footer-logo img {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1rem;
}

.company-description {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
}

.rating-text {
    color: white;
    font-size: 0.875rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #93c5fd;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list li {
    color: #d1d5db;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-list li:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-icon {
    width: 1rem;
    height: 1rem;
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-all;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: #9ca3af;
    font-size: 0.75rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

/* Responsive Design */
@media (min-width: 640px) {
    .top-bar-content {
        flex-direction: row;
        font-size: 0.875rem;
    }
    
    .contact-info {
        flex-direction: row;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .service-icon img {
        width: 4rem;
        height: 4rem;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .testimonials-list {
        gap: 1.5rem;
    }
    
    .contact-links {
        max-width: 32rem;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .company-info {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .copyright {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .logo {
        height: 3.5rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .testimonials {
        padding: 4rem 1rem;
    }
    
    .contact {
        padding: 3rem 1rem;
    }
    
    .footer {
        padding: 3rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .company-info {
        grid-column: span 2;
    }
    
    .company-description {
        font-size: 1rem;
    }
    
    .footer-title {
        font-size: 1.125rem;
    }
    
    .footer-list li {
        font-size: 1rem;
    }
    
    .footer-contact-item {
        font-size: 1rem;
    }
    
    .copyright {
        font-size: 0.875rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
    }
}

@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo {
        height: 2.5rem;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services {
        padding: 2rem 1rem;
    }
    
    .testimonials {
        padding: 2rem 1rem 3rem;
    }
    
    .contact {
        padding: 1.5rem 1rem 2rem;
    }

}
