:root {
    --primary: #0A0F14; /* Deep Charcoal/Slate */
    --primary-light: #151C24;
    --accent: #00E5FF; /* Electric Cyan */
    --accent-blue: #0072FF; /* Electric Blue */
    --cta: #FF7D00; /* Vibrant Orange */
    --cta-hover: #FF9100;
    --white: #FFFFFF;
    --off-white: #F0F4F8;
    --text-dark: #1A1F24;
    --text-light: #A0AEC0;
    --text-muted: #718096;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.3);
    --inner-border: 1px solid rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.accent {
    color: var(--accent);
}

.section-padding {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--primary);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cta) 0%, #FF5000 100%);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 125, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 125, 0, 0.5);
    background: linear-gradient(135deg, var(--cta-hover) 0%, var(--cta) 100%);
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 2px solid #25D366;
    box-shadow: none;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.sticky {
    background: rgba(11, 29, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

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

.nav-links a {
    color: var(--white);
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section - Redesigned Split Layout */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(100px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero h1 .accent {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 100%;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.trust-row {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-item span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-visual-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 40px;
    overflow: visible;
}

.hero-main-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: var(--inner-border);
    position: relative;
    z-index: 1;
}

/* Floating UI Cards */
.ui-card {
    position: absolute;
    background: rgba(21, 28, 36, 0.85); /* Slightly more opaque for clarity */
    backdrop-filter: blur(12px); /* Standard blur for desktop */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ui-card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.ui-card-2 { bottom: 20%; right: -10%; animation-delay: 1.5s; }
.ui-card-3 { bottom: -5%; left: 10%; animation-delay: 3s; }

.ui-card .icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.ui-card-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.ui-card-text strong {
    font-size: 0.95rem;
    font-weight: 700;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Trust Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info strong {
    display: block;
    color: var(--primary);
}

.client-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}



/* Services - Premium Cards */
.services-section {
    background-color: var(--primary-light);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(80px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-img-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.1);
}

.service-content {
    padding: 32px;
    flex-grow: 1;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent);
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--accent);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.why-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
}

.why-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--white);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.2;
    top: -150px;
    right: -150px;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-box .hero-btns {
    justify-content: center;
}

/* Location Section Redesign */
.location-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.location-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.3);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 30%, transparent 100%);
}

.location-card {
    background: rgba(11, 29, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    max-width: 600px;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.section-title.left {
    text-align: left;
    margin-bottom: 30px;
}

.location-text {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.location-details {
    margin-bottom: 40px;
}

.loc-item {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.loc-item span {
    font-weight: 600;
}

.relative {
    position: relative;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer h4 {
    margin-bottom: 25px;
    color: var(--accent);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Fixed WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-content { max-width: 500px; }
}

@media (max-width: 992px) {
    .container { padding: 0 15px; }
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 { font-size: 3rem; }
    .hero-btns { justify-content: center; }
    .trust-row { justify-content: center; width: 100%; }
    
    .ui-card-1 { left: 0; }
    .ui-card-2 { right: 0; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .header-cta { display: none; }
    .hero { padding-top: 80px; }
    .hero h1 { font-size: 2.25rem; line-height: 1.2; }
    .hero p { font-size: 1rem; margin-bottom: 32px; }
    .section-padding { padding: 60px 0; }
    .hero-btns { width: 100%; flex-direction: column; gap: 15px; }
    .hero-btns .btn { width: 100%; }
    .trust-row { flex-direction: column; gap: 15px; align-items: center; padding-top: 24px; }
    .cta-box { padding: 40px 20px; }
    .cta-box h2 { font-size: 1.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    
    /* Optimized UI Cards for small screens */
    .ui-card { 
        position: relative; 
        top: auto !important; 
        left: auto !important; 
        right: auto !important; 
        bottom: auto !important;
        margin: 10px auto;
        padding: 12px 16px; 
        font-size: 0.8rem; 
        width: fit-content;
        backdrop-filter: blur(6px); /* Reduced blur for mobile clarity */
        animation: none; /* Subtler feel */
        transform: none !important;
    }
    .ui-card .icon { width: 30px; height: 30px; min-width: 30px; }
    
    .hero-visual {
        margin-top: 40px;
        order: 2;
    }
    
    .main-visual-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-main-img {
        border-radius: 24px;
        margin-bottom: 20px;
    }
}
