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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: fadeInDown 1s ease-out;
}

.logo {
    height: 8rem;
    width: auto;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(192, 182, 149, 0.3);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.sparkle-icon {
    width: 1rem;
    height: 1rem;
    color: #c0b695;
}

.hero-badge span {
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

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

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    outline: none;
}

.btn:focus-visible {
    outline: 3px solid rgba(192, 182, 149, 0.5);
    outline-offset: 2px;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn-primary {
    background-color: #c0b695;
    color: #000;
}

.btn-primary:hover {
    background-color: rgba(192, 182, 149, 0.9);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    border: 1px solid rgba(192, 182, 149, 0.5);
    color: #fff;
}

.btn-outline:hover {
    background-color: rgba(192, 182, 149, 0.1);
    color: #fff;
}

.btn-cta {
    padding: 1rem 2rem;
    background-color: #c0b695;
    color: #000;
}

.btn-cta:hover {
    background-color: rgba(192, 182, 149, 0.9);
}

.btn-submit {
    width: 100%;
    padding: 0.625rem 1.5rem;
    background-color: #c0b695;
    color: #000;
}

.btn-submit:hover {
    background-color: rgba(192, 182, 149, 0.9);
}

/* ========================================
   Scroll Indicator
   ======================================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(192, 182, 149, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.5rem;
    background-color: rgba(192, 182, 149, 0.8);
    border-radius: 9999px;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    padding: 5rem 0;
    background-color: #000;
}

@media (min-width: 640px) {
    .stats-section {
        padding: 8rem 0;
    }
}

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

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

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    color: #c0b695;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 4.5rem;
    }
}

.stat-label {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 1.5rem;
    }
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #171717, #000);
}

@media (min-width: 640px) {
    .services-section {
        padding: 8rem 0;
    }
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(192, 182, 149, 0.2);
    color: #c0b695;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 48rem;
    margin: 0 auto;
}

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

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

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

.service-card {
    position: relative;
    background-color: #171717;
    border: 1px solid #262626;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(192, 182, 149, 0.5);
}

.service-card-featured {
    border-color: rgba(192, 182, 149, 0.3);
}

.featured-badge {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    z-index: 10;
    background-color: #c0b695;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}

.service-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 1rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   CTA Box
   ======================================== */
.cta-box {
    margin-top: 5rem;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #262626, #171717);
    border: 1px solid rgba(192, 182, 149, 0.3);
    color: #fff;
}

@media (min-width: 640px) {
    .cta-box {
        padding: 3rem;
    }
}

.cta-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 5rem 0;
    background-color: #171717;
}

@media (min-width: 640px) {
    .contact-section {
        padding: 8rem 0;
    }
}

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

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

.contact-form-container {
    background-color: #000;
    border: 1px solid #262626;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background-color: #171717;
    border: 1px solid #262626;
    border-radius: 0.375rem;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c0b695;
    box-shadow: 0 0 0 3px rgba(192, 182, 149, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.form-success-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.5rem;
    color: #22c55e;
    text-align: center;
}

.form-error-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    color: #ef4444;
    text-align: center;
}

/* ========================================
   Contact Info
   ======================================== */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box {
    background: linear-gradient(135deg, #262626, #000);
    border: 1px solid rgba(192, 182, 149, 0.3);
    padding: 2rem;
    border-radius: 1.5rem;
    color: #fff;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background-color: rgba(192, 182, 149, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #c0b695;
}

.contact-label {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #c0b695;
}

/* ========================================
   Working Hours
   ======================================== */
.working-hours-box {
    background-color: #000;
    border: 1px solid #262626;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.working-hour-item {
    display: flex;
    justify-content: space-between;
}

.hour-value {
    color: #c0b695;
}

.hour-closed {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0;
    border-top: 1px solid #262626;
}

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

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

.footer-logo {
    height: 5rem;
    width: auto;
    margin-bottom: 1rem;
    filter: invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
}

.footer-title {
    margin-bottom: 1rem;
    color: #c0b695;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #c0b695;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #171717;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.social-link:hover {
    background-color: #c0b695;
    color: #000;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #262626;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}
