@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --secondary: #fbbf24;
    --secondary-dark: #d97706;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --success: #10b981;
    --text: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-main: #ffffff;
    --bg-alt: #f1f5f9;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Overhaul */
h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: linear-gradient(120deg, var(--secondary) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 10px 30px -10px var(--secondary-dark);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px var(--secondary-dark);
    background: #fcd34d;
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 30px -10px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px var(--accent-glow);
    background: #2563eb;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Artistic Navbar */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 0.75rem 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    padding: 0.5rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo i {
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Immersive Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    padding: 10rem 0;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.4)),
        linear-gradient(to bottom, rgba(15, 23, 42, 0) 60%, rgba(15, 23, 42, 1));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.badge-premium {
    background: linear-gradient(90deg, var(--accent), #60a5fa);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Floating Action Button */
.fab-call {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 70px;
    height: 70px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(1);
    }
}

/* Why Choose Us Section - Modern Reveal */
.why-us {
    padding: 10rem 0;
    background: var(--bg-alt);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 3rem;
    box-shadow: var(--shadow-xl);
    border: 10px solid var(--white);
}

.feature-list {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Stats Bar */
.stats-bar {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

/* Services */
.services {
    padding: 10rem 0;
    background: var(--bg-main);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 2.5rem;
    padding: 4rem;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* CTA Banner */
.cta-banner {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--accent), #1d4ed8);
    color: var(--white);
    text-align: center;
    border-radius: 4rem;
    margin: 0 2rem 10rem;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3.5rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 8rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 6rem;
}

.footer-contact .phone {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 1.5rem 0;
    display: block;
    text-decoration: none;
}

@media (max-width: 992px) {

    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 3rem;
    }
}