:root {
    --bg-dark: #020c1b;
    --bg-card: rgba(17, 34, 64, 0.75);
    --accent: #64ffda; /* Neon Cyan */
    --text-main: #ccd6f6;
    --text-muted: #ffffff;
    --white: #e6f1ff;
    --whatsapp-green: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { 
    font-family: 'Outfit', sans-serif; 
    background-color: transparent; /* Must be transparent */
    color: var(--text-main); 
    overflow-x: hidden; 
}

/* --- SLIDESHOW SECTION --- */
.bg-slideshow {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bg-slideshow li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 12s linear infinite; 
}

/* UPDATED: Changed to .jpeg based on your screenshot */
/* If bg1 or bg2 are .jpg, change them back to .jpg here! */
.bg-slideshow li:nth-child(1) { background-image: url('bg1.jpeg'); animation-delay: 0s; }
.bg-slideshow li:nth-child(2) { background-image: url('bg2.jpeg'); animation-delay: 4s; }
.bg-slideshow li:nth-child(3) { background-image: url('bg3.jpeg'); animation-delay: 8s; }

@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    10% { opacity: 1; animation-timing-function: ease-out; }
    33% { opacity: 1; }
    45% { opacity: 0; }
    100% { opacity: 0; }
}

/* --- TRANSPARENT OVERLAY (Fixed) --- */
.particles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    z-index: -1;
    /* This makes it see-through (Glass) instead of Solid Purple */
    background: rgba(2, 12, 27, 0.7); 
    animation: none;
}

/* HEADER & LOGO */
header {
    position: fixed; top: 0; width: 100%; padding: 20px 5%;
    background: rgba(10, 25, 47, 0.90); backdrop-filter: blur(15px);
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.logo { display: flex; align-items: center; gap: 15px; }
.logo img { 
    width: 70px; height: 70px; 
    border-radius: 50%; 
    object-fit: contain; 
}

/* NAVIGATION */
nav ul { display: flex; list-style: none; gap: 25px; }
nav a { color: var(--text-main); text-decoration: none; font-size: 0.95rem; position: relative; transition: 0.3s; }
nav a:hover, nav a.active { color: var(--accent); }
nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--accent); transition: 0.3s; }
nav a:hover::after, nav a.active::after { width: 100%; }

.btn-cta { padding: 10px 25px; border: 1px solid var(--accent); color: var(--accent); border-radius: 4px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-cta:hover { background: var(--accent); color: var(--bg-dark); box-shadow: 0 0 15px var(--accent); }

/* CONTENT & UTILS */
.page-container { padding: 140px 10% 80px; min-height: 100vh; animation: fadeIn 1s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 40px; border-left: 5px solid var(--accent); padding-left: 20px; }
h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 15px; }
p { color: var(--text-muted); line-height: 1.6; font-size: 1.05rem; margin-bottom: 20px; }
ul.custom-list { list-style: none; padding-left: 0; color: var(--text-muted); }
ul.custom-list li { margin-bottom: 10px; padding-left: 20px; position: relative; }
ul.custom-list li::before { content: '▹'; color: var(--accent); position: absolute; left: 0; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card { 
    background: var(--bg-card); padding: 40px; border-radius: 10px; 
    border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5); }
.card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 25px; display: block; }

.price-container { background: var(--bg-card); border-radius: 12px; border: 1px solid rgba(100, 255, 218, 0.1); overflow: hidden; }
.price-row { display: grid; grid-template-columns: 1fr 1fr; padding: 20px 30px; border-bottom: 1px solid rgba(255,255,255,0.05); transition: 0.2s; }
.price-row:hover { background: rgba(100, 255, 218, 0.05); }
.region { color: var(--white); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.cost { color: var(--accent); font-family: monospace; text-align: right; }

input, select { width: 100%; padding: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; border-radius: 5px; margin-bottom: 20px; outline: none; }
input:focus, select:focus { border-color: var(--accent); }

footer { padding: 40px 10%; background: #010810; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-dark); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s; }
.loader { width: 50px; height: 50px; border: 3px solid transparent; border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: var(--whatsapp-green); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 2000; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 0 15px var(--whatsapp-green); color: white; }