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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn--primary {
    background: linear-gradient(135deg, #a44b34, #8b3a2a);
    color: #f6ecd8;
    box-shadow: 0 4px 15px rgba(164, 75, 52, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 75, 52, 0.4);
}

.btn--secondary {
    background: transparent;
    color: #a44b34;
    border: 2px solid #a44b34;
}

.btn--secondary:hover {
    background: #a44b34;
    color: #f6ecd8;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(164, 75, 52, 0.4);
    border-radius: 12px;
}

.btn--large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(164, 75, 52, 0.5);
}

/* Top Phone Banner */
.phone-banner {
    background: linear-gradient(135deg, #a44b34, #8b3a2a);
    color: #f6ecd8;
    padding: 6px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    box-shadow: 0 3px 15px rgba(164, 75, 52, 0.3);
    border: none;
    margin: 0;
}

.phone-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.phone-banner__logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.phone-banner__text {
    color: #f6ecd8;
    font-weight: 500;
    white-space: nowrap;
}

.phone-banner__number {
    color: #f6ecd8;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(246, 236, 216, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-banner__number:hover {
    background: rgba(246, 236, 216, 0.3);
    transform: scale(1.05);
}

.phone-banner__number i {
    font-size: 0.8rem;
}


/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f6ecd8 0%, #f0e6d2 100%);
    display: flex;
    align-items: center;
}

.hero__container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero__title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero__description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero__testimonial {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.testimonial__card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial__stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.testimonial__stars i {
    color: #ffd700;
    font-size: 1.25rem;
}

.testimonial__text {
    font-size: 1.1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.testimonial__author {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin: 0;
}


/* Section Styles */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    color: #333;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.25rem;
    color: #666;
}

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

.services__unified {
    display: flex;
    justify-content: center;
}

.service__card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    max-width: 800px;
    width: 100%;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service__main-title {
    color: #333;
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.services__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.service__item:hover {
    background-color: #f8f9fa;
}

.service__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a44b34, #8b3a2a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service__icon i {
    font-size: 1rem;
    color: #f6ecd8;
}

.service__title {
    color: #333;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f6ecd8 0%, #f0e6d2 100%);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about__feature i {
    font-size: 1.5rem;
    color: #a44b34;
    margin-top: 0.25rem;
}

.about__feature h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.about__feature p {
    color: #666;
    margin: 0;
}

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

.about__headshot {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(164, 75, 52, 0.3);
    border: 4px solid #a44b34;
}

.about__image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #a44b34, #8b3a2a);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f6ecd8;
    box-shadow: 0 20px 40px rgba(164, 75, 52, 0.3);
}

.about__image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about__image-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f6ecd8;
    text-align: center;
    margin: 0;
}

/* Service Area Section */
.service-area {
    padding: 80px 0;
    background: #fff;
}

.service-area__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-area__item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.service-area__item:hover {
    transform: translateY(-3px);
}

.service-area__item i {
    font-size: 2rem;
    color: #a44b34;
    margin-bottom: 1rem;
}

.service-area__item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.service-area__item p {
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #a44b34, #8b3a2a);
    color: #f6ecd8;
}

.contact .section__title,
.contact .section__subtitle {
    color: #f6ecd8;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__item i {
    font-size: 1.5rem;
    color: #f6ecd8;
    margin-top: 0.25rem;
}

.contact__item h4 {
    color: #f6ecd8;
    margin-bottom: 0.5rem;
}

.contact__item p {
    color: rgba(246, 236, 216, 0.9);
    margin: 0;
}

.contact__item a {
    color: #f6ecd8;
    text-decoration: underline;
}

.contact__item a:hover {
    color: #d4c4a8;
}

/* Form Styles */

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer__brand p {
    color: #ccc;
    margin-top: 1rem;
}

.footer__links h4,
.footer__contact h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #a44b34;
}

.footer__contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__contact i {
    color: #a44b34;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .phone-banner__content {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 10px;
        flex-wrap: nowrap;
    }
    
    .phone-banner__logo {
        height: 24px;
    }
    
    .phone-banner__text {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .phone-banner__number {
        font-size: 1rem;
        padding: 8px 20px;
    }
    
    .phone-banner {
        padding: 8px 0;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .about__headshot {
        width: 250px;
        height: 250px;
    }


    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        justify-content: center;
    }
    
    .btn--large {
        padding: 16px 32px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 400px;
    }
    
    .testimonial__text {
        font-size: 1rem;
    }
    
    .testimonial__stars i {
        font-size: 1.1rem;
    }
    
    .testimonial__card {
        padding: 1.5rem;
        margin: 0 1rem;
    }


    .services__list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service__card {
        padding: 1.5rem;
    }
    
    .service__main-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service__item {
        padding: 0.5rem;
    }
    
    .service__icon {
        width: 35px;
        height: 35px;
    }
    
    .service__icon i {
        font-size: 0.9rem;
    }
    
    .service__title {
        font-size: 0.9rem;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__image-placeholder {
        width: 250px;
        height: 250px;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section__header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 40px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service__card {
        padding: 1.5rem;
    }


    .hero__image-placeholder {
        width: 250px;
        height: 180px;
    }
}

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

.service__card,
.about__feature,
.contact__item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading states and interactions */

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 2rem;
}
