@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ========== Header Section ========== */
#header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.head-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.head-img, .head-text {
    flex: 1;
}

.head-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.head-img img:hover {
    transform: scale(1.02);
}

.head-text h1 {
    font-size: 2.5rem;
    color: #2b2e4a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.head-text h2 {
    font-style: italic;
    color: #c200c2;
    margin: 0.5rem 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.text-container {
    display: block;
}

.text-container p {
    margin-bottom: 1.2rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.head-quote {
    margin-top: 2rem;
    padding: 20px;
    background: rgba(194, 0, 194, 0.05);
    border-left: 4px solid #c200c2;
    border-radius: 8px;
}

.head-quote p {
    margin-bottom: 0.5rem;
    font-style: italic;
    color: #2b2e4a;
}

.head-quote p:last-child {
    text-align: right;
    font-weight: 600;
    color: #c200c2;
}

/* ========== About Section ========== */
#about {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
    color: #2b2e4a;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c200c2;
    margin-top: 8px;
    border-radius: 2px;
}

.about-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1rem;
}

/* ========== Services Section ========== */
#services {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(194, 0, 194, 0.2);
    border-color: #c200c2;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #c200c2;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: #2b2e4a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* ========== Payment Section ========== */
#payment {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.payment-text {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.payment-text h3 {
    color: #2b2e4a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 3px solid #c200c2;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.payment-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.payment-list {
    list-style: none;
    padding: 0;
}

.payment-list li {
    font-size: 1.1rem;
    margin: 12px 0;
    display: flex;
    align-items: center;
    color: #555;
    transition: transform 0.2s ease;
}

.payment-list li:hover {
    transform: translateX(5px);
}

.payment-list li i {
    font-size: 28px;
    margin-right: 15px;
    width: 35px;
}

/* Brand Colors */
.amex {
    color: #2E77BC;
}

.discover {
    color: #FF6000;
}

.mastercard {
    color: #EB001B;
}

.visa {
    color: #1434CB;
}

.zelle {
    color: #6A1AFF;
}
/* ========== Footer Section ========== */
#footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-color: #c200c2;
}

.footer {
    background-color: #050505;
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 4px solid var(--brand-color);
}

.footer-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

.about-section {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .about-section {
        grid-column: span 5;
    }
}

.contact-section {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .contact-section {
        grid-column: span 3;
    }
}

.hours-section {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .hours-section {
        grid-column: span 4;
    }
}

.footer-title {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-color);
    border-bottom: 1px solid #374151;
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.about-footer {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
    max-width: 28rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-link {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--brand-color);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    color: #9ca3af;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--brand-color);
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2937;
    padding-bottom: 0.5rem;
}

.hours-day {
    font-weight: 500;
}

.hours-closed {
    color: var(--brand-color);
    font-weight: 500;
}

.hours-note {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.625;
    margin-top: 1.25rem;
}

.hours-note-label {
    color: var(--brand-color);
    font-weight: bold;
}

.footer-bottom {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-bottom {
        padding: 0 2rem;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

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