* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    color: white;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

/* NAV */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

nav {
    padding: 20px 8%;
    background: #0f172a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 20px;
    font-weight: 600;
}

nav h1 span {
    color: #22c55e;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    border-radius: 5px;
}

@media(max-width:768px){
    .hamburger {
        display: flex;
    }
}

/* MOBILE NAV */

@media(max-width: 768px) {
     .logo-img {
        height: 30px;
    }

    nav h1 {
        font-size: 18px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background: #1e293b;
        width: 200px;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* HERO CAROUSEL */

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

.hero-carousel {
    padding: 40px 8%;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid #22c55e;
    background: #1e293b;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.slide img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* DOTS */

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.carousel-dots span {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 5px;
    background: #475569;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dots span.active {
    background: #22c55e;
}

.pricing-section {
    background: #111827;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(34,197,94,0.1);
    transition: 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(34,197,94,0.3);
}

.price-card h3 {
    color: #22c55e;
    font-size: 22px;
}

.sub {
    color: #94a3b8;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price {
    font-weight: 600;
    color: #22c55e;
}

.highlight {
    border: 2px solid #22c55e;
}

/* SECTIONS */

.section {
    padding: 80px 8%;
    text-align: center;
    scroll-margin-top: 80px;
}

.dark {
    background: #1e293b;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: #334155;
    padding: 25px;
    border-radius: 15px;
}

/* IMAGE MODAL */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    margin-top: 40px;
    border-radius: 15px;
}

.modal.show {
    display: block;
    opacity: 1;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.contact-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Call Button */
.call-btn {
    padding: 12px 24px;
    background: #2563eb;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.call-btn:hover {
    background: #1d4ed8;
}

/* WhatsApp Button */
.whatsapp-btn {
    padding: 12px 24px;
    background: #22c55e;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #16a34a;
}

.share-btn {
    padding: 12px 24px;
    background: #334155;
    border: 1px solid #22c55e;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.share-btn:hover {
    background: #22c55e;
}

@media(max-width:768px){
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons a,
    .contact-buttons button {
        width: 80%;
        text-align: center;
    }
}


.route {
    margin-top: 20px;
    color: #94a3b8;
}

.footer {
    background: #0f172a;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content p {
    margin: 8px 0;
    color: #94a3b8;
    font-size: 14px;
}

.footer a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer a:hover {
    color: #16a34a;
}

.social-links {
    margin-top: 15px;
}

.instagram {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white !important;
    font-size: 13px;
}

/* MOBILE */

@media(max-width:768px){
    .slide img {
        max-height: 250px;
    }
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.journey-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(34,197,94,0.15);
}

.journey-card h3 {
    color: #22c55e;
    margin-bottom: 15px;
}

.journey-card h4 {
    margin-top: 20px;
    color: #94a3b8;
}

.journey-card ul {
    list-style: none;
    margin-top: 10px;
}

.journey-card li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

.journey-card li span:last-child {
    color: #22c55e;
    font-weight: 600;
}

/* GO TO TOP BUTTON */

#topBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #22c55e;
    color: white;
    border: none;

    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;

    cursor: pointer;
    display: none;

    box-shadow: 0 8px 20px rgba(34,197,94,0.4);
    transition: all 0.3s ease;
}

#topBtn:hover {
    background: #16a34a;
    transform: translateY(-4px);
}


.contact-name {
    margin-top: 15px;
    font-size: 16px;
    color: #cbd5e1;
}

.contact-name strong {
    color: #22c55e;
}

