/* ========================= VARIABLES ========================= */
:root {
    --primary: #124d5d;
    --primary-dark: #0a313d;
    --secondary: #f6c039;
    --accent-pink: #f28697;
    --accent-orange: #f4a24c;
    --text-light: #ffffff;
    --text-dark: #1e2a3a;
    --bg-light: #f8fcfd;
    --font-nav: 'Bebas Neue', sans-serif;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

/* ========================= GLOBAL ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
    overflow-y: scroll;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 122px; /* Space for fixed header */
}

h1, h2, h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================= SCROLL PROGRESS BAR ========================= */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--secondary);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========================= PRELOADER ========================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    animation: pulseLogo 1.5s infinite ease-in-out alternate;
    margin-bottom: 15px;
}

.loader-text {
    font-family: var(--font-nav);
    color: var(--text-light);
    font-size: clamp(2.2rem, 5vw, 3rem);
    letter-spacing: 2px;
    text-align: center;
    animation: fadeText 1.5s infinite ease-in-out alternate;
}

.loader-subtext {
    font-family: var(--font-body);
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 5px;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
}

@keyframes pulseLogo {
    0% { transform: scale(0.9); }
    100% { transform: scale(1.05); }
}

@keyframes fadeText {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* ========================= HEADER ========================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.top-bar {
    background: white;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--secondary);
    height: 48px;
}

.contact-bar {
    display: flex;
    gap: 32px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.contact-bar i {
    color: var(--accent-pink);
    margin-right: 8px;
    width: 20px;
}

.btn-arrange {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 6px 24px;
    font-size: 0.85rem;
    font-family: var(--font-head);
    font-weight: 600;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-arrange:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.02);
}

.main-navbar {
    background: var(--primary);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    height: 74px;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 40px;
}

.nav-left { justify-content: flex-end; padding-right: 100px; }
.nav-right { justify-content: flex-start; padding-left: 100px; }

.main-navbar a.nav-link {
    font-family: var(--font-head);
    font-size: 1.15rem;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
    padding: 4px 0;
    color: white;
    cursor: pointer;
}

.main-navbar a.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2.5px;
    background: var(--secondary);
    transition: var(--transition);
}

.main-navbar a.nav-link:hover::after,
.main-navbar a.nav-link.active::after {
    width: 100%;
}

.main-navbar a.nav-link:hover,
.main-navbar a.nav-link.active {
    color: var(--secondary);
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -22px;
    z-index: 1001;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    background: white;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.logo-container:hover img {
    transform: scale(1.05);
    border-color: var(--accent-pink);
}

.mobile-logo-text { display: none; }

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary);
    transition: var(--transition);
}

.menu-toggle:hover { color: white; }

/* ========================= MOBILE MENU ========================= */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    text-align: center;
    display: none;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    padding: 18px 20px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.03);
}

.mobile-menu .mobile-btn {
    background: var(--secondary);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 0;
}

.mobile-menu .mobile-btn:hover {
    background: var(--accent-pink);
    color: white;
}

@media (min-width: 993px) {
    .mobile-menu { display: none !important; }
}

/* ========================= SECTIONS ========================= */
section {
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.page-section {
    min-height: calc(100vh - 122px);
    padding-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.section-title span { color: var(--secondary); position: relative; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= HOME ========================= */
#home {
    background: linear-gradient(145deg, rgba(18, 77, 93, 0.96) 0%, rgba(10, 49, 61, 0.96) 100%), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48cGF0aCBkPSJNMjAgMzBhMTAgMTAgMCAxIDEgMC0yMCAxMCAxMCAwIDAgMSAwIDIweiIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA0KSIvPjwvc3ZnPg==');
    background-size: 80px;
    color: var(--text-light);
    min-height: calc(100vh - 122px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 40px 5%;
}

.home-content { flex: 1.2; text-align: left; }

#home h1 {
    font-family: var(--font-nav);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    margin-bottom: 20px;
    color: var(--secondary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    line-height: 1;
}

#home p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 0 32px 0;
    line-height: 1.9;
    opacity: 0.95;
}

.tagline {
    color: var(--accent-pink);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: var(--font-head);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-large {
    display: inline-block;
    padding: 16px 44px;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background: var(--secondary);
    color: var(--primary-dark);
    border: none;
    font-family: var(--font-head);
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-large:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.home-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo {
    width: 100%;
    max-width: 440px;
    height: auto;
    position: relative;
    z-index: 2;
    object-fit: contain;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

.logo-glow {
    position: absolute;
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(246, 192, 57, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* ========================= ABOUT ========================= */
#about { background: white; }

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text { flex: 1.3; line-height: 1.9; font-size: 1.05rem; }
.about-text p { margin-bottom: 16px; }

.about-cards { flex: 1; display: grid; gap: 24px; }

.card {
    background: var(--bg-light);
    padding: 30px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid var(--secondary);
    transition: var(--transition);
}

.card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========================= SERVICES ========================= */
#services { background: var(--bg-light); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    background: white;
    padding: 44px 28px;
    text-align: center;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-bottom: 5px solid transparent;
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 5px solid var(--secondary);
}

.service-icon {
    font-size: 3.2rem;
    color: var(--accent-orange);
    margin-bottom: 22px;
    display: inline-block;
}

.service-box h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

/* ========================= CONTACT ========================= */
#contact { background: white; }

.contact-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    background: var(--primary);
    color: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(18, 77, 93, 0.2);
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.7rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-item i {
    color: var(--accent-pink);
    font-size: 1.5rem;
    margin-top: 4px;
    width: 30px;
    text-align: center;
}

.contact-form-card {
    flex: 1.4;
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.contact-form-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    background: var(--primary) !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.whatsapp-btn:hover {
    background: var(--secondary) !important;
    color: var(--primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246, 192, 57, 0.4);
}

/* ========================= FORM STYLES ========================= */
.form-group { margin-bottom: 16px; width: 100%; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e8edf2;
    border-radius: 10px;
    font-family: var(--font-body);
    background: #fafcfd;
    outline: none;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(246, 192, 57, 0.1);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-family: var(--font-head);
    letter-spacing: 1.5px;
}

.submit-btn:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

/* ========================= MODAL ========================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 49, 61, 0.7);
    z-index: 2500;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(6px);
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.show { display: flex; opacity: 1; }

.modal-content {
    background: white;
    padding: 40px 35px;
    border-radius: 28px;
    width: 92%;
    max-width: 460px;
    position: relative;
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.show .modal-content { transform: scale(1); }

.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #aaa;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-pink);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

/* ========================= FOOTER & SOCIAL ========================= */
footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 35px 5%;
    font-size: 0.9rem;
    margin-top: auto;
}

.dev-credit { margin-top: 10px; color: #bbb; }

.dev-credit span {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1.5px;
}

.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.15) translateY(-5px);
    color: white;
}

.whatsapp { background-color: #25d366; }
.whatsapp:hover { background-color: #1ebe57; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.instagram:hover { box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4); }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1100px) {
    .nav-left { padding-right: 60px; gap: 28px; }
    .nav-right { padding-left: 60px; gap: 28px; }
    .logo-container img { width: 95px; height: 95px; }
    .logo-container { top: -18px; }
}

@media (max-width: 992px) {
    html { scroll-padding-top: 80px; }
    body { padding-top: 72px; }
    .top-bar { display: none; }
    .main-navbar { height: 72px; padding: 0 6%; }
    .nav-left, .nav-right { display: none; }
    .logo-container {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .logo-container img {
        width: 52px;
        height: 52px;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .mobile-logo-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }
    .mobile-logo-text .text-top {
        font-family: var(--font-nav);
        font-size: 1.8rem;
        line-height: 0.95;
        color: white;
        letter-spacing: 1.5px;
    }
    .mobile-logo-text .text-bottom {
        font-family: var(--font-nav);
        font-size: 1rem;
        line-height: 1;
        color: white;
        letter-spacing: 1px;
        margin-top: 2px;
    }
    .menu-toggle { display: block; }
    #home {
        min-height: calc(100vh - 72px);
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }
    .home-content { text-align: center; }
    #home p { margin: 0 auto 32px; }
    .home-logo-container { margin-top: 20px; width: 100%; max-width: 350px; }
    .about-content, .contact-container { flex-direction: column; gap: 40px; }
    .page-section { min-height: calc(100vh - 72px); padding-top: 30px; }
}

@media (max-width: 600px) {
    #home h1 { font-size: 2.8rem; }
    .tagline { font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; }
    .mobile-logo-text .text-top { font-size: 1.6rem; }
    .mobile-logo-text .text-bottom { font-size: 0.9rem; }
    .logo-container img { width: 45px; height: 45px; }
    .modal-content, .contact-info, .contact-form-card { padding: 30px 20px; }
    .service-box { padding: 30px 18px; }
    .floating-socials { bottom: 20px; right: 20px; gap: 10px; }
    .social-icon { width: 45px; height: 45px; font-size: 1.5rem; }
    .contact-form-card h3 { font-size: 1.5rem; }
    .page-section { padding-top: 20px; }
}

/* ========================= STAGGERED ANIMATIONS ========================= */
.services-grid .service-box:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-box:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-box:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-box:nth-child(4) { transition-delay: 0.4s; }
.services-grid .service-box:nth-child(5) { transition-delay: 0.5s; }
.services-grid .service-box:nth-child(6) { transition-delay: 0.6s; }

.about-cards .card:nth-child(1) { transition-delay: 0.1s; }
.about-cards .card:nth-child(2) { transition-delay: 0.2s; }