:root {
    --primary: #d4a373;
    --secondary: #bc6c25;
    --bg-dark: #1a1a1a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --accent: #f43f5e;
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color-scheme: dark; /* Force dark mode for browser elements */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-width;
    font-family: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

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

.animate-fade {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Background Gradients */
.bg-blobs {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, rgba(188, 108, 37, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
}
.blob-1 { top: -10%; left: -10%; }
.blob-2 { bottom: -10%; right: -10%; }

/* Navigation */
nav {
    display: flex;
    flex-direction: column; /* Stack vertically */
    justify-content: center;
    align-items: center;
    padding: 1.5rem 5%;
    gap: 1.5rem; /* Gap between logo and links */
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-container {
    position: relative;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 2px solid var(--primary);
}

.logo-container::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: logo-flash 3s infinite;
}

@keyframes logo-flash {
    0% { left: -150%; }
    30% { left: 100%; }
    100% { left: 100%; }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.nav-links a:hover { 
    color: var(--primary); 
    transform: translateY(-2px);
}

.nav-links a i {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 2rem auto;
    position: relative;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.running-text-wrapper {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.running-text {
    display: inline-block;
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    font-weight: 800;
    padding-right: 4rem;
    animation: marquee 30s linear infinite;
    line-height: 1.2;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.flash-text {
    color: #ff4757;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
    animation: flash-animation 1s ease-in-out infinite;
}

@keyframes flash-animation {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.flash-badge {
    background: rgba(212, 163, 115, 0.1);
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(212, 163, 115, 0.3);
    animation: flash-animation 1.5s ease-in-out infinite;
}

.flash-badge i {
    font-size: 1.5rem;
}

/* Slider */
.slider-container {
    width: 100%;
    height: clamp(250px, 40vw, 500px);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    margin: 0 auto 2rem;
}

.slider, .slide {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.15) contrast(1.05);
}

/* Section Title */
.section-title {
    text-align: center;
    margin: 4rem 0 2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 5% 4rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.service-card i { font-size: 2rem; margin-bottom: 1rem; color: var(--primary); display: block; }
.service-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.service-card p { color: var(--text-dim); font-size: 0.85rem; }

/* Modal */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
}
.modal-content {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 32px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--glass-border);
    position: relative;
}
.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dim);
}

/* Form */
.form-group { margin-bottom: 1.2rem; }
label { display: block; margin-bottom: 0.5rem; color: var(--text-dim); font-size: 0.8rem; }
input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #262626; /* Solid background for selects */
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    outline: none;
}

select option {
    background-color: #1a1a1a;
    color: white;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* Tracking / Sections */
.content-section, .tracking-container {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.tracking-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-weight: 600;
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.payment-title {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pay-item {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-main);
    filter: grayscale(0.2) brightness(0.9);
    transition: var(--transition);
}

.pay-item:hover {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.05);
}

.pay-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.pay-item i {
    font-size: 1.4rem;
    color: #10b981;
}


/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: #cbd5e1;
}


/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(212, 163, 115, 0.4);
    transition: var(--transition);
    pointer-events: none;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.video-card:hover video {
    opacity: 1;
    transform: scale(1.05);
}

.video-card:hover .video-play-btn {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-links { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center;
        gap: 1rem;
    }
    .hero { padding-top: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .tracking-card { padding: 1.5rem; }
}

/* Floating WA Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: wa-pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(10deg);
    background: #20ba5a;
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.floating-wa:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .floating-wa { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 28px; }
    .wa-tooltip { display: none; }
}

.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 2px solid var(--primary);
}

.map-container iframe {
    display: block;
}
