/* --- Global Styles & Variables --- */
:root {
    --primary-color: #FF6B6B;
    --secondary-color: #FFD166;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-color: #34495E;
    --font-family: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

h1, h2, h3 {
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

ul {
    list-style: none;
}

/* --- Header & Navigation --- */
.main-header {
    background: #FFF;
    padding: 1rem 0;
    border-bottom: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    background: var(--dark-color);
    color: #FFF;
    text-align: center;
    padding: 6rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-color);
    opacity: 0.9;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFF;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #e65a5a;
    transform: translateY(-2px);
    color: #FFF;
}

/* --- Showcase Section --- */
.showcase {
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

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

.showcase-item {
    background: #FFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.showcase-content {
    padding: 1.5rem;
    text-align: left;
}

/* --- Testimonials --- */
.testimonials {
    background-color: #FFF;
    padding: 4rem 0;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 1rem auto;
}

.testimonial cite {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- Services Page --- */
.page-header {
    background: var(--dark-color);
    color: #FFF;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
}

.services-grid {
    padding: 4rem 0;
}

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

.service-card {
    background: #FFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* --- About Page --- */
.about-content {
    padding: 4rem 0;
}
.about-content p {
    max-width: 800px;
    margin: 1rem auto 0 auto;
    font-size: 1.1rem;
}

/* --- Contact Page --- */
.contact-form-section {
    padding: 4rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #FFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #CCC;
    border-radius: 5px;
    font-family: var(--font-family);
}

.form-group textarea {
    resize: vertical;
}

/* --- Footer --- */
.main-footer {
    background: var(--dark-color);
    color: #FFF;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a img {
    width: 24px;
    height: 24px;
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover img {
    opacity: 1;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 65px;
        left: 0;
        background: #FFF;
        padding: 1rem 0;
        border-bottom: 1px solid #EAEAEA;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 30px;
        height: 25px;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--dark-color);
        transition: all 0.3s ease-in-out;
    }

    .mobile-nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}