* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    line-height: 1.5;
    color: #333;
}


/* Compact Hero Section */
.clean-hero {
    margin-top: 70px;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge-light {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-title-light {
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title-light .bold {
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-light {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons-light {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-light-primary,
.btn-light-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-light-primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    border: none;
}

.btn-light-primary:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-light-secondary {
    background: white;
    color: #333;
    border: 2px solid #e9ecef;
}

.btn-light-secondary:hover {
    border-color: #d4af37;
    color: #d4af37;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Compact Contact Cards */
.contact-cards-section {
    padding: 60px 0 40px;
    background: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card-light {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.contact-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.contact-card-light:hover::before {
    transform: scaleX(1);
}

.card-header-light {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-icon-light {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 20px;
}

.card-title-light {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.info-icon {
    color: #d4af37;
    font-size: 14px;
    width: 18px;
    margin-top: 2px;
}

.info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 3px;
    font-weight: 600;
}

.info-text {
    color: #555;
    line-height: 1.5;
    font-weight: 500;
    font-size: 14px;
}

/* Compact Map Section */
.map-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.map-title .bold {
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-3px);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.location-info {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.location-card {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.location-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 16px;
}

.location-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.location-details {
    color: #555;
    line-height: 1.6;
    font-size: 13px;
    font-weight: 500;
}

/* Compact Info Section */
.info-section-light {
    padding: 50px 0;
    background: white;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card-light {
    text-align: center;
    padding: 25px 15px;
    background: #fafafa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card-light:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 20px;
    margin: 0 auto 15px;
}

.info-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.info-card-text {
    color: #666;
    line-height: 1.5;
    font-weight: 400;
    font-size: 13px;
}

/* Compact Form Section */
.form-section-light {
    padding: 50px 0;
    background: #fafafa;
}

.form-container-light {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-header-light {
    margin-bottom: 30px;
}

.form-title-light {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
}

.form-title-light .bold {
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle-light {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

.contact-form-light {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group-light {
    margin-bottom: 20px;
}

.form-label-light {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.form-control-light {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
    color: #333;
}

.form-control-light:focus {
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.form-control-light.textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn-light {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn-light:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Compact Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-about h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-btn,
.scroll-top-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: white;
}

.scroll-top-btn {
    background: #d4af37;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #b8860b;
    transform: scale(1.1);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .nav-pills-container {
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 15px;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .header-actions {
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title-light {
        font-size: 2.2rem;
    }

    .form-title-light,
    .map-title {
        font-size: 2rem;
    }

    .clean-hero {
        padding: 50px 0 30px;
    }

    .contact-card-light,
    .contact-form-light,
    .location-info {
        padding: 25px 20px;
    }

    .map-wrapper iframe {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title-light {
        font-size: 1.8rem;
    }

    .form-title-light,
    .map-title {
        font-size: 1.6rem;
    }

    .card-header-light,
    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-card-light,
    .contact-form-light,
    .location-info {
        padding: 20px 15px;
    }
}

/* AOS Animation Enhancements */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom AOS animations */
[data-aos="fade-up-stagger"]:nth-child(1) {
    transition-delay: 0ms;
}

[data-aos="fade-up-stagger"]:nth-child(2) {
    transition-delay: 100ms;
}

[data-aos="fade-up-stagger"]:nth-child(3) {
    transition-delay: 200ms;
}

[data-aos="fade-up-stagger"]:nth-child(4) {
    transition-delay: 300ms;
}