.location-tag {
    cursor: pointer; /* Makes it look clickable */
    user-select: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-tag:active {
    transform: scale(0.95); /* Slight "push" effect when clicked */
}

:root {
  --primary: #00f2ff; /* Cyan: Logic & Trust */
  --secondary: #7000ff; /* Violet: Premium & Ambition */
  --bg: #03030b; 
  --card-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #f0f0f5;
  --muted: #a0a0b5;
  --grad: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
}

/* Base Styles */
* { margin:0; padding:0; box-sizing:border-box; font-family: 'Plus Jakarta Sans', sans-serif; scroll-behavior: smooth; }

body { 
    background-color: var(--bg); 
    color: var(--text); 
    line-height: 1.8; /* Premium Spacing */
    overflow-x: hidden;
    /* Mindblowing Background: Radial Gradients + SVG Mesh Pattern */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 255, 0.1) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Premium Spacing for Sections */
section { padding: 140px 20px; }
.container { max-width: 1200px; margin: auto; }
.text-center { text-align: center; }

/* Fixed Navbar with Dynamic Scroll Effect */
nav { 
    position: fixed; 
    width: 100%;
    top: 0; 
    z-index: 2000; 
    background: transparent; 
    transition: all 0.4s ease-in-out;
    padding: 20px 0;
}

nav.scrolled {
    background: rgba(3, 3, 11, 0.85); 
    backdrop-filter: blur(15px); 
    border-bottom: 1px solid var(--glass-border); 
    padding: 12px 0;
}

.nav { max-width: 1200px; margin: auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  background: var(--grad);
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #000;
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}
.brand-tender { color: var(--text); font-weight: 800; text-transform: uppercase; font-size: 1.4rem; letter-spacing: 2px; /* Premium Spacing */}
.brand-sphere { 
    background: var(--grad); 
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: 400; font-size: 1.4rem; 
}

.nav ul { display: flex; gap: 40px; list-style: none; }
.nav a { font-weight: 500; font-size: 0.9rem; transition: 0.3s; color: var(--muted); text-decoration: none; letter-spacing: 1px; }
.nav a:hover { color: var(--primary); text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); }

/* Hero Section Enhancement */
.hero { text-align: center; padding: 200px 20px 100px; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; line-height: 1.1; margin-bottom: 30px; letter-spacing: -1px; }
.gradient-text { 
    background: var(--grad); 
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}
.hero p { max-width: 800px; margin: 0 auto 50px; font-size: 1.25rem; color: var(--muted); letter-spacing: 0.5px; }

/* Search Bar Enhancement */
.search-container {
    max-width: 850px; margin: 40px auto 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 10px; border-radius: 100px;
    display: flex; align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.search-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.2);
}
.search-input {
    flex: 1; background: transparent; border: none;
    padding: 0 30px; color: white; font-size: 1.1rem; outline: none;
}
.adv-search-link { 
    color: var(--primary); text-decoration: none; font-size: 0.95rem; 
    font-weight: 600; transition: 0.3s; margin-bottom: 50px; display: inline-block; letter-spacing: 1px;
}
.adv-search-link:hover { text-shadow: 0 0 15px var(--primary); transform: translateX(5px); }

/* Stats Bar */
.stats-bar {
    display: flex; justify-content: center; gap: 60px; 
    flex-wrap: wrap; margin-top: 30px;
}
.stat-item { text-align: left; border-left: 2px solid var(--primary); padding-left: 20px; transition: 0.3s; }
.stat-item:hover { transform: translateY(-5px); }
.stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1.2; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; color: var(--muted); letter-spacing: 2px; }

.btn-luxury {
    background: var(--grad);
    padding: 18px 40px; border-radius: 14px;
    color: #000; font-weight: 700; border: none; cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
    letter-spacing: 1px;
}
.btn-luxury:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 30px rgba(0, 242, 255, 0.4); background: #fff; }
.btn-luxury:disabled { opacity: 0.7; cursor: not-allowed; }

/* Floating Actions */
/* Premium Hover for Floating Actions */
.action-btn {
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-btn:hover {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.1);
}

/* Tooltip for desktop users */
.action-btn::before {
    content: attr(title);
    position: absolute;
    right: 80px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.action-btn:hover::before {
    opacity: 1;
    right: 70px;
}

.floating-actions {
    position: fixed; bottom: 30px; left: 30px;
    display: flex; flex-direction: column; gap: 15px; z-index: 3000;
}
.action-btn {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 26px; text-decoration: none;
    transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.btn-whatsapp { background: #25d366; animation: pulse 2s infinite; }
.btn-call { background: #007bff; animation: pulse 2s infinite; }
.btn-chatbot { 
    position: fixed; bottom: 30px; right: 30px; 
    background: var(--grad); width: 70px; height: 70px; color: #000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; z-index: 3000; box-shadow: 0 10px 25px rgba(0, 242, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* About Section */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }
.section-tag { color: var(--primary); text-transform: uppercase; font-weight: 800; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 15px; display: block; }
.about-features { list-style: none; margin-top: 40px; }
.about-features li { margin-bottom: 20px; padding-left: 35px; position: relative; color: var(--muted); font-size: 1.1rem; }
.about-features li::before { content: '✦'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }

.card-illustration {
    background: var(--card-bg); border: 1px solid var(--glass-border);
    padding: 50px; border-radius: 32px; position: relative;
    overflow: hidden; text-align: center;
    transition: transform 0.4s ease;
}
.card-illustration:hover { transform: rotate(1deg) scale(1.02); }
.card-illustration::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,242,255,0.05) 0%, transparent 70%);
}

/* Interactive States Grid */
.locations-container { background: var(--card-bg); border-radius: 40px; padding: 80px 60px; border: 1px solid var(--glass-border); }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; margin-top: 40px; }
.location-tag { 
    background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); 
    padding: 16px; border-radius: 12px; font-size: 0.9rem; text-align: center; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; color: var(--muted);
}
.location-tag:hover { 
    background: var(--grad); color: #000; font-weight: 700; 
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.4); transform: translateY(-5px);
}

/* Service Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 60px; }
.service-card { 
    background: var(--card-bg); border: 1px solid var(--glass-border); 
    padding: 55px; border-radius: 32px; transition: 0.5s ease; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-15px); border-color: var(--primary); background: rgba(255,255,255,0.05); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--grad); opacity: 0; transition: 0.3s; }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 3rem; margin-bottom: 30px; display: block; }

/* Contact Section */
.contact-section { 
    max-width: 950px; margin: 0 auto; background: var(--card-bg); 
    padding: 80px; border-radius: 40px; border: 1px solid var(--glass-border); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.form-input { 
    width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); 
    padding: 22px; border-radius: 16px; color: #fff; margin-bottom: 25px; transition: 0.3s; font-size: 1rem;
}
.form-input:focus { outline: none; border-color: var(--primary); background: rgba(0, 242, 255, 0.05); box-shadow: 0 0 15px rgba(0,242,255,0.1); }

/* FAQ Details */
details { background: var(--card-bg); border: 1px solid var(--glass-border); margin-bottom: 15px; border-radius: 16px; transition: 0.3s; }
details:hover { background: rgba(255,255,255,0.05); }
summary { padding: 25px; cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; }
summary::after { content: '⊕'; color: var(--primary); font-size: 1.5rem; transition: 0.3s; }
details[open] summary::after { content: '⊖'; transform: rotate(90deg); }

footer { padding: 100px 20px; border-top: 1px solid var(--glass-border); text-align: center; background: rgba(0,0,0,0.2); }

@media (max-width: 768px) { 
    .nav ul { display: none; } 
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 3rem; }
    .stats-bar { gap: 30px; }
    .contact-section { padding: 40px 20px; }
    section { padding: 80px 20px; }
}

/* Premium Chatbot UI */
.chat-window {
    position: fixed; bottom: 110px; right: 30px; width: 350px; height: 500px;
    background: rgba(10, 10, 20, 0.9); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: 24px;
    display: none; flex-direction: column; overflow: hidden;
    z-index: 4000; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-header {
    background: var(--grad); padding: 20px; color: #000; font-weight: 800;
    display: flex; justify-content: space-between; align-items: center;
}

.chat-status { width: 10px; height: 10px; background: #00ff00; border-radius: 50%; display: inline-block; margin-right: 10px; }

.chat-body { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }

.bot-msg, .user-msg {
    max-width: 80%; padding: 12px 16px; border-radius: 15px; font-size: 0.9rem; line-height: 1.4;
}

.bot-msg { background: rgba(255,255,255,0.05); color: var(--text); align-self: flex-start; border-bottom-left-radius: 2px; }
.user-msg { background: var(--primary); color: #000; align-self: flex-end; border-bottom-right-radius: 2px; font-weight: 600; }

.chat-footer { padding: 15px; display: flex; gap: 10px; border-top: 1px solid var(--glass-border); }
.chat-footer input {
    flex: 1; background: transparent; border: none; color: white; outline: none; font-size: 0.9rem;
}
.chat-footer button { background: var(--primary); border: none; width: 35px; height: 35px; border-radius: 10px; cursor: pointer; }

