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

:root {
    --color-primary: #F5B841;
    --color-dark: #2D2D2D;
    --color-light: #FFFFFF;
    --color-gray: #6B7280;
    --color-gray-light: #F3F4F6;
    --color-border: #E5E7EB;
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1280px;
    --border-radius: 0.5rem;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: #E5A830;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-dark);
}

.btn-outline:hover {
    background-color: var(--color-gray-light);
    border-color: var(--color-dark);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 5rem 0 8rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 70%, rgba(245, 184, 65, 0.05) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.logo {
    height: 4rem;
    margin-bottom: 2rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo {
        height: 5rem;
    }
}

@media (min-width: 1024px) {
    .logo {
        height: 6rem;
    }
}

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

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

.hero-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }
}

/* Social Highlight Section */
.social-highlight {
    background-color: var(--color-primary);
    padding: 3rem 0;
}

.social-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-highlight h2 {
    font-size: 1.875rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .social-highlight h2 {
        font-size: 2.25rem;
    }
}

.social-highlight p {
    font-size: 1rem;
    color: rgba(45, 45, 45, 0.9);
    margin-bottom: 2rem;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .social-highlight p {
        font-size: 1.125rem;
    }
}

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

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: rgba(45, 45, 45, 0.1);
    min-width: 140px;
    transition: all 0.3s ease;
}

.social-card:hover {
    background-color: rgba(45, 45, 45, 0.2);
    transform: translateY(-4px);
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-dark);
    transition: transform 0.3s ease;
}

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

.social-card span {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--color-light);
}

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

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

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

.service-card {
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: var(--color-light);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background-color: var(--color-primary);
}

.why-choose .section-header h2 {
    color: var(--color-dark);
}

.why-choose .section-header p {
    color: rgba(45, 45, 45, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(45, 45, 45, 0.2);
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-dark);
}

.feature h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.feature p {
    color: rgba(45, 45, 45, 0.9);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--color-light);
}

.contact-wrapper {
    max-width: 42rem;
    margin: 0 auto;
}

.contact-card {
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: var(--color-light);
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-family);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 3rem;
    filter: brightness(0) invert(1);
}

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

.footer-social a {
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-primary);
}

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

.footer-info {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info a {
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--color-primary);
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Form Success Message */
.form-success {
    padding: 1rem;
    background-color: #D1FAE5;
    color: #065F46;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    text-align: center;
}

.form-error {
    padding: 1rem;
    background-color: #FEE2E2;
    color: #991B1B;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    text-align: center;
}
