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

:root {
    --primary-color: #c15615;
    --primary-hover: #d16419;
    --secondary-color: #d16419;
    --text-dark: #0a0a0a;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

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

.container-small {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('assets/81218f29-f278-4044-8b96-ed19cd8a76aa.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    height: 4rem;
    margin: 0 auto 1.5rem;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight p {
    color: white;
    font-weight: 500;
    margin: 0;
}

.highlight-text {
    color: #fcd34d;
    font-weight: bold;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.arrow-icon {
    flex-shrink: 0;
}

/* About Section */
.about-section {
    padding: 4rem 1rem;
    background: var(--bg-gray);
}

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

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-primary-large:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 1rem;
    background: var(--bg-white);
}

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

.benefit-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
    background: rgba(193, 86, 21, 0.05);
}

.check-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.benefit-card span {
    font-size: 1.125rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.benefit-card:hover span {
    color: var(--primary-color);
}

/* Experience Section */
.experience-section {
    padding: 5rem 1rem;
    background: var(--bg-gray);
}

.qualifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    animation: fadeIn 0.6s ease-in;
}

.qualification-item .check-icon {
    margin-top: 0.25rem;
}

.qualification-item span {
    font-size: 1.125rem;
    color: var(--text-dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 1rem;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    animation: fadeIn 0.6s ease-in;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 3rem 1rem;
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item .icon {
    color: var(--primary-color);
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item p {
    margin: 0;
    color: var(--text-dark);
}

.map-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-container {
    width: 100%;
    height: 256px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-button-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: scale(1.1);
}

.whatsapp-button:hover + .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .logo {
        height: 5rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-image img {
        height: 400px;
    }

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

    .section-title {
        font-size: 2.25rem;
        text-align: left;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .section-title {
        font-size: 2.25rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Print Styles */
@media print {
    .whatsapp-button-container {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        page-break-after: always;
    }
}
